:root {
  --primary-color: #ffffff;
  --bg-dark: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 10px;
  --font-lato: 'Lato', sans-serif;
  --container-max-width: 1600px;
  --grid-margin: clamp(20px, 5vw, 75px);
  --grid-gutter: 25px;
  --nav-height: 80px;
}

/* Breakpoints Responsivos */
@media (max-width: 992px) {
  :root {
    --grid-margin: 20px;
    --grid-gutter: 16px;
    --grid-columns: 4;
  }
}

html {
  scroll-behavior: smooth;
  background-color: #FFFBF4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-lato);
  background-color: #FFFBF4;
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.8s ease;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

/* Navbar - Pill Style */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 9999;
  padding: 20px var(--grid-margin);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 30px;
  width: auto;
  max-width: fit-content;
}

#navbar {
  transition: all 0.3s ease;
}

/* Estilos quando o header estÃ¡ "scrolled" */
header.nav-scrolled #navbar {
  background: #FFFBF4;
  border: 1px solid #E3DCCE;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.nav-scrolled .nav-links a {
  color: #A15600;
  font-weight: 500;
}

header.nav-scrolled .logo img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(87%) saturate(1450%) hue-rotate(20deg) brightness(90%) contrast(100%);
}

header.nav-scrolled .btn-consultant {
  background: #A15600;
  color: #FFFBF4;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px; /* Ajustado para melhor proporÃ§Ã£o visual */
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

/* Esconder no desk, mostrar no mob */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

header.nav-scrolled .menu-toggle span {
  background-color: #A15600;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 400; /* Inter Regular */
  transition: opacity 0.3s;
  white-space: nowrap;
}

.btn-consultant {
  background: #F9942B; /* Orange from reference */
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-family: var(--font-lato);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.btn-consultant:hover {
  transform: scale(1.05);
}

/* Typography Helpers */
.light { font-weight: 300; }
.regular { font-weight: 400; }
.bold { font-weight: 700; }
.orange { color: #F9942B; }

/* Fixed Video Background */
.video-container {
  position: absolute; /* Absoluto dentro do sticky viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #FFFBF4; /* Atualizado para cor da marca */
}

/* Novo Container Sticky: Ele prende o conteúdo no topo até o fim do interactive-area */
.sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

#hero-video.video-loaded {
  opacity: 1;
}

.hero-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* --- Interactive Sections Structure --- */

/* Base Content Container (Absoluto dentro do Sticky Viewport) */
.interactive-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  color: #ffffff; /* Força o branco original */
}

/* Hero Specific (Logo) */
#hero {
  z-index: 20;
  transform: scale(1);
}

/* 1. STATE: Initial / Hero */
body.step-1 #hero { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: all; 
}

/* 2. STATE: Concept */
body.step-2 #conceito { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: all; 
  transform: translateY(0); 
  z-index: 30;
}

/* 3. STATE: Location */
body.step-3 #localizacao { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: all; 
  transform: translateY(0); 
  z-index: 30;
}

/* Transitions: Fade and Scale/Shift */
body:not(.step-1) #hero {
  transform: scale(0.85);
}

body:not(.step-2) #conceito {
  transform: translateY(20px);
}


/* Triggers / Spacers (Transparent blocks to create scroll height) */
.scroll-trigger {
  position: relative;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  background: transparent;
  margin-top: 0; /* Espaçamento real para o interactive-area */
}

/* Compensação para o primeiro trigger não empurrar o sticky down demais */
.interactive-area .scroll-trigger:first-of-type {
  margin-top: -100vh;
}

/* --- Content Grids & Typography --- */

.hero-main-logo {
  width: 75vw;
  max-width: 1000px;
  filter: drop-shadow(0 10px 60px rgba(0,0,0,0.7));
}

.conceito-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12 colunas */
  gap: var(--grid-gutter);
  width: 100%;
  max-width: var(--container-max-width);
  height: 100vh;
  padding: 120px var(--grid-margin) 100px; /* Margem responsiva */
  align-items: start;
}

.top-left {
  grid-column: span 6;
  align-self: start;
}

.top-right {
  grid-column: span 6;
  text-align: right;
}

.bottom-left {
  grid-column: span 6;
  align-self: end;
}

.bottom-right {
  grid-column: span 6;
  align-self: end;
  text-align: right;
}

.top-left h2, .bottom-left h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem); /* DiminuÃ­do conforme feedback */
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.05em;
}

.top-left h2, .top-right p, .bottom-left h2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.top-left .orange {
  font-size: clamp(1rem, 1.5vw, 1.3rem); 
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 400;
  display: block;
}

.top-right {
  text-align: right;
}

.top-right p {
  line-height: 1.1;
}

.top-right p:first-child {
  font-weight: 300;
  font-size: 1.75rem;
  margin-bottom: 3px;
  opacity: 0.8;
}

.top-right p:last-child {
  font-weight: 400;
  font-size: 1.75rem;
}

.bottom-left {
  align-self: end;
}

.bottom-left p {
  font-size: 1.25rem;
  max-width: 500px;
  opacity: 0.9;
  margin-top: 8px;
}

.bottom-right {
  align-self: end;
  text-align: right;
}

.btn-units, .btn-location {
  background: #F9942B;
  color: #fff;
  border: none;
  padding: 1.3rem 4rem;
  border-radius: 50px;
  font-family: var(--font-lato);
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-units:hover, .btn-location:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(249, 148, 43, 0.7);
}

/* --- Decoration & Overlays --- */

.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  pointer-events: none;
  z-index: 4; /* Abaixo do interactive-content (5) */
  opacity: 0;
  transition: opacity 1s ease;
}

body.step-2 .bottom-gradient,
body.step-3 .bottom-gradient {
  opacity: 1;
}

/* Removido bloqueio global de visibilidade do menu */

/* --- Infraestrutura & Qualidade --- */

#infra-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-color: #FFFBF4; /* Cor definida pelo usuÃ¡rio */
  z-index: 100;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.infra-bg-container {
  width: calc(100% - 40px); /* Garante margem de 20px em cada lado */
  max-width: var(--container-max-width);
  margin: 0 auto;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0 80px var(--grid-margin); /* Removido padding da direita */
  min-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.infra-bg-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Escurecer um pouco para o texto branco */
  z-index: 1;
}

.infra-content {
  position: relative;
  z-index: 2;
  /* Removida a classe container aqui se necessÃ¡rio, ou resetado o padding dela */
}

.infra-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-right: var(--grid-margin); /* MantÃ©m margem no cabeÃ§alho */
}

.infra-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 600;
}

.carousel-nav {
  display: flex;
  gap: 1rem;
}

.nav-prev, .nav-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-prev:hover, .nav-next:hover {
  background: #fff;
  color: #000;
}

/* Carousel Layout */
.carousel-wrapper {
  width: 100%; /* Agora ocupa atÃ© o final da infra-bg-container */
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-top: 20px; /* Adicionado para evitar corte no hover */
  padding-bottom: 20px;
  padding-right: var(--grid-margin); /* EspaÃ§o no final ao rolar */
  scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-card {
  flex: 0 0 calc((100% - 50px) / 2.5); /* Exibe exatamente 2.5 cards por vez no desktop */
  height: 540px;
  position: relative;
  border-radius: 30px;
  border: 4px solid #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.carousel-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60%; /* Reduzido para 60% conforme pedido */
  aspect-ratio: 1 / 1; /* MantÃ©m o formato quadrado */
  background: #FFFBF4;
  padding: 40px; /* Padding generoso para distanciamento interno */
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Afasta o tÃ­tulo para cima e subtÃ­tulo para baixo */
}

.card-info h3 {
  font-size: 0.95rem;
  color: #616161;
  font-weight: 400;
  margin-bottom: 0; /* Removido margin fixa para usar space-between */
  letter-spacing: 0.01em;
}

.card-info p {
  font-size: 1.3rem;
  color: #404040;
  line-height: 1.2;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-top: 20px; /* Garante um Gap mÃ­nimo se necessÃ¡rio */
}

/* Responsividade de largura do card-info */
@media (max-width: 1200px) {
  .card-info { width: 75%; }
}

@media (max-width: 480px) {
  .card-info { width: 85%; padding: 25px; }
}

/* Hide background video and set solid color only when infra is full */
body.step-infra-video .video-container {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

body.step-infra-video {
  background-color: #FFFBF4 !important;
  transition: background-color 1s ease;
}

/* --- Andamento das Obras --- */

#obras-section {
  background-color: #FFFBF4;
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.container-obras {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

.obras-info {
  grid-column: span 5;
  position: sticky;
  top: 150px;
  height: fit-content;
}

.obras-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.obras-info p {
  font-size: 1.1rem;
  color: #666;
  max-width: 450px;
}

.obras-timeline {
  grid-column: 7 / span 6; /* Deixa um espaÃ§o entre info e timeline */
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  width: 1px;
  background: #ddd;
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -45px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: #F9942B;
  border-radius: 50%;
  z-index: 2;
}

.timeline-date {
  display: block;
  font-size: 1rem;
  color: #F9942B;
  font-weight: 400;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Barra de Progresso */
.progress-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: #F9942B;
  width: 0%; /* Inicia em 0 para animaÃ§Ã£o */
  transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

.progress-label {
  font-size: 0.85rem;
  color: #999;
  min-width: 40px;
}

/* --- Parceiros de ReferÃªncia --- */

#parceiros-section {
  background-color: #FFFBF4;
  padding: 120px 0;
  text-align: center;
}

.parceiros-content {
  
  margin: 0 auto;
}

.parceiros-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.parceiros-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 70px;
}

.logos-grid {
  display: flex !important;
  overflow: hidden !important;
  width: 100% !important;
  margin-bottom: 80px;
  position: relative;
  /* MÃ¡scara de fade nas laterais */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
  display: flex !important;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  animation: scroll-partners 60s linear infinite !important;
  padding: 20px 0;
  will-change: transform;
}

.logos-track .logo-item {
  margin-right: 120px; /* Distanciamento aumentado conforme pedido */
  flex-shrink: 0;
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausa ao passar o mouse */
.logos-track:hover {
  animation-play-state: paused !important;
}

.logo-item {
  flex: 0 0 auto;
  transition: opacity 0.3s ease;
}

.logo-item img {
  max-height: 70px; /* Aumentado para melhor visibilidade */
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-item:hover img {
  opacity: 1;
}

.parceiros-footer {
  margin-top: 40px;
}

.link-more {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
}

.link-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  opacity: 0.3;
}

.link-more span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.link-more:hover span {
  transform: translate(3px, -3px);
}

/* --- SeÃ§Ã£o de Pausa (Garden Zoom) --- */

#pause-section {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  background-color: #000; /* Fundo preto caso a imagem demore a carregar */
}

.pause-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.pause-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform; /* OtimizaÃ§Ã£o para animaÃ§Ã£o suave */
  transition: transform 0.1s ease-out; /* Suaviza pequenos saltos de scroll */
}

@media (max-width: 992px) {
  #pause-section {
    height: 60vh;
  }
}
@media (max-width: 992px) {
  .carousel-card {
    flex: 0 0 70%; /* Aproximadamente 1.4 cards por vez */
    height: 480px;
  }
}

