:root{
  --color-primary: #060e59;
  --color-secundary: #f36100;
}

/* Fonte principal */
body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #fcfbfb;
}

/* Fonte para títulos */
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Anton', sans-serif;
}

/*Configs*/
.bg-section {
  background-image: url('../img/habitacionais.webp'); /* atualize o caminho */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 15px; /* ajuste conforme necessário */
}
.link{
  color: var(--color-primary);
  text-decoration: none;
}
.link:hover{
  text-decoration: underline;
}

.banner {
  background-image: url('../img/fundo.png');
  background-attachment: fixed; /* Aqui cria o efeito parallax */
  background-size: cover;
  background-position: center;
}

.background-primary{
  background-color: var(--color-primary);
}

/*Menu*/
/* Topbar background */
.background-primary {
  background-color: var(--color-primary);
}

/* Topbar links */
.sub-menu a {
  color: #ffffff;
  text-decoration: underline;
}

.sub-menu a:hover {
  color: var(--color-secundary);
}

/* Navbar desktop links */
nav a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-secundary);
}

/* Mobile menu (offcanvas) */
.offcanvas-header {
  background-color: var(--color-primary);
  color: white;
}

.offcanvas-title {
  color: white;
}

.offcanvas-body a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.offcanvas-body a:hover {
  color: var(--color-secundary);
}

/* Hamburger button icon color */
.btn i {
  color: var(--color-primary);
}

/* Optional: Close button color override */
.offcanvas .btn-close {
  filter: invert(1);
}
.sub-menu span{
  padding: 0 15px;
  font-weight: 700;
}
.sub-menu span a{
  color: #fff;
  text-decoration: none;
}
.sub-menu span:hover, .sub-menu span a:hover{
  color: var(--color-secundary);
  transition: .3s;
  cursor: pointer;
  
}
header{
  background-color: #fcfbfb;
}

header a{
  color: var(--color-primary);
  text-transform: uppercase;

}
header a:hover{
  color: var(--color-secundary);
  transition: linear .3s;

}


/*Banner*/


.banner {
  position: relative;
  width: 100%;
  height: 600px !important;
}

.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-orange {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: rgba(255, 102, 0, 0.85);
  clip-path: polygon(51% 0, 100% 0%, 100% 100%, 21% 100%);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  color: white;
}

.left-text {
  width: 50%;
}

.left-text h1 {
  font-size: 4em;
  line-height: 1.2;
}

.left-text h1 .orange {
  color: #FF6600;
}

.left-text p {
  margin-top: 15px;
  font-size: 1.2em;
}

.video-button {
  margin-top: 30px;
  background: white;
  color: black;
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.video-button img {
  width: 40px;
  height: 40px;
}

.right-img {
  position: absolute;
  right: 5%;
  bottom: 0%;
  z-index: 3;
}

.right-img img {
  width: 750px;
  max-width: 90vw;
}

@media (max-width: 991.98px) {
  .banner {
    height: 400px;
    padding: 2rem 0;
  }

  .content {
    flex-direction: column !important;
    padding: 1rem !important;
    text-align: center;
  }

  .right-img {
    position: static !important;
    margin-top: 2rem;
    text-align: center;
  }

  .right-img img {
    display: none;
  }

  .overlay-orange {
    width: 100%;
    clip-path: none;
    opacity: 0.5;
    background-color: var(--color-primary);
  }

  .left-text {
    width: 100% !important;
  }

  .left-text h1 {
    font-size: 3em;
  }
  .left-text p {
    font-size: 1em;
  }

  .white-btn {
    font-size: 1rem;
  }
}


/*Seção*/
.section-map-bg {
  position: relative;
  z-index: 2;
}

.section-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/63/Mapa_Mundi_Detalle_Max_2008.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1; /* controla a "transparência" da imagem */
  z-index: -1;
}




.custom-btn {
  border-radius: 50px;
  border: none;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.25rem;
  color: #555;
  background-color: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.custom-btn.active {
  background-color: #ff6a00;
  color: white;
}

.custom-btn img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.custom-btn.active .icon-circle {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-section {
  display: none;
  margin-top: 40px;
  animation: fadeIn 0.5s ease;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-container {
  display: flex;
  flex-direction: column;
  
  padding: 40px 20px;
 
}

.content-wrapper {
  display: flex;
  align-items: stretch; 
  gap: 30px;
}

.image-container{
  flex: 1; 
}
.image-container img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.text-container {
  flex: 1; 
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  
}

.text-container h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ff6a00;
}

.text-container h1 span {
  color: white;
  background-color: #ff6a00;
  padding: 0 10px;
  border-radius: 4px;
}

.text-container p {
  font-size: 1.125rem;
  color: #333;
  margin-top: 20px;
}

.btn-orange {
  background: linear-gradient(45deg, #ff6a00, #ff944d);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  margin-top: 30px;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(45deg, #ff944d, #ff6a00);
}
.benefits-section {
  margin-top: 30px;
  max-width: 900px;
}

.benefits-section h2 {
  text-align: center;
  color: #ff6a00;
  font-weight: bold;
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.benefit-item {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 10px 15px;
  border-left: 6px solid var(--color-secundary);
  border-radius: 8px;
  font-size: .9rem;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.benefit-item span {
  font-size: 1.2rem;
  color: green;
}

/*Formulario de Contato*/
.contact-section {
  display: flex;
  background: white;
 
  overflow: hidden;
  
  max-width: 1300px;
  margin: auto;
}

.contact-info, .contact-form {
  flex: 1;
  padding: 40px;
}

.contact-info {

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-info a{
  color: var(--color-primary);
  text-decoration: none;
}
.contact-info a:hover{
  color: var(--color-secundary);
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--color-primary);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--color-secundary);
}



.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: #FF6600;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e05500;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
}

/*Barra de contatos*/
.contact-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  margin: 10px 0;
}

.icon-circle {
  background-color: #FFF2E5; /* Laranja clarinho */
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  color: var(--color-secundary);
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text strong {
  font-size: 1rem;
  color: var(--color-primary); /* Laranja forte da Vip Container */
}

.contact-text span {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
    text-align: center;
  }
}





/*Rodape*/
footer {
  background-color: #0b0c53; /* azul escuro Vip Container */
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: .5px solid #FFF;
}

.footer-section {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-section h3 {
  color: #FF6600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p, 
.footer-section a {
  color: #ddd;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FF6600;
}

.social-icon {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.social-icon a {
  color: #FF6600;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icon a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-section {
    margin: 15px 0;
  }
  .social-icons {
    justify-content: center;
  }
}


.motivos-container {
  background-image: url('../img/motivos.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Aqui cria o efeito parallax */
  padding: 50px 20px;
  text-align: center;
  background-repeat: no-repeat;
  
}

.motivos-container h2 {
  color: #fff;
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.motivo-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.motivo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.motivo-icon {
  font-size: 50px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.motivo-title {
  font-size: 22px;
  color: var(--color-secundary);
  margin-bottom: 10px;
  font-weight: bold;
}

.motivo-text {
  font-size: 16px;
  color: #555;
}

.orcamento {
  margin-top: 50px;
}

.orcamento a {
  display: inline-block;
  background: var(--color-secundary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s;
}

.orcamento a:hover {
  background: #d95300;
}

.white-btn{
  display: inline-block;
  background: #fff;
  color: var(--color-secundary);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s;
}
.white-btn:hover {
  background-color: #FFF2E5;
  color: var(--color-primary);
}