/* =====================================================
   PONTAL DAS ÁGUAS — Design tokens
   ===================================================== */
:root{
  --navy:        #1D4054;
  --navy-dark:   #142F3D;
  --navy-light:  #2E5871;
  --offwhite:    #E6E7E6;
  --white:       #FFFFFF;
  --yellow:      #E4B10E;
  --yellow-dark: #E4B10E;
  --orange:      #E4B10E;

  --text-dark:   #1B2B33;
  --text-muted:  #4C6472;
  --text-onnavy: #C7D6DC;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;
  --radius-pill: 999px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.4,0,.2,1);
  --speed: .4s;

  --header-h: 92px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg{ display:block; max-width:100%; }

a{ text-decoration:none; color:inherit; }

h1, h2, h3{
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
}

p{ margin:0; }

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--delay, 0) * 110ms);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing:.02em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor:pointer;
  white-space: nowrap;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease),
              border-color var(--speed) var(--ease), transform .25s var(--ease),
              box-shadow var(--speed) var(--ease);
}
.btn:active{ transform: translateY(1px) scale(.98); }

.btn-sm{ padding: .7rem 1.6rem; font-size: .85rem; }
.btn-lg{ padding: 1.05rem 2.3rem; font-size: .95rem; }

.btn-navy{
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(29,64,84,.55);
}
.btn-navy:hover{
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(29,64,84,.6);
}

.btn-outline{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover{
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-yellow{
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 10px 24px -8px rgba(228,177,14,.55);
}
.btn-yellow:hover{
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(228,177,14,.65);
}

/* =====================================================
   Header
   ===================================================== */
.site-header{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display:flex;
  justify-content:center;
  padding: 0 20px;
  animation: headerDrop .8s var(--ease) both;
}

.logo{
    width: 120px;
    height: auto;
}

@keyframes headerDrop{
  from{ opacity:0; transform: translateY(-30px); }
  to{ opacity:1; transform: translateY(0); }
}

.nav-pill{
  width:100%;
  max-width: var(--container);
  display:flex;
  align-items:center;
  gap: 1.5rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-pill);
  padding: .55rem .7rem .55rem 1.3rem;
  box-shadow: 0 10px 34px -14px rgba(20,47,61,.28);
  transition: box-shadow var(--speed) var(--ease), padding var(--speed) var(--ease);
}

.site-header.is-scrolled .nav-pill{
  box-shadow: 0 14px 34px -10px rgba(20,47,61,.4);
  background: rgba(255,255,255,.96);
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  color: var(--navy);
  flex-shrink:0;
}
.logo-mark{ width: 34px; height:34px; color: var(--navy); }
.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  font-family: var(--font-head);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.03em;
}
.logo-text span:last-child{ color: var(--yellow-dark); }

.main-nav{
  display:flex;
  align-items:center;
  gap: 1.9rem;
  margin: 0 auto;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-dark);
}
.main-nav a{
  position:relative;
  padding: .3rem 0;
}
.main-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--yellow);
  transition: width var(--speed) var(--ease);
}
.main-nav a:hover::after{ width:100%; }

.nav-cta{ flex-shrink:0; }
.nav-cta-mobile{ display:none; }

.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width: 40px;
  height: 40px;
  border-radius:50%;
  border:none;
  background: transparent;
  cursor:pointer;
  flex-shrink:0;
}
.menu-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   Hero
   ===================================================== */
.hero{
  position:relative;
  overflow:hidden;
  background: var(--offwhite);
  padding-top: calc(var(--header-h) + 3.5rem);
  /* espaço reservado para a foto de fundo aparecer abaixo do texto,
     como no wireframe (cabeçalho + texto sobre o topo da foto) */
  padding-bottom: clamp(260px, 34vw, 460px);
}

/* Camada de fundo — reserve este espaço para a foto de 1920x2160.
   Duas opções de uso:
   1) Deixe como está e troque a URL abaixo por assets/hero-bg.jpg
   2) Ou substitua a div#heroBg por <img class="hero-bg" src="assets/hero-bg.jpg" alt="..."> */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:
    url('IMG/bg-pagina-chacreamento.png'),
    linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%);
  background-size: cover, cover;
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}
.hero-bg.is-visible{ transform: scale(1); }

/* esmaece a base da foto para fundir com o navy da próxima seção */
.hero-bg::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, var(--navy) 100%);
}

.hero-content{
  position:relative;
  z-index:1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 0;
  text-align:center;
}

.hero-title{
  font-size: clamp(1.9rem, 4.6vw, 3.15rem);
  line-height: 1.16;
  color: var(--navy-dark);
}
.hero-title .highlight{
  color: var(--yellow-dark);
  position: relative;
  white-space: nowrap;
}

.hero-subtitle{
  margin-top: 1.4rem;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height:1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin-left:auto;
  margin-right:auto;
}

.hero-actions{
  margin-top: 2.1rem;
  display:flex;
  gap: 1rem;
  justify-content:center;
  flex-wrap: wrap;
}

/* =====================================================
   About / "O que é o chacreamento" section
   ===================================================== */
.about{
  background: var(--navy);
  padding: 5rem 24px 5.5rem;
  margin-top: -3px; /* funde com o degrade do hero */
}

.about-inner{
  max-width: var(--container);
  margin: 0 auto;
  text-align:center;
}

.about-title{
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height:1.25;
}

.about-text{
  max-width: 700px;
  margin: 2rem auto 0;
  display:flex;
  flex-direction:column;
  gap: 1.1rem;
}
.about-text p{
  color: var(--text-onnavy);
  font-size: clamp(.92rem, 1.3vw, 1.02rem);
  line-height: 1.75;
}

/* Showcase / carousel */
.showcase{
  position:relative;
  max-width: 760px;
  margin: 3.2rem auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.showcase-frame{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  background: var(--navy-dark);
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  pointer-events:none;
}
.slide.is-active{
  opacity:1;
  transform: scale(1);
  pointer-events:auto;
}
.slide svg{ width:100%; height:100%; }

.showcase-arrow{
  flex-shrink:0;
  width: 52px;
  height: 52px;
  border-radius:50%;
  border:none;
  background: var(--yellow);
  color: var(--navy-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 24px -8px rgba(228,177,14,.6);
  position: relative;
  z-index: 3;
  transition: transform .25s var(--ease), background var(--speed) var(--ease);
}
.showcase-arrow svg{ width:22px; height:22px; }
.showcase-arrow:hover{ background: var(--yellow-dark); transform: scale(1.08); }
.showcase-arrow:active{ transform: scale(.94); }

.showcase-arrow--prev{ margin-right: -26px; }
.showcase-arrow--next{ margin-left: -26px; }

.about-cta{ margin-top: 3.2rem; }

/* =====================================================
   VÍDEO BAR & PARALLAX EFFECT
   ===================================================== */
.video-bar-section {
  width: 100%;
  height: 480px; /* Altura da barra de vídeo */
  overflow: hidden;
  position: relative;
  background-color: var(--navy-dark);
}

.video-bar-container {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

/* A imagem de fundo configurada para efeito paralaxe */
.video-parallax-bg {
  position: absolute;
  top: -60px; /* Margem extra vertical para permitir a movimentação sem revelar as bordas */
  left: 0;
  width: 100%;
  height: calc(100% + 300px); /* Maior do que o container para rolar em paralaxe */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear; /* Deixa o movimento super suave */
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(29,64,84,0.3) 0%, rgba(20,47,61,0.7) 100%);
  z-index: 1;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

/* Ícone central de play um pouco deslocado para compensar visualmente o triângulo */
.video-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.95);
}

/* MODAL / POPUP DO PLAYER */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.video-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 21, 28, 0.92);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}

.video-modal.is-active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.video-modal-close:hover {
  transform: scale(1.2);
}

.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =====================================================
   SEÇÃO LOCALIZAÇÃO
   ===================================================== */
.location-section {
  background-color: var(--navy);
  padding: 6.5rem 24px;
  color: var(--white);
}

.location-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.location-content {
  display: flex;
  flex-direction: column;
}

.location-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
}

.location-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-onnavy);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.location-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-onnavy);
}

/* Marcadores personalizados da lista utilizando bolinhas estéticas */
.location-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  top: 0;
  color: var(--yellow);
  font-size: 1.4rem;
  line-height: 1.2;
}

.location-footer-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-onnavy);
}

/* CONTAINER DO MAPA E SELO FLUTUANTE */
.location-map-wrapper {
  position: relative;
  width: 100%;
}

.map-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.map-badge svg {
  width: 44px;
  height: 44px;
}

@keyframes badgeFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.map-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.placeholder-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   SELO DO MAPA (TAMANHO CORRIGIDO E FORÇADO)
   ===================================================== */
.map-badge {
  position: absolute;
  top: -35px !important;
  right: -35px !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  background-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

/* Controla o tamanho da sua imagem de logotipo dentro da bolinha */
.map-badge img {
  width: 70%; 
  height: auto;
  object-fit: contain;
}

/* =====================================================
   RESPONSIVIDADE: CRESCENDO PARA A ESQUERDA NO MOBILE
   ===================================================== */
@media (max-width: 960px) {
  .map-badge {
    width: 105px !important; 
    height: 105px !important;
    /* O valor negativo menor puxa o botão excedente para a esquerda */
    right: -10px !important;
    top: -30px !important; 
  }
}

@media (max-width: 560px) {
  .map-badge {
    width: 100px !important;
    height: 100px !important;
    right: -8px !important; 
    top: -25px !important;
  }
}

/* Ajuste extra de segurança para telas de celulares mais estreitos (ex: iPhone SE) */
@media (max-width: 560px) {
  .map-badge {
    width: 100px;
    height: 100px;
    right: -8px; /* Mantém estritamente dentro da tela */
    top: -25px;
  }
}


/* =====================================================
   SEÇÃO INFRAESTRUTURA (CARDS COM FOTO NO TOPO)
   ===================================================== */
.infrastructure-section {
  background-color: var(--navy);
  padding: 7rem 24px 6.5rem;
  color: var(--white);
}

.infra-container {
  max-width: var(--container);
  margin: 0 auto;
}

.infra-header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.infra-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.infra-header p {
  color: var(--text-onnavy);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Sistema de Grid */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}

/* Estilo do Card individual */
.infra-card {
  background-color: var(--offwhite);
  border-radius: var(--radius-lg);
  /* Padding reduzido nas laterais e topo para a imagem expandir */
  padding: 1rem 1rem 1.5rem 1rem;
  color: var(--navy-dark);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Efeito Hover (apenas p/ desktop) */
@media (hover: hover) {
  .infra-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }
}

/* Wrapper da imagem ocupando a parte superior com cantos arredondados */
.infra-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--navy-dark);
  margin-bottom: 1rem;
}

.infra-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Espaçamento e alinhamento do texto na parte inferior */
.infra-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.5rem;
}

.infra-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}

.infra-card-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

/* Oculta o ícone antigo caso ainda exista no código */
.infra-icon {
  display: none;
}

/* =====================================================
   SEÇÃO PARALAXE ESTÁTICO (FUNDO)
   ===================================================== */
.static-parallax-section {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  background-color: var(--navy-dark);
  margin: 0;
  padding: 0;
}

.static-parallax-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.static-parallax-bg {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 300px); /* Mesma sobra do vídeo para o movimento */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* =====================================================
   SEÇÃO CHÁCARAS
   ===================================================== */
.chacaras-section {
  background-color: var(--navy);
  padding: 7rem 24px;
  color: var(--white);
}

.chacaras-container {
  /* Mantém o conteúdo um pouco mais estreito e focado, como na imagem */
  max-width: 900px; 
  margin: 0 auto;
  text-align: center;
}

.chacaras-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.chacaras-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.chacaras-header p {
  color: var(--text-onnavy);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

.chacaras-image-wrapper {
  /* Arredondamento suave e sombra para destacar a imagem do fundo */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  margin-bottom: 3.5rem;
}

.chacaras-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}

/* Efeito sutil de zoom na imagem ao passar o mouse */
@media (hover: hover) {
  .chacaras-image-wrapper:hover .chacaras-image {
    transform: scale(1.03);
  }
}

.chacaras-action {
  display: flex;
  justify-content: center;
}

.chacaras-btn {
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: 1.2rem 3rem;
}

/* =====================================================
   RESPONSIVIDADE (CHÁCARAS)
   ===================================================== */
@media (max-width: 600px) {
  .chacaras-section {
    padding: 5rem 18px;
  }
  
  .chacaras-header {
    margin-bottom: 2.5rem;
  }
  
  .chacaras-image-wrapper {
    margin-bottom: 2.5rem;
  }
  
  /* O botão ocupa 100% da largura no mobile para facilitar o clique */
  .chacaras-btn {
    width: 100%;
    padding: 1.1rem 1rem;
  }
}

