/* Paleta premium atualizada */
:root{
  --teal-900:#084A45; /* verde escuro principal */
  --teal-900-soft:#0a5a54; /* variação mais clara para fundos */
  --teal-870:#0A5651; /* contraste intermediário para seções */
  --teal-800:#0f5e5a;
  --teal-700:#16706b;
  --cream:#e9dfcf;
  --cream-2:#f3ecdf;
  --cream-soft:#efe7d8; /* creme mais suave p/ CTA */
  --green-light:#C8E5D8; /* detalhes e destaques */
  --gold:#D4C29D;        /* ênfases e divisores */
  --shadow: rgba(0,0,0,.22); /* sombra global suavizada */
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--cream);
  background: linear-gradient(180deg, var(--teal-900-soft) 0%, var(--teal-900) 100%);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.hero{
  min-height:100svh;
  display:grid;
  place-items:center;
  padding: clamp(16px,2vw,36px) clamp(16px,2vw,36px) clamp(6px,1vh,16px);
  margin-bottom: 0;
  padding-bottom: 20px;
}
.hero__content{
  max-width:960px;
  width:100%;
  text-align:center;
  margin-bottom: 0;
  padding-bottom: 0;
}
.brand{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 12px;
}
.logo{
  width:clamp(120px, 22vw, 220px);
  height:auto;
  object-fit:contain;
  border-radius:8px;
  filter:drop-shadow(0 4px 14px var(--shadow)); /* sombra reduzida */
}
  .logo--img{ display:inline-block; }
  .logo--masked{
    display:none;
    height:clamp(120px, 22vw, 220px);
    width:clamp(120px, 22vw, 220px);
    background-color: var(--cream);
    -webkit-mask-image: url('./imagens/558167643_17917366128186077_1306386857111891599_n.jpg');
    mask-image: url('./imagens/558167643_17917366128186077_1306386857111891599_n.jpg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-mode: luminance;
    /* compat */
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }

  /* Se o navegador suportar mask-image, usa a versão mascarada */
  @supports ((mask-image: url("")) or (-webkit-mask-image: url(""))){
    .logo--img{ display:none; }
    .logo--masked{ display:inline-block; }
  }
.eyebrow{
  margin:0 0 8px;
  font-size:clamp(12px, 1.6vw, 14px);
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.9;
  font-family: 'Inter', sans-serif !important;
}
h1{
  margin:0 0 8px;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800;
  font-size:clamp(36px, 6vw, 70px);
  line-height:1.08; /* entre 1.06 e 1.10 */
  letter-spacing: .3px; /* imponência sutil */
  color:var(--cream);
  text-shadow:0 4px 18px rgba(0,0,0,.25); /* mais elegante e leve */
}
.sub{
  margin:0 auto 16px;
  max-width:720px;
  font-size:clamp(16px, 2.1vw, 20px);
  line-height:1.6;
  opacity:.9; /* leveza maior */
}
  /* Vídeo responsivo (16:9) */
  .video{
    margin:10px auto 10px;
    max-width:680px;
    aspect-ratio:16/9;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.22);
    position:relative;
  }
  /* Overlay sutil dourado no vídeo */
  .video::after{
    content:"";
    position:absolute; inset:0;
    background: rgba(212,194,157, .05);
    pointer-events:none;
  }
  /* Linha dourada de 1px abaixo do vídeo */
  .video-sep{ height:1px; background: var(--gold); width:min(680px, 92%); margin:8px auto 0; opacity:.9; border-radius:1px }
  .video iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }
  .video video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
  }
  .video-ctrl{
    position:absolute;
    right:12px;
    bottom:12px;
    padding:8px 12px;
    border-radius:999px;
    border:0;
    font-weight:700;
    background:rgba(233,223,207,.95);
    color:var(--teal-900);
    box-shadow:0 6px 18px rgba(0,0,0,.25);
    cursor:pointer;
  }
.cta{
  display:inline-block;
  margin-top:8px;
  padding:16px 24px;
  border-radius:10px;
  background:var(--cream-soft);
  color:var(--teal-900);
  font-weight:800;
  font-size:clamp(14px,1.6vw,16px);
  border:1px solid var(--gold);
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, filter .12s ease;
}
.cta:hover{ transform:translateY(-1px); box-shadow:0 12px 26px rgba(0,0,0,.24); filter: brightness(1.02); }
.cta:active{ transform:translateY(0); }

.trust{
  margin-top:6px;
  font-size:14px;
  opacity:.9;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.trust .dot{ width:4px; height:4px; border-radius:50%; background:var(--cream); opacity:.6 }

/* Preferência por alto contraste e leitura em telas menores */
@media (prefers-contrast: more){ .sub{opacity:1} }

/* Ajustes para telas com pouca altura */
@media (max-height: 780px){
  h1{ font-size:clamp(28px,5vw,48px); }
  .video{ max-width:600px; }
  .logo{ width:clamp(100px,18vw,180px); }
}
@media (max-height: 650px){
  .hero{ padding:12px; }
  .eyebrow{ font-size:12px; margin-bottom:6px; }
  h1{ font-size:clamp(24px,4.6vw,42px); margin-bottom:6px; }
  .sub{ font-size:15px; margin-bottom:10px; }
  .video{ max-width:520px; margin-bottom:10px; }
  .cta{ padding:12px 18px; }
  .trust{ font-size:12px; margin-top:10px; }
}

/* Second Section Styles */
.section-2 {
  padding: 60px 0;
  background-color: var(--teal-900);
}

.s2__title {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 900px;
  padding: 0 20px;
  color: var(--cream);
}

.s2__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
  align-items: center;
}

.s2__media {
  flex: 1;
  min-width: 300px;
}

.s2__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

.s2__content {
  flex: 1;
  min-width: 300px;
}

.s2__sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--cream);
  opacity: 0.9;
}

.s2__highlight {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.s2__list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.s2__list li {
  font-family: 'Inter', sans-serif !important;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.9;
}

.s2__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* Micro Proof Section */
.micro-proof {
  background-color: var(--teal-870);
  padding: 16px 0;
  margin-bottom: 0;
}

.micro-proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.micro-proof p {
  font-family: 'Inter', sans-serif !important;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 4px;
}

.micro-proof .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--cream);
  border-radius: 50%;
  opacity: 0.7;
}

.micro-proof .icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  color: var(--gold);
}

/* MOBILE: reduzir espaço entre as sessões */
@media (max-width: 768px) {
  .micro-proof {
    padding: 12px 0;
  }
  
  .micro-proof__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 16px;
  }
  
  .micro-proof p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .micro-proof .dot {
    display: none; /* Remove dots between items on mobile */
  }
  
  .micro-proof .icon-check {
    margin-right: 8px;
  }
}

@media (max-width: 768px){
  .section-2{ padding:32px 16px; }
  .s2__title{ margin-bottom:14px; }
  .s2__inner{ gap:16px; }
  .s2__media{ max-width:480px; margin-bottom:4px; }
  .s2__media img{ max-height:280px; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 20px; }
  .video { margin-bottom: 10px; }
  .cta { margin-top: 4px; }
  .trust { margin-top: 2px; }
  .section-2 { margin-top: 0; }
  .section-2 { padding: 22px 16px; } /* respiro lateral maior */
  .s2__title { 
    margin: 0 auto 12px; 
    font-size: clamp(19px, 5vw, 24px); 
  }
  .s2__inner { 
    gap: 12px;
    grid-template-columns: 1fr;
  }
  
  .micro-proof p {
    display: flex;
    align-items: center;
    margin: 4px 0;
  }
  
  .micro-proof .icon-check {
    flex-shrink: 0;
  }
}
@media (max-width: 360px){
  .section-2{ margin-top: 0; padding-top: 20px; }
}

/* Segunda sessão com imagem de fundo */
.section-2{
  padding:40px 16px;
  padding-top:20px;
  margin-top:0;
  position:relative;
  /* Fundo com contraste maior: degradê claro→escuro + textura sutil */
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, rgba(10,90,84,1) 0%, var(--teal-870) 55%, var(--teal-900) 100%);
}
/* Textura granulada sutil na section-2 */
.section-2::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.04;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 2px 2px;
}
 .s2__title{
   max-width:1100px; margin:0 auto 22px; text-align:center; /* mais espaço antes do parágrafo */
   font-family:"Playfair Display", Georgia, serif;
   font-size:clamp(22px,3.6vw,40px);
   line-height:1.16;
 }
 .s2__title .em{ color:var(--gold); font-weight:700 }
 .s2__title .strong{ color:var(--cream); position:relative; text-decoration:none }
/* Removed underline from Loteamento */
/* .s2__title .strong::after{ content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--gold); border-radius:2px } */
 .s2__title .accent{ color:var(--gold); font-weight:800 }
 .s2__inner{ display:grid; grid-template-columns:1.2fr 1fr; gap:24px; max-width:1100px; margin:0 auto; align-items:center }
 .s2__media img{ width:100%; height:auto; border-radius:12px; box-shadow:0 8px 22px rgba(0,0,0,.22); border:1px solid rgba(212,194,157,.6) }
 .s2__content h2{ margin:0 0 10px; font-family:"Playfair Display", Georgia, serif; font-size:clamp(24px,3.6vw,40px) }
  .s2__sub{ margin:0 0 12px; opacity:.94; line-height:1.6; font-size: 1.1em; }
.s2__sub .highlight-text {
  color: var(--gold);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.s2__sub .highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
  border-radius: 2px;
}
  .s2__highlight{ display:inline-block; margin:4px 0 12px; padding:8px 12px; border-radius:10px; background:var(--cream-soft); color:var(--teal-900); border:1px solid var(--gold); font-weight:800; font-size:clamp(14px,1.8vw,16px); letter-spacing:.02em; box-shadow:0 6px 16px rgba(0,0,0,.16) }
  /* Premium Price Highlight */
 .price-highlight {
   display: inline-block;
   margin: 12px 0 16px;
   padding: 16px 20px;
   font-family: 'Manrope', sans-serif;
   font-size: clamp(18px, 2vw, 24px);
   font-weight: 700;
   color: var(--gold);
   text-align: center;
   letter-spacing: 0.03em;
   background-color: rgba(212, 194, 157, 0.08);
   border: 1px solid var(--gold);
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   line-height: 1.4;
   width: 100%;
   box-sizing: border-box;
}

.price-highlight .price-amount {
   display: block;
   font-size: clamp(24px, 3vw, 36px);
   font-weight: 800;
   margin-top: 4px;
   color: var(--gold);
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
   white-space: nowrap;
}

.price-highlight .price-period {
   font-size: 50%;
   font-weight: 600;
   margin-left: 2px;
   opacity: 0.9;
   vertical-align: middle;
   position: relative;
   bottom: 2px;
}

 .price-highlight:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
   background-color: rgba(212, 194, 157, 0.12);
 }

 @media (max-width: 768px) {
   .price-highlight {
     padding: 10px 16px;
     margin: 10px 0 14px;
     font-size: clamp(18px, 5.5vw, 24px);
   }
 }

 .s2__list{ margin:0 0 16px 18px }
 .s2__list li{ margin:6px 0 }
 .cta--alt{ background:transparent; color:var(--cream); border:2px solid var(--green-light) }
 @media (max-width: 900px){
  .s2__inner{ grid-template-columns:1fr; gap:16px; }
  .s2__media{ order: -1; max-width:500px; margin:0 auto 8px; }
  .s2__media img{ max-height:320px; object-fit:cover; object-position: center; }
}

/* Detalhe sutil dourado como divisor de seção */
.section-2{
  box-shadow: inset 0 1px 0 rgba(212,194,157,.35);
}

/* Refinos desktop sem alterar mobile structure */
@media (min-width: 901px){
  /* Espaçamento vertical mais compacto entre sessões no desktop */
  .section-2{ padding-top: 32px; padding-bottom: 48px; }

  /* Títulos com mais contraste e hierarchy */
  h1{ letter-spacing: -0.01em; }
  .s2__title{ font-size: clamp(26px,3.2vw,42px); line-height:1.16 }

  /* Botões um pouco maiores e mais fortes no desktop */
  .cta{ padding:18px 26px; font-size:16px }
}

/* Micro sessões */
.micro-proof{
  background: rgba(200,229,216,.06);
  padding: 10px 14px;
  border-top: 1px solid rgba(212,194,157,.25);
  border-bottom: 1px solid rgba(212,194,157,.18);
}
.micro-proof__inner{
  max-width:1100px; margin:0 auto; display:flex; align-items:center; gap:12px; justify-content:center;
  font-size:14px; opacity:.92;
}
.micro-proof__inner .icon{ display:inline-flex; align-items:center; justify-content:center; color: var(--green-light); }
.micro-proof__inner .icon svg{ display:block }
.micro-proof__inner .dot{ width:4px; height:4px; border-radius:50%; background:var(--gold); opacity:.7 }

.micro-location{ padding:24px 16px; background: rgba(200,229,216,.04); }
.micro-location__title{ margin:0 0 10px; font-size:14px; letter-spacing:.12em; text-transform:uppercase; color: var(--green-light); opacity:.95 }
.micro-location__inner{ max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1.2fr 1fr; gap:18px; align-items:center }
.micro-location .map img{ width:100%; height:auto; display:block; border-radius:12px; box-shadow:0 8px 22px rgba(0,0,0,.2); border:1px solid rgba(212,194,157,.5) }
.micro-location .poi{ margin:0; padding-left:18px; opacity:.95 }
.micro-location .poi li{ margin:6px 0 }
@media (max-width: 900px){ .micro-location__inner{ grid-template-columns:1fr } }

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
  line-height: 1;
  padding: 5px;
}

.popup-close:hover {
  color: #333;
}

.popup-content h3 {
  margin: 0 0 20px;
  color: var(--teal-900);
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-900);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 194, 157, 0.3);
}

.popup-content .cta {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
}

.popup-content .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .popup-content {
    margin: 20px;
    padding: 25px 20px;
  }
  
  .popup-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .form-group input {
    padding: 10px 12px;
  }
  
  .popup-content .cta {
    padding: 12px;
    font-size: 1rem;
  }
}

/* CTA sticky (apenas mobile) */
.cta-sticky-mobile{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:1000;
  display:none; /* oculto por padrão, mostrado no mobile */
  text-align:center;
  padding:14px 18px;
  background: var(--cream-soft);
  color: var(--teal-900);
  font-weight:800; border:1px solid var(--gold);
  border-radius:12px; text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}
@media (max-width: 900px){ .cta-sticky-mobile{ display:block; bottom:16px } }

/* Micro animações premium (apenas desktop) */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* Mobile refinements: reduzir sombras para leveza */
@media (max-width: 480px){
  .video{ box-shadow:0 6px 16px rgba(0,0,0,.18); }
  .s2__media img{ 
    box-shadow:0 6px 16px rgba(0,0,0,.18);
    max-height:240px;
  }
  .cta{ box-shadow:0 6px 16px rgba(0,0,0,.18); }
  .section-2{ 
    padding:24px 12px;
    margin-top: -10px; /* Reduz o espaço superior */
  }
  .s2__media{ 
    margin: 0 auto 4px;
    max-width: 100%;
  }
  .s2__title{
    margin-bottom: 12px;
    line-height: 1.2;
  }
}