/* --- Ficha TÃ©cnica e AcordeÃ£o --- */

#ficha-tecnica-section {
  background-color: #FFFBF4;
  padding: 100px 0;
}

.container--narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

.ficha-intro {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.5;
  color: #3A3A3A;
  margin: 175px auto 175px; /* Margem de 175px no topo e na base */
}

.ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 0;
}

.ficha-box {
  background-color: #A35E14;
  color: #fff;
  padding: 50px;
  border-radius: 40px 40px 0 0; /* Unindo com a imagem abaixo */
}

.ficha-box h3 {
  font-size: 1.8rem;
  margin-bottom: 35px;
  font-weight: 600;
}

.ficha-box ul {
  list-style: none;
  padding: 0;
}

.ficha-box ul li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ficha-box ul li strong {
  font-weight: 700;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: clamp(25px, 5vh, 70px); /* DistÃ¢ncia dinÃ¢mica entre acordeÃ£o e imagem */
}

.accordion-label {
  display: block;
  font-style: italic;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.accordion-items-group {
  margin-top: auto; /* Garante que os itens fiquem na base */
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.accordion-header:hover {
  color: #A35E14;
}

.accordion-header span {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg);
}

/* Funcionalidade Ver Mais */
.ficha-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.ficha-box.expanded .ficha-more {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.btn-ficha-more {
  background: none;
  border: none;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5); /* Linha de destaque */
  font-size: 1.1rem;
  padding: 5px 0;
  margin: 40px auto 0;
  display: block; /* CentralizaÃ§Ã£o */
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ficha-more:hover {
  border-bottom-color: #fff;
  transform: translateY(-2px);
}

.btn-ficha-more span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ficha-box.expanded .btn-ficha-more span {
  transform: rotate(180deg);
}

.ficha-image-footer {
  width: 100%;
  overflow: hidden;
  border-radius: 0 40px 40px 40px; /* Top-right rounded in Desktop, Top-left sharp for connection */
  margin-top: 0 !important;
  line-height: 0;
}

.ficha-image-footer img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important; /* Managed by parent overflow */
}

.accordion-content {
  height: 0;
  overflow: hidden;
  /* GSAP cuidará da animação de altura */
}

.accordion-item.active .accordion-content {
  /* No JS usaremos GSAP para animar o height */
  padding-bottom: 25px;
}


.accordion-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}


/* SeÃ§Ã£o de Plantas */
#plantas-section {
  padding: 100px 0;
  background-color: #FFFBF4;
}

.plantas-title {
  font-family: var(--font-lato);
  font-size: 2.2rem;
  font-weight: 700;
  color: #3A3A3A;
  margin-bottom: 15px;
  text-align: center;
}

.plantas-subtitle {
  font-size: 1.15rem;
  color: #616161;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.5;
  text-align: center;
}

.plantas-slider-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.plantas-slider {
  width: 100%;
  overflow: hidden; /* Viewport do slider */
  position: relative;
}

.plantas-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  align-items: stretch;
  gap: var(--slide-gap, 50px);
}

.planta-slide {
  background-color: #A15600;
  border-radius: 45px; /* Cantos mais arredondados como na referÃªncia */
  padding: 80px 120px 110px; /* Ajuste fino de padding */
  flex: 0 0 100%; /* Cada slide ocupa 100% da largura do track */
  box-sizing: border-box;
  color: #fff;
}

.planta-content {
  display: flex;
  flex-direction: column;
}

.planta-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
  align-items: baseline;
}

.planta-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.planta-nome {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.planta-img-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* Background removido conforme pedido */
}

.planta-img-container img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.planta-area {
  font-size: 1.35rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  /* Cor #F99523 via filtro */
  filter: brightness(0) saturate(100%) invert(67%) sepia(61%) saturate(2259%) hue-rotate(352deg) brightness(101%) contrast(96%);
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.btn-planta-info {
  display: none; /* Oculto no desktop */
}

/* NavegaÃ§Ã£o do Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

.slider-arrow:hover {
  background: #f0f0f0;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow img {
  width: 20px;
  height: auto;
  transition: transform 0.3s;
}

.slider-arrow.prev img {
  transform: rotate(180deg);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

@media (max-width: 992px) {
  :root {
    --slide-gap: 20px;
  }
  .plantas-slider-wrapper {
    padding: 0;
  }
  .slider-arrow {
    width: 35px;
    height: 35px;
  }
  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }
  .planta-slide {
    padding: 40px 30px 90px;
    border-radius: 30px;
  }
  .planta-nome {
    font-size: 1.7rem;
  }
}

.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 20;
}

.slider-dots .dot {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .planta-content {
    gap: 40px;
  }
  .planta-slide {
    padding: 60px 40px;
  }
}

@media (max-width: 992px) {
  .planta-header, .planta-body {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .planta-header {
    margin-bottom: 30px;
  }
  .planta-visual {
    margin-bottom: 40px;
  }
  .feature-item {
    justify-content: center;
    text-align: left;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item.full-width {
    grid-column: span 1;
  }
  .planta-slide {
    padding: 40px 20px;
    border-radius: 20px;
  }
}

/* SeÃ§Ã£o LocalizaÃ§Ã£o - EndereÃ§o (Grade 12 Colunas) */
.localizacao-section {
  background: linear-gradient(to right, #FFFBF4 58.333333%, #A15600 58.333333%);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gutter);
  min-height: 759px;
  position: relative;
}

.localizacao-left {
  grid-column: 1 / span 5; /* Colunas 1-5 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 759px;
}

.localizacao-right {
  grid-column: 7 / span 5; /* Colunas 7-11 */
  display: flex;
  align-items: flex-start;
}

.localizacao-title {
  font-family: var(--font-lato);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #222222;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -2px;
}

.localizacao-text {
  font-size: 1.35rem;
  color: #555555;
  line-height: 1.5;
  max-width: 100%;
  font-weight: 400;
  margin: 0;
}


.map-container {
  width: 657px;
  height: 759px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  background: #fff;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .localizacao-section {
    background: linear-gradient(to bottom, #FAF5ED 60%, #A35E14 40%) !important;
    padding: 120px 0 0 !important; /* Aumentado para 120px para o menu fixo */
  }
  .localizacao-grid {
    display: block !important;
    min-height: auto !important;
  }
  .localizacao-left {
    height: auto !important;
    margin-bottom: 50px !important;
    padding: 0 20px !important;
  }
  .localizacao-title {
    text-align: center !important;
    margin-bottom: 30px !important;
    font-size: 2rem !important;
    color: #222 !important;
  }
  .localizacao-text {
    text-align: center !important;
    margin: 0 auto !important;
    color: #666 !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    max-width: 90% !important;
  }
  .localizacao-right {
    display: flex !important;
    justify-content: center !important;
    padding: 0 20px 60px !important; /* EspaÃ§o para o mapa "respirar" no marrom */
  }
  .map-container {
    width: 100% !important;
    height: 400px !important; /* Altura fixa no mobile */
    border-radius: 50px !important; /* Conforme referÃªncia */
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
  }
}

/* UtilitÃ¡rios */
.py-section {
  padding: 100px 0;
}

.logo-item.logo-for-item img {
  max-height: 65px; /* Logo da construtora um pouco maior */
  opacity: 1;
}

/* --- SeÃ§Ã£o Incorporadora (FOR) --- */
.incorporadora-section {
  background-color: #FDF9F3; /* Bege muito claro, fiel Ã  referÃªncia */
  padding: 350px 0;
}

.incorporadora-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: center;
}

.incorporadora-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.incorporadora-logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.incorporadora-title {
  font-family: var(--font-lato);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.incorporadora-text {
  font-family: var(--font-lato);
  font-size: 1.25rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.incorporadora-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-lato);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.incorporadora-link .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.incorporadora-link:hover {
  color: #A15600;
  border-bottom-color: #A15600;
}

.incorporadora-link:hover .arrow {
  transform: translate(3px, -3px);
}

/* Responsividade Incorporadora */
@media (max-width: 992px) {
  .incorporadora-section {
    padding: 80px 0;
  }
  
  .incorporadora-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .incorporadora-logo img {
    max-width: 280px;
  }
  
  .incorporadora-title {
    font-size: 2rem;
  }
  
  .incorporadora-link {
    justify-content: center;
  }
}

/* --- SeÃ§Ã£o de Contato / FormulÃ¡rio --- */
.contato-section {
  padding: 150px 0;
  background: url('public/img/img-background-form.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 10;
}

.contato-inner {
  background-color: #A15600; /* Marrom fiel Ã  referÃªncia */
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  color: #fff;
  align-items: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.contato-title {
  font-family: var(--font-lato);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.contato-text {
  font-size: 1.25rem;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 450px;
  font-weight: 300;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease;
}

.form-group:focus-within {
  border-bottom-color: #fff;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: #fff;
  font-family: var(--font-lato);
  font-size: 1.1rem;
  outline: none;
  resize: none;
  overflow-y: hidden;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-submit-form {
  width: 100%;
  background: #fff;
  color: #A15600;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  background: #f8f8f8;
}

/* Custom Autofill Styles (Sobrescrever fundo azul do navegador) */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover, 
.form-group input:-webkit-autofill:focus, 
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #A15600 inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-footer {
  margin-top: 35px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 400;
}

.form-status-message {
  margin-top: 25px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  display: none;
  font-weight: 400;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-status-message.success {
  display: block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.form-status-message.error {
  display: block;
  background: #fff;
  color: #A15600;
  border: 1px solid #fff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsividade FormulÃ¡rio */
@media (max-width: 992px) {
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 40px;
    text-align: center;
  }
  .contato-text {
    margin: 0 auto;
  }
  .form-group {
    text-align: left;
  }
}

/* --- RodapÃ© (Footer) --- */
.footer {
  background-color: #A15600; /* Marrom institucional */
  color: #FFFFFF;
  padding: 100px 0 50px 0;
  font-family: var(--font-inter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo-main {
  max-width: 180px;
  margin-bottom: 25px;
}

.footer-brand-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 280px;
}

.footer-realizacao {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-for {
  max-width: 80px;
  height: auto;
}

.footer-realizacao p {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li,
.footer-contact-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.85;
}

.footer-nav-list a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social-links {
  display: flex;
  gap: 20px;
}

.footer-social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.footer-social-links a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-social-links img {
  width: 24px;
  height: 24px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 1000px;
  margin: 0 auto 30px auto;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 80px 0 40px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-brand-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-realizacao {
    align-items: center;
  }
  
  .footer-social-links {
    justify-content: center;
  }
  
  .footer-logo-main {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- SeÃ§Ã£o FAQ --- */
.faq-section {
  background-color: #FDF9F3; /* Fundo compatÃ­vel com a incorporadora */
  padding: 150px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 150px;
}

.faq-subtitle {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-family: var(--font-lato);
  font-size: 5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 0.9;
}

.faq-description {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.4;
  max-width: 320px;
}

/* Accordion FAQ Overrides */
.faq-accordion .accordion-item {
  border-bottom: 1.5px solid #F9942B; /* Linha laranja fina */
}

.faq-accordion .accordion-header {
  padding: 40px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion .accordion-header:hover {
  color: #F9942B;
}

.faq-accordion .accordion-header span {
  color: #F9942B;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-item.active .accordion-header span {
  transform: rotate(90deg);
}

.faq-accordion .accordion-content p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .faq-sidebar {
    position: static;
    text-align: center;
  }
  
  .faq-description {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .faq-title {
    font-size: 3.5rem;
  }

  .faq-accordion .accordion-header {
    font-size: 1.2rem;
    padding: 30px 0;
  }
}

/* --- Responsividade do Menu --- */
@media (max-width: 992px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-content {
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
  
  .glass-pill {
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
  }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0); /* Backdrop invisÃ­vel no inÃ­cio */
  z-index: 10002;
  visibility: hidden;
  transition: background-color 0.4s ease, visibility 0.4s;
  display: flex;
  justify-content: flex-end; /* Alinha a sidebar Ã  direita */
}

.mobile-menu-overlay.active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.6); /* Backdrop escurecido */
}

.mobile-menu-content {
  width: 85%; /* Conforme pedido pelo usuÃ¡rio */
  max-width: 400px;
  height: 100%;
  background-color: #3E2B1E; /* Marrom Profundo Premium */
  padding: 40px var(--grid-margin);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-header .logo img {
  height: 35px;
}

.menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.mobile-nav li a span img {
  width: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mobile-cta-wrapper .btn-consultant {
  width: 100%;
  padding: 1.3rem;
  font-size: 1.05rem;
}

.mobile-socials {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
}

.mobile-socials img {
  width: 26px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-socials a:hover img {
  opacity: 1;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- SeÃ§Ã£o Conceito Mobile --- */
@media (max-width: 992px) {
  .conceito-grid {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 120px 25px 60px; /* Margem do menu e base */
    justify-content: flex-start; /* Alinhamento inicial no topo */
    text-align: left;
    gap: 0;
  }

  /* ConteÃºdo do Topo (Juntos no Topo) */
  .conceito-grid .top-left, 
  .conceito-grid .top-right {
    grid-column: span 12;
    width: 100%;
    text-align: left !important;
    align-self: flex-start !important;
    margin: 0;
  }

  .conceito-grid .top-left h2 {
    font-size: 48px !important;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -1px;
    font-weight: 700;
  }

  .conceito-grid .top-left .orange {
    font-size: 32px !important;
    margin-bottom: 5px !important; /* Bem prÃ³ximo da descriÃ§Ã£o abaixo */
    font-weight: 600;
    display: block;
    text-transform: none;
  }

  .conceito-grid .top-right p:first-child {
    font-size: 24px !important;
    margin-bottom: 4px;
    opacity: 0.9;
    font-weight: 300;
  }

  .conceito-grid .top-right p:last-child {
    font-size: 24px !important;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0 !important;
  }

  /* ConteÃºdo da Base (Juntos na Base) */
  .conceito-grid .bottom-left, 
  .conceito-grid .bottom-right {
    grid-column: span 12;
    width: 100%;
    text-align: center !important;
    align-self: center !important;
    margin: 0;
  }

  .conceito-grid .bottom-left {
    margin-top: auto !important; /* CRUCIAL: Empurra o bloco inferior para o rodapÃ© da tela */
  }

  .conceito-grid .bottom-left h2 {
    font-size: 40px !important;
    line-height: 1;
    margin-bottom: 6px !important; /* Aproximando o tÃ­tulo da frase abaixo */
    letter-spacing: -1px;
    font-weight: 700;
  }

  .conceito-grid .bottom-left p {
    font-size: 24px !important;
    line-height: 1.2;
    margin-bottom: 20px !important; /* Aproximando a frase do botÃ£o */
    max-width: 100% !important;
    font-weight: 400;
  }

  .conceito-grid .btn-units {
    width: 192px !important;
    height: 60px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    background-color: #F9942B !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    font-weight: 500;
  }
}

/* --- SeÃ§Ã£o Infraestrutura Mobile --- */
@media (max-width: 992px) {
  #infra-section {
    padding: 60px 0;
  }

  .infra-bg-container {
    width: calc(100% - 40px); /* Margem de 20px em cada lado */
    margin: 0 auto;
    border-radius: 40px;
    padding: 60px 0 100px !important; /* Zero padding nas laterais p/ o carrossel encostar */
    min-height: auto;
  }

  .infra-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 0 20px !important; /* MantÃ©m o alinhamento do tÃ­tulo */
    margin-right: 0;
  }

  .infra-header h2 {
    font-size: 46px !important; /* Reduzido o tÃ­tulo para 46px */
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .carousel-wrapper {
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
    overflow: visible; /* Permite ver o card seguinte sem recorte */
  }

  .carousel-track {
    padding: 0 0 0 20px !important; /* Somente padding na esquerda p/ o primeiro card alinhar com o tÃ­tulo */
    gap: 16px !important;
  }

  .carousel-card {
    flex: 0 0 85% !important; /* Card maior p/ ocupar a tela mobile */
    height: 480px !important; /* Altura aumentada p/ o gap de 75px do info */
    border-width: 2px;
    border-radius: 25px;
  }

  .card-info {
    width: 80% !important;
    padding: 20px !important;
    border-radius: 25px !important;
    aspect-ratio: auto !important; /* Remove o quadrado p/ mobile */
    min-height: 160px !important; /* Garantir altura p/ o gap de 75px */
    bottom: 10px !important;
    right: 10px !important;
    justify-content: flex-start !important; /* Alinha ao topo para respeitar o gap */
  }

  .card-info h3 {
    font-size: 14px !important;
    margin-bottom: 75px !important; /* GAP solicitado de 75px entre tÃ­tulo e parÃ¡grafo */
    font-weight: 500;
  }

  .card-info p {
    font-size: 18px !important;
    line-height: 1.1;
    margin-top: 0 !important;
  }

  /* Reposicionando controles na base */
  .infra-header .carousel-nav {
    position: absolute;
    bottom: -80px; /* Joga para baixo do wrapper */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
    display: flex !important; /* Garantir que apareÃ§am */
  }

  /* --- SeÃ§Ã£o Obras Mobile --- */
  #obras-section {
    padding: 80px 0;
  }

  .container-obras {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .obras-info {
    position: static;
    grid-column: auto;
    width: 100%;
    margin-bottom: 60px;
    text-align: left;
  }

  .obras-info h2 {
    font-size: 38px !important;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
    letter-spacing: -1px;
  }

  .obras-info p {
    font-size: 20px !important;
    line-height: 1.4;
    color: #555;
    font-weight: 400;
  }

  .obras-timeline {
    grid-column: auto;
    padding-left: 35px;
  }

  .timeline-line {
    left: 6px;
    background: #E0E0E0;
    width: 1px;
  }

  .timeline-dot {
    left: -35px;
    top: 6px;
    width: 13px;
    height: 13px;
    background: #F9942B;
    border: none;
  }

  .timeline-item {
    margin-bottom: 70px;
  }

  .timeline-date {
    font-size: 15px;
    margin-bottom: 12px;
    color: #F9942B;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }

  .timeline-content h3 {
    font-size: 30px !important;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
  }

  .timeline-content p {
    font-size: 18px !important;
    line-height: 1.4;
    color: #666;
    margin-bottom: 25px;
  }

  .progress-container {
    display: flex !important;
    flex-direction: column-reverse !important; /* Porcentagem acima da barra */
    align-items: flex-end;
    gap: 8px;
    width: 100%;
  }

  .progress-label {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-bottom: 0 !important;
  }

  .progress-bar {
    width: 100% !important;
    height: 7px !important; /* Reduzido de 10px para 7px como pedido */
    background: #F2F2F2 !important;
    border-radius: 5px;
    flex: none !important; /* Previne colapso por causa do flex: 1 de desktop */
    overflow: hidden;
  }

  /* --- SeÃ§Ã£o Ficha TÃ©cnica e Conceito Mobile --- */
  #ficha-tecnica-section {
    padding: 60px 0 !important;
  }

  .ficha-intro {
    text-align: left !important;
    font-size: 24px !important;
    margin: 0 0 60px !important;
    line-height: 1.3 !important;
  }

  .ficha-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .accordion-container {
    order: 1 !important;
    margin-bottom: 40px !important;
    height: auto !important;
  }

  .accordion-label {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  .accordion-header {
    font-size: 1.1rem !important;
    padding: 20px 0 !important;
  }

  .ficha-box {
    order: 2 !important;
    padding: 40px 30px !important;
    border-radius: 25px 25px 0 0 !important; /* Unindo com a imagem */
    background-color: #A35E14 !important;
  }

  .ficha-box h3 {
    font-size: 1.6rem !important;
    margin-bottom: 30px !important;
  }

  .ficha-box ul li {
    font-size: 1rem !important;
  }

  .btn-ficha-more {
    font-size: 1.2rem !important; /* Destaque maior no mobile */
    margin: 35px auto 0 !important;
  }

  .ficha-image-footer {
    border-radius: 0 0 25px 25px !important; /* Top-left AND Top-right sharp for mobile connection */
    margin-top: 0 !important;
    order: 3 !important;
  }

  .ficha-image-footer img {
    border-radius: 0 !important;
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
  }

  /* --- SeÃ§Ã£o de Plantas Mobile/Tablet --- */
  #plantas-section {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
  }

  #plantas-section .container:first-child {
    margin-bottom: 40px !important;
  }

  .plantas-title {
    font-size: 1.8rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }

  .plantas-subtitle {
    font-size: 1.1rem !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .planta-slide {
    background-color: #A35E14 !important;
    padding: 50px 20px 70px !important; 
    border-radius: 40px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 650px !important;
    margin: 0 auto !important;
  }

  .planta-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .planta-nome {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

  .planta-area {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase !important;
  }

  .planta-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .planta-visual {
    margin-bottom: 30px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .planta-img-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .planta-img-container img {
    width: 100% !important;
    max-width: 500px !important; /* Limita largura da imagem para nÃ£o esticar demais no tablet */
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* BotÃ£o Ver InformaÃ§Ãµes (Mobile Only) */
  .btn-planta-info {
    display: inline-block !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #fff !important;
    padding: 5px 0 !important;
    margin: 20px auto 10px !important;
    cursor: pointer !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
  }

  .btn-planta-info span {
    display: inline-block !important;
    margin-left: 5px !important;
    transition: transform 0.3s ease !important;
  }

  .planta-slide.expanded .btn-planta-info span {
    transform: rotate(180deg) !important;
  }

  /* Detalhes TÃ©cnicos ExpansÃ­veis */
  .planta-details-mobile {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.5s ease-in-out !important;
    width: 100% !important;
  }

  .planta-slide.expanded .planta-details-mobile {
    max-height: 1200px !important;
    opacity: 1 !important;
    margin-top: 30px !important;
    padding: 30px 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 15px !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important; /* Centraliza o grid, mas o conteÃºdo dentro Ã© left-aligned */
  }

  .feature-item {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    align-items: flex-start !important; /* Alinhado ao topo para textos longos */
  }

  .feature-item img {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important; /* Pequeno ajuste para alinhar com a primeira linha do texto */
  }

  .feature-item p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #fff !important;
  }

  .feature-item.full-width {
    grid-column: span 2 !important;
  }

  /* Setas do Slider Mobile */
  .slider-arrow {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    top: 50% !important;
  }

  .slider-arrow img {
    filter: invert(41%) sepia(87%) saturate(452%) hue-rotate(355deg) brightness(88%) contrast(92%) !important; /* Cor marrom */
    width: 18px !important;
  }

  .slider-arrow.prev {
    left: -10px !important;
  }

  .slider-arrow.next {
    right: -10px !important;
  }

  .slider-dots {
    bottom: 20px !important; /* Ajuste fino da posiÃ§Ã£o */
  }
}








/* ==========================================================================
   PÃGINA DE TEASER (EM BREVE)
   ========================================================================== */

.teaser-body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh; /* Permite que o body cresça se o conteúdo for maior */
  overflow-x: hidden;
  background-color: #000 !important;
  color: #fff;
  font-family: var(--font-lato);
}

/* VÃ­deo Background */
.teaser-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* Agora o vídeo é visível desde o início */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 1s ease, visibility 1s;
}

.teaser-video-poster {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Atrás do vídeo que é 2, mas visível sobre o body */
}

.teaser-intro.hidden {
  opacity: 0;
  visibility: hidden;
}

.teaser-intro-logo {
  width: clamp(280px, 60vw, 600px);
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.teaser-intro-logo.show {
  opacity: 1;
  transform: scale(1);
}

.teaser-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 2s ease;
}

.teaser-video-bg.video-loaded {
  opacity: 1;
}

.teaser-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
}

/* ConteÃºdo Centralizado */
.teaser-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; 
  padding: 40px 20px 40px; /* Reduzido de 80px/60px */
  text-align: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Alterado de flex-start para center */
  min-height: 100vh;
}

.teaser-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.teaser-main-box {
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teaser-logo {
  width: 260px;
  margin-bottom: 45px; /* Aumentado de 25px para empurrar o card para o centro visual */
  filter: brightness(0) invert(1);
}

.teaser-header {
  margin-bottom: 15px; /* Reduzido de 30px */
}

.teaser-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px; /* Reduzido de 20px */
  letter-spacing: -1.5px;
  color: #fff;
}

.teaser-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 15px; /* Reduzido de 30px */
  color: #282828; 
  line-height: 1.4;
}

.teaser-highlight {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #A15600; /* Marrom institucional exato #A15600 */
  margin-bottom: 15px; /* Reduzido de 30px */
}

/* Card de Captura Premium Style (Nova ReferÃªncia) */
/* Card de Captura Premium Style (Fidelidade Total #FFFBF4) */
.teaser-card {
  background: #FFFBF4;
  border-radius: 60px;
  padding: 50px 50px 40px; /* Aumentado padding para mais respiro */
  width: 100%;
  max-width: 720px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Gap generoso para estética premium */
}

.teaser-card .teaser-header h2 {
  color: #282828; /* Cor exata #282828 */
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
}

.teaser-card .teaser-subtitle {
  color: #282828;
}

.teaser-card .teaser-highlight {
  color: #A15600; /* Marrom institucional #A15600 */
}

/* FormulÃ¡rio Vertical */
.teaser-form-vertical {
  width: 100%;
  max-width: 480px; /* Reduzido de 550px */
  margin: 0 auto;
}

.teaser-vertical-inputs {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Devolvido para 15px para melhor respiro */
}

.teaser-input-wrapper {
  width: 100%;
}

.teaser-input {
  width: 100%;
  background: #FAF2E3 !important; /* Cor exata #FAF2E3 */
  border: none !important;
  border-radius: 40px !important;
  padding: 14px 25px !important; 
  color: #B05500 !important; /* Escurecido para contraste (era #F99523) */
  font-size: 1rem !important;
  outline: none !important;
  transition: all 0.3s ease !important;
}

.teaser-input::placeholder {
  color: #F99523;
  opacity: 0.7;
}

/* Cor quando preenchido #282828 */
.teaser-input:not(:placeholder-shown) {
  color: #282828 !important;
}

.teaser-input:focus {
  background: #fff !important;
}

.teaser-btn {
  background: #A15600 !important; /* Cor exata botÃ£o #A15600 */
  color: #FFF8EB !important; /* Cor exata texto botÃ£o #FFF8EB */
  border: none !important;
  border-radius: 40px !important;
  padding: 16px 40px !important; /* Reduzido de 18px */
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 5px; /* Reduzido de 10px */
}

.teaser-btn:hover {
  background: #8e4c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(161, 86, 0, 0.2);
}

.teaser-divider {
  border: 0;
  border-top: 1px solid rgba(40, 40, 40, 0.15);
  margin: 10px 0 0; /* Margem reduzida pois o GAP do card já faz o trabalho */
  width: 100%;
}

.teaser-footer {
  text-align: center;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 15px !important; /* Espaço entre a nota e as logos */
  flex-grow: 0 !important;
}

.footer-note {
  font-size: 0.95rem;
  color: #282828;
  margin: 0 !important; 
  font-weight: 400;
  line-height: 1.2;
}

/* Status no Card Claro */
.teaser-status-message {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
}

.teaser-status-message.success {
  color: #155724;
  background: #d4edda;
}

.teaser-status-message.error {
  color: #721c24;
  background: #f8d7da;
}

.teaser-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75); /* Aumentado contraste */
  margin-top: 15px; 
}

.teaser-partners {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.teaser-partners .logos-grid {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.teaser-partners .logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  animation: scroll-partners 50s linear infinite !important;
  padding: 0; /* Zerado */
  margin: 0;
  height: auto !important;
}

.teaser-partners .logo-item {
  margin-right: 80px !important; /* Aumentado de 60px para 80px para respiro */
}

.teaser-partners .logo-item img {
  height: 55px; /* Aumentado de 45px para preencher melhor o espaço */
  filter: grayscale(100%) contrast(0.8) brightness(0.4);
  opacity: 0.7;
  transition: all 0.3s;
}

.teaser-partners .logo-item:hover img {
    filter: none;
    opacity: 1;
}

/* Responsividade Final */
@media (max-width: 992px) {
  .teaser-card {
    padding: 40px 30px 30px; /* Reduzido padding geral no mobile */
    border-radius: 40px;
  }
  
  .teaser-header h2 {
    font-size: 2.2rem;
  }
  
  .teaser-logo {
    width: 160px;
  }

  .teaser-container {
    padding-top: 30px;
  }
}

@media (max-width: 576px) {
  .teaser-card {
    padding: 40px 20px;
  }

  .teaser-btn {
      font-size: 1rem;
      padding: 18px 25px;
  }

  .teaser-header h2 {
    font-size: 1.8rem;
  }

  .teaser-partners .logo-item {
    margin-right: 40px !important;
  }
}

/* Revelação Suave (Progressive Loading) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  color: #25D366;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  
  /* Estado Inicial Oculto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: whatsapp-gentle-float 6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

@keyframes whatsapp-gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.whatsapp-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background-color: #FF3B30;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsividade WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 15px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-badge {
    top: 2px;
    right: 2px;
  }
}

/* --- Cookie Banner --- */
.cookie-banner { position: fixed; bottom: -120px; left: 50%; transform: translateX(-50%); width: calc(100% - 40px); max-width: 900px; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; padding: 20px 35px; border-radius: 30px; z-index: 10001; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); box-shadow: 0 15px 50px rgba(0,0,0,0.5); visibility: hidden; opacity: 0; }
.cookie-banner.visible { bottom: 30px; visibility: visible; opacity: 1; }
.cookie-banner.hiding { bottom: -120px; opacity: 0; }
.cookie-banner p { font-size: 0.95rem; margin: 0; line-height: 1.4; color: rgba(255,255,255,0.9); text-align: left; }
.btn-cookie-accept { background: #F9942B; color: #fff; border: none; padding: 12px 30px; border-radius: 40px; cursor: pointer; font-weight: 600; white-space: nowrap; transition: all 0.3s ease; font-size: 0.9rem; font-family: var(--font-lato); }
.btn-cookie-accept:hover { background: #e08324; transform: scale(1.05); }

@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; text-align: center; padding: 25px; border-radius: 25px; bottom: -200px; }
    .cookie-banner.visible { bottom: 20px; }
    .cookie-banner p { text-align: center; font-size: 0.9rem; }
    .btn-cookie-accept { width: 100%; }
}