/* =====================================================
   SEÇÃO PAGAMENTOS
   ===================================================== */
.pagamentos-section {
  background-color: var(--navy);
  padding: 7rem 24px;
  color: var(--white);
}

.pagamentos-container {
  max-width: var(--container);
  margin: 0 auto;
}

.pagamentos-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--white);
}

.pagamentos-card-wrapper {
  position: relative;
  max-width: 860px;
  margin: 4.5rem auto 0;
}

.pagamentos-card {
  background-color: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 4rem 5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.pagamentos-list {
  list-style: none;
  padding: 0;
  
  /* Novas regras para centralizar o bloco todo no card */
  width: fit-content;
  margin: 0 auto; 
  
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pagamentos-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.5;
}

/* Bolinhas (bullets) personalizadas para a lista */
.pagamentos-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy-light);
  font-size: 1.6rem;
  line-height: 1.2;
}

/* Modificador do selo apenas para a seção de pagamentos */
.map-badge.pagamentos-badge {
  /* Anula a regra do lado direito e fixa no lado esquerdo */
  right: auto !important; 
  left: -40px !important;
  top: -40px !important;
}

/* =====================================================
   SEÇÃO CONSULTORES
   ===================================================== */
.consultores-section {
  background-color: var(--navy);
  padding: 6.5rem 24px;
  color: var(--white);
}

.consultores-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.consultores-image-wrapper {
  width: 100%;
  /* Define proporção para garantir que a foto da guarita fique sempre elegante */
  aspect-ratio: 3 / 4; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.consultores-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultores-content {
  display: flex;
  flex-direction: column;
}

.consultores-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.consultores-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

/* O novo formato de botão pílula largo */
.btn-consultor {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--yellow);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  /* Padding reduzido na esquerda para abraçar o círculo */
  padding: 8px 40px 8px 8px; 
  border-radius: 100px; 
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
  width: fit-content;
  min-width: 260px;
}

.btn-consultor:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-consultor:active {
  transform: translateY(0);
}

/* Círculo branco dentro do botão com o ícone do Whats */
.btn-icon {
  width: 48px;
  height: 48px;
  background-color: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy-dark);
}

.consultores-phone {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--white);
}

.consultores-phone strong {
  font-size: 1.3rem;
}

/* =====================================================
   SEÇÃO CONSULTORES
   ===================================================== */
.consultores-section {
  background-color: var(--navy);
  padding: 6.5rem 24px;
  color: var(--white);
}

.consultores-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.consultores-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.consultores-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultores-content {
  display: flex;
  flex-direction: column;
  /* Força a centralização no desktop e no mobile */
  align-items: center !important; 
  text-align: center !important;
  justify-content: center;
}

.consultores-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
  /* Garante que o texto do título fique centralizado */
  text-align: center !important; 
}

.consultores-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  /* Garante que a coluna de botões se alinhe ao centro */
  align-items: center !important; 
  width: 100%;
}

/* O novo formato de botão pílula largo */
.btn-consultor {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--yellow);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 8px 40px 8px 8px; 
  border-radius: 100px; 
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
  width: fit-content;
  min-width: 260px;
}

.btn-consultor:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-consultor:active {
  transform: translateY(0);
}

/* Círculo branco dentro do botão com o ícone do Whats */
.btn-icon {
  width: 48px;
  height: 48px;
  background-color: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy-dark);
}

.consultores-phone {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--white);
}

.consultores-phone strong {
  font-size: 1.3rem;
}

/* =====================================================
   SEÇÃO TOUR VIRTUAL (TEXTO À ESQUERDA E VÍDEO À DIREITA)
   ===================================================== */
.tour-section {
  background-color: var(--navy);
  padding: 6.5rem 24px;
  color: var(--white);
}

.tour-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  /* Inverteu: Texto na esquerda (1fr), Vídeo na direita (1.1fr) */
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.tour-content {
  display: flex;
  flex-direction: column;
}

.tour-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1.25;
  color: var(--white);
}

.tour-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.tour-video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}

.tour-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 47, 61, 0.35);
  transition: background 0.3s var(--ease);
}

.tour-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.tour-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.tour-video-wrapper:hover .tour-video-thumb {
  transform: scale(1.04);
}

.tour-video-wrapper:hover .tour-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 1);
}

/* =====================================================
   RESPONSIVIDADE (TOUR VIRTUAL)
   ===================================================== */
@media (max-width: 960px) {
  .tour-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .tour-content {
    text-align: center;
    /* Como o texto já está em primeiro no HTML, ele virá antes do vídeo no mobile naturalmente */
  }
}

@media (max-width: 560px) {
  .tour-section {
    padding: 5rem 18px;
  }
  
  .tour-play-btn {
    width: 64px;
    height: 64px;
  }
  
  .tour-play-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* =====================================================
   RODAPÉ (FOOTER)
   ===================================================== */
.site-footer {
  background-color: var(--offwhite);
  padding: 5rem 24px;
  color: var(--navy-dark);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  width: 220px;
  display: block;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.footer-socials a svg {
  width: 26px;
  height: 26px;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  color: var(--navy-light);
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  text-align: right;
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.5;
}

/* =====================================================
   RESPONSIVIDADE (FOOTER)
   ===================================================== */
@media (max-width: 960px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .footer-col-left {
    align-items: center;
  }

  .footer-col-right {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 4rem 18px;
  }
  
  .footer-logo {
    width: 180px;
  }

  .footer-contact-item {
    font-size: 1.05rem;
  }
}

/* =====================================================
   RESPONSIVIDADE (CONSULTORES)
   ===================================================== */
@media (max-width: 960px) {
  .consultores-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  /* As regras de centralização que ficavam aqui foram movidas
     para cima para funcionar no desktop também! */
}

@media (max-width: 560px) {
  .consultores-section {
    padding: 5rem 18px;
  }

  .consultores-title {
    margin-bottom: 2rem;
  }

  .btn-consultor {
    font-size: 1.3rem;
    padding: 8px 30px 8px 8px;
    /* Faz o botão preencher mais o espaço da tela em celulares pequenos */
    width: 100%; 
    max-width: 320px;
  }
  
  .consultores-image-wrapper {
    aspect-ratio: 4 / 5;
  }
}
/* =====================================================
   RESPONSIVIDADE (CONSULTORES)
   ===================================================== */
@media (max-width: 960px) {
  .consultores-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .consultores-content {
    /* Centraliza a disposição dos blocos (título, botões e rodapé) no meio da tela */
    align-items: center;
    /* Centraliza o texto dentro do título e do parágrafo */
    text-align: center;
  }
}

/* =====================================================
   RESPONSIVIDADE (PAGAMENTOS) - ESPAÇAMENTO CORRIGIDO
   ===================================================== */
@media (max-width: 960px) {
  .pagamentos-card {
    /* Aumentado o espaço no topo para 4rem */
    padding: 4rem 2.5rem 3rem;
  }
  .pagamentos-list li {
    font-size: 1.05rem;
  }
  .map-badge.pagamentos-badge {
    left: -20px !important;
    top: -30px !important;
  }
}

@media (max-width: 560px) {
  .pagamentos-section {
    padding: 5rem 18px;
  }
  .pagamentos-card-wrapper {
    margin-top: 3.5rem;
  }
  .pagamentos-card {
    /* O primeiro valor (5rem) joga o texto lá para baixo, fugindo do selo */
    padding: 5rem 1.5rem 2.5rem;
    border-radius: 20px;
  }
  .pagamentos-list li {
    font-size: 0.98rem;
  }
  .map-badge.pagamentos-badge {
    left: -8px !important;
    top: -25px !important;
  }
}


/* =====================================================
   RESPONSIVIDADE (INFRAESTRUTURA)
   ===================================================== */
@media (max-width: 960px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .infrastructure-section {
    padding: 5rem 18px 4.5rem;
  }
  
  .infra-grid {
    grid-template-columns: 1fr; /* Empilha tudo no mobile */
    margin-top: 3.5rem;
  }
  
  .infra-card {
    padding: 2rem 1.8rem;
  }
  
  .static-parallax-section {
    height: 320px;
  }
}

/* =====================================================
   RESPONSIVIDADE DAS NOVAS SEÇÕES
   ===================================================== */
@media (max-width: 960px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .location-map-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .map-badge {
    top: -15px;
    right: -15px;
    width: 64px;
    height: 64px;
  }
  
  .map-badge svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 560px) {
  .video-bar-section {
    height: 320px;
  }
  
  .video-play-btn {
    width: 68px;
    height: 68px;
  }
  
  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .location-section {
    padding: 4.5rem 18px;
  }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 960px){
  .main-nav{ gap: 1.2rem; font-size:.82rem; }
}

@media (max-width: 820px){
  :root{ --header-h: 78px; }

  /* logo fica à esquerda, toggle vai para a extremidade direita
     (o nav-cta some e o main-nav vira dropdown fora do fluxo) */
  .nav-pill{ justify-content: space-between; }

  .main-nav{
    position:absolute;
    top: calc(100% + 12px);
    left:0;
    right:0;
    background: var(--white);
    border-radius: 22px;
    flex-direction:column;
    align-items:flex-start;
    gap: 0;
    padding: .6rem;
    box-shadow: 0 20px 40px -14px rgba(20,47,61,.35);
    opacity:0;
    visibility:hidden;
    transform: translateY(-8px);
    transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility var(--speed);
  }
  .main-nav.is-open{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }
  .main-nav a:not(.nav-cta-mobile){
    width:100%;
    padding: .8rem 1rem;
    border-radius: 12px;
  }
  .main-nav a:not(.nav-cta-mobile)::after{ display:none; }
  .main-nav a:not(.nav-cta-mobile):hover{ background: var(--offwhite); }

  /* botão "Contato" some da navbar principal, mas reaparece dentro do dropdown */
  .nav-cta{ display:none; }
  .nav-cta-mobile{
    display:flex;
    width:100%;
    justify-content:center;
    margin: .5rem 0 .15rem;
  }

  .menu-toggle{ display:flex; }

  .showcase-arrow{ width: 44px; height: 44px; }
  .showcase-arrow svg{ width:18px; height:18px; }
  .showcase-arrow--prev{ margin-right: -18px; }
  .showcase-arrow--next{ margin-left: -18px; }
}

@media (max-width: 560px){
  .nav-pill{ padding: .5rem .5rem .5rem 1rem; }
  .logo-text{ font-size:.62rem; }
  .logo-mark{ width:28px; height:28px; }

  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }

  .about{ padding: 4rem 18px; }
  .showcase-arrow{ width: 38px; height: 38px; }
  .showcase-arrow--prev{ margin-right: -14px; }
  .showcase-arrow--next{ margin-left: -14px; }
}

/* 1. Telas maiores que 1921px */
@media (min-width: 1921px) {
  #heroBg {
    background-image: 
      url('IMG/bg-pagina-chacreamento.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* 2. Telas entre 1350px e 1920px */
@media (max-width: 1920px) and (min-width: 1350px) {
  #heroBg {
    background-image: 
      url('IMG/bg-pagina-chacreamento2.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* 3. Telas entre 825px e 1349px */
@media (max-width: 1349px) and (min-width: 825px) {
  #heroBg {
    background-image: 
      url('IMG/BG-hero-chacreamento-5.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* 4. Telas entre 620px e 824px (Ajustado para dar espaço ao novo ponto) */
@media (max-width: 824px) and (min-width: 620px) {
  #heroBg {
    background-image: 
      url('IMG/BG-MOBILE-6.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* 5. NOVO PONTO: Telas entre 579px e 619px */
@media (max-width: 619px) and (min-width: 561px) {
  #heroBg {
    background-image: 
      url('IMG/BG-MOBILE-7.png'), /* <-- Coloque o nome da sua nova imagem aqui */
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* 6. Telas menores que 579px (Mantém a imagem mobile para os menores) */
@media (max-width: 560px) and (min-width: 439px) {
  #heroBg {
    background-image: 
      url('IMG/bg-mobile-chacreamento.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

@media (max-width: 438px) {
  #heroBg {
    background-image: 
      url('IMG/bg-mobile-chacreamento.png'),
      linear-gradient(180deg, #EAF3F6 0%, #CFE3D6 46%, #6F9A47 72%, #2F5B2A 100%) !important;
  }
}

/* =====================================================
   CORREÇÃO DEFINITIVA DO CARROSSEL (PREENCHIMENTO TOTAL)
   ===================================================== */
.showcase-frame {
  background-color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-frame .slide {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  display: none;
}

.showcase-frame .slide.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-frame .showcase-img {
  width: 100%;
  height: 100%;
  /* 'cover' faz a foto esticar/expandir para cobrir 100% da área do card */
  object-fit: cover; 
  object-position: center;
}