/* ========================================
   LP ON RESORT CIDADE JARDIM — Seções específicas
   Base: kronos.css (dark premium editorial).
   - Hero: .on-resort-hero e .kronos-hero
   - FormatModal + LM2 exit
   - CRO Mobile-First com Sticky Bottom Bar
   ======================================== */

/* ── Paleta On Resort (override dos tokens globais) ──
   Dourado terroso / Resort chic. */
:root {
  --gold: #C5A265;
  --gold-light: #E0C28A;
  --gold-dark: #9E7D43;
  --gold-muted: rgba(197, 162, 101, 0.16);
  --teal: #1E6F8F;
  --teal-light: #4A9BB8;
  --teal-muted: rgba(30, 111, 143, 0.12);
  --accent-primary: #C5A265;
  --shadow-gold: 0 4px 20px rgba(197, 162, 101, 0.3);
}

/* ── Hero ── */
.on-resort-hero,
.kronos-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
}
.kronos-hero-bg {
  position: absolute; inset: 0;
}
.kronos-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.kronos-hero-overlay {
  position: absolute; inset: 0;
  /* Gradiente luminoso: leitura nítida de títulos sem escurecer a foto do resort */
  background: linear-gradient(180deg, rgba(8,12,19,.68) 0%, rgba(8,12,19,.40) 160px, rgba(8,12,19,.10) 320px, rgba(8,12,19,.50) 100%);
  pointer-events: none;
}
.kronos-hero-scrim-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,12,19,.70) 0%, rgba(8,12,19,.40) 45%, rgba(8,12,19,.08) 80%, transparent 100%);
  pointer-events: none;
}
.kronos-hero-body {
  position: relative; z-index: 10;
  padding: 0 var(--space-12) var(--space-20); max-width: 900px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  border: 1px solid var(--accent-primary); color: var(--gold-light);
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 7px 18px; margin-bottom: 28px; border-radius: 2px;
  animation: fadeUp .8s .2s ease both;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold-light); }

.hero-title {
  font-size: clamp(2.4rem,5.8vw,4.4rem); font-weight: 700;
  line-height: 1.08; margin-bottom: 18px;
  animation: fadeUp .8s .35s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title--func { font-size: clamp(1.85rem, 4vw, 3rem); font-weight: 700; max-width: 780px; }
.hero-tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 400; font-style: italic;
  color: var(--gold-light); line-height: 1.4; margin-bottom: 14px;
  animation: fadeUp .8s .45s ease both;
}
.hero-sub {
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--text-secondary); max-width: 580px; margin-bottom: var(--space-8);
  animation: fadeUp .8s .5s ease both;
}
.hero-stats {
  display: flex; gap: var(--space-8); flex-wrap: wrap; margin-bottom: var(--space-10);
  animation: fadeUp .8s .65s ease both;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-val { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold-light); line-height: 1; }
.hero-stat-lbl { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.hero-stat-d { width: 1px; background: rgba(184,149,90,.2); align-self: stretch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .8s ease both; }
.hero-answer {
  font-size: .88rem; font-weight: 300; line-height: 1.75;
  color: var(--text-secondary); max-width: 640px;
  margin-top: var(--space-7); margin-bottom: 0;
  border-left: 2px solid var(--gold-muted); padding-left: var(--space-4);
  animation: fadeUp .8s .9s ease both;
}

/* ── Hero desktop (≥769px): top cluster (badge/H1/tagline) perto do header,
      stats+CTA no fim da seção — sempre dentro da 1ª dobra ── */
@media (min-width: 769px) {
  .kronos-hero { justify-content: flex-start; }
  .kronos-hero-body {
    flex: 1;
    display: flex; flex-direction: column;
    max-width: 100%;                    /* full width p/ o card poder ir à direita da página */
    padding: 20px var(--space-12) 20px;
  }
  .hero-badge { margin-bottom: 15px; }
  .hero-stats {
    margin-top: auto;                 /* empurra stats+CTA pro fim (gap livre fica acima dos stats) */
    flex-direction: column; align-items: flex-start;
    gap: var(--space-2); margin-bottom: 15px;
  }
  .hero-stat-d { display: none; }
}
/* Ao estreitar: stats em 2 colunas × 3 linhas p/ caber na 1ª dobra */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: var(--space-8); row-gap: var(--space-3);
    justify-items: start;
  }
}

/* ── Sobre / Conceito Grid ── */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-md); }
.gold { color: var(--gold); }
.sobre-features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-8); }
.sf {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 14px 16px; background: rgba(255,255,255,.03);
  border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 300; color: var(--text-secondary);
}
.sf-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-muted); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold-light); font-size: .7rem; font-weight: 700;
}
.sf strong { color: var(--white); font-weight: 500; }

/* ── Por que escolher o Kronos (fundida) ── */
.porque-grid { grid-template-columns: repeat(3,1fr); }
.porque-grid .ac { cursor: default; }

/* ── Amenities / Galeria ── */
.amen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-3); }
.ac {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; height: 200px; background: var(--black-3);
  /* button reset (A5: div onclick → button semântico) — .ac agora é <button> nos cards amenity */
  display: block; width: 100%; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; text-align: left; appearance: none;
}
.ac img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
.ac:hover img { transform: scale(1.06); }
.ac-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.8) 0%,transparent 55%); }
.ac-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-4);
  font-size: .82rem; font-weight: 500; color: var(--white);
}
.ac-label small { display: block; font-size: .65rem; color: rgba(245,242,236,.55); font-weight: 400; margin-top: 3px; letter-spacing: .05em; }
.ac-featured { grid-column: 1/3; grid-row: 1/3; height: auto; }

/* ── Plantas ── */
.plantas-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--section-divider); margin-bottom: var(--space-10); flex-wrap: wrap; }
.ptab {
  padding: 14px 24px; cursor: pointer; color: var(--text-muted);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 2px solid transparent; transition: all var(--ease-out);
  background: none; border-top: none; border-left: none; border-right: none;
}
.ptab.active { color: var(--gold); border-color: var(--gold); }
.ptab:hover:not(.active) { color: var(--text-secondary); }
.ppanel { display: none; }
.ppanel.active { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.pinfo-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: var(--space-2); }
.pinfo-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; margin: var(--space-4) 0; font-weight: 300; }
.pinfo-specs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin: var(--space-6) 0; }
.ps { border: 1px solid var(--card-border); padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.ps-val { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold-light); }
.ps-lbl { font-size: .68rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: .08em; margin-top: var(--space-1); }
.pinfo-img { width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--card-border); }
.pinfo-img-wrap { display: flex; flex-direction: column; gap: var(--space-4); }
.pinfo-img-sub { font-size: .72rem; color: var(--text-muted); letter-spacing: .06em; text-align: center; margin-top: -4px; }

/* ── Localização ── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.loc-map { height: 100%; min-height: 340px; overflow: hidden; border: 1px solid var(--gold-muted); border-radius: var(--radius-sm); }
.loc-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(40%) contrast(80%); }
.loc-title { font-size: clamp(1.6rem,2.5vw,2.4rem); margin-bottom: var(--space-4); font-family: var(--font-heading); line-height: 1.2; }
/* ── Localização Centralizada (Layout Fluido) ── */
.loc-wrapper {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.loc-desc {
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: .95rem;
}
.nearby-inline {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin: 0 0 var(--space-6);
  padding: 0;
}
.ni { display: flex; align-items: center; gap: var(--space-2); font-size: .88rem; color: #E8E8E8; }
.nd { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.loc-map-full {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-muted);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: var(--space-4);
}
.loc-link-wrap { margin-bottom: var(--space-6); }
.loc-open { font-size: .88rem; color: var(--gold-light); text-decoration: underline; }

/* ── Box de Isca Digital: Book de Plantas ── */
.plantas-kit-box {
  background: linear-gradient(135deg, rgba(184,149,90,0.12), rgba(16,18,22,0.95));
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-8);
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.pkit-content { flex: 1; min-width: 0; }
.pkit-badge {
  display: inline-block;
  background: var(--gold-muted);
  color: var(--gold-light);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: var(--space-3);
}
.pkit-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: var(--space-2);
}
.pkit-desc {
  font-size: .9rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
}
.pkit-cta { flex-shrink: 0; }
.pkit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
}

/* ── Preço: Nova Tabela por Tipologia (Estilo Translúcido Padronizado) ── */
.sec-title-white {
  color: #FFFFFF !important;
}
.sec-title-white em {
  color: var(--gold-light) !important;
  font-style: italic;
}

.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}
.price-card-item {
  background: linear-gradient(135deg, rgba(22,26,34,0.92), rgba(14,16,22,0.96));
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.price-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 35px rgba(184,149,90,0.18);
}
.price-card-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(184,149,90,0.14), rgba(16,18,24,0.96));
  box-shadow: 0 10px 30px rgba(184,149,90,0.22);
}
.pcard-tag {
  align-self: flex-start;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-muted);
  background: rgba(184,149,90,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.pcard-tag-gold {
  color: #FFFFFF;
  border-color: var(--gold);
  background: var(--gold);
  font-weight: 700;
}
.pcard-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: var(--space-1);
}
.pcard-metragem {
  font-size: .84rem;
  color: #E8E8E8;
  margin-bottom: var(--space-5);
}
.pcard-from {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #B8B8B8;
}
.pcard-val {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin: var(--space-2) 0 var(--space-3);
}
.pcard-obs {
  font-size: .82rem;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
.pcard-btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  box-sizing: border-box;
  text-align: center;
}
.price-sub-note {
  font-size: .85rem;
  color: #D8D8D8;
  text-align: center;
  margin-bottom: var(--space-8);
}

/* ── Quadro de Fluxo de Pagamento Facilitado ── */
.fluxo-pagamento-box {
  background: linear-gradient(135deg, rgba(22,26,34,0.92), rgba(14,16,22,0.96));
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-8);
  margin-top: var(--space-6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fp-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.fp-icon {
  width: 24px;
  height: 24px;
  fill: var(--gold-light);
  flex-shrink: 0;
}
.fp-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin: 0;
}
.fp-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.fp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2) var(--space-3);
}
.fp-step-highlight {
  background: rgba(184,149,90,0.12);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  padding: var(--space-3) var(--space-5);
}
.fp-pct {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.fp-lbl {
  font-size: .75rem;
  letter-spacing: .04em;
  color: #E8E8E8;
  max-width: 140px;
}
.fp-divider {
  color: var(--gold);
  font-size: 1.2rem;
}
.fp-disclaimer {
  font-size: .82rem;
  color: #D0D0D0;
  text-align: center;
  line-height: 1.6;
  margin: var(--space-5) 0 var(--space-6);
}
.fp-cta-wrap {
  display: flex;
  justify-content: center;
}
.fp-cta-btn {
  min-height: 52px;
  padding: 14px 36px;
  font-size: .95rem;
  font-weight: 700;
  box-sizing: border-box;
  text-align: center;
}

/* ── WhatsApp Flutuante com Pulso Ampliado ── */
.wa-float {
  width: auto !important;
  min-height: 52px !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  gap: 10px !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
  animation: waPulseExpanded 1.8s ease-in-out infinite !important;
}
.wa-float::after {
  content: 'Falar no WhatsApp';
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes waPulseExpanded {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0), 0 12px 35px rgba(37, 211, 102, 0.5);
  }
}

/* ── Responsivo Mobile First (<= 768px) ── */
@media (max-width: 768px) {
  .price-cards-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .plantas-kit-box { flex-direction: column; align-items: stretch; text-align: center; padding: var(--space-6) var(--space-4); }
  .pkit-btn { width: 100%; white-space: normal; }
  .fp-steps { flex-direction: column; gap: var(--space-4); }
  .fp-divider { display: none; }
  .fp-cta-btn { width: 100%; text-align: center; white-space: normal; }
  .btn-gold, .btn-out-gold, .btn-wa { min-height: 52px; width: 100%; box-sizing: border-box; text-align: center; justify-content: center; }
  .nearby-inline { flex-direction: column; align-items: flex-start; text-align: left; }
  .loc-map-full { height: 280px; }
  .wa-float { padding: 10px 18px !important; bottom: 18px; right: 18px; }
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--ease-out);
}
.faq-item[open] { border-color: var(--gold-muted); }
.faq-q {
  padding: var(--space-5) var(--space-6);
  font-weight: 500; font-size: .95rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center;
  justify-content: space-between;
  transition: color var(--ease-out);
}
.faq-q::after {
  content: '+'; font-size: 1.2rem;
  color: var(--gold); transition: transform var(--ease-out);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold-light); }
.faq-a {
  padding: 0 var(--space-6) var(--space-5);
  font-size: .88rem; color: var(--text-secondary);
  line-height: 1.7; font-weight: 300;
}

/* ── Corretor ── */
.cor-box {
  background: linear-gradient(135deg,var(--black-3),var(--black-2));
  border: 1px solid var(--card-border);
  padding: 48px; border-radius: var(--radius-md);
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.cor-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--gold-muted); flex-shrink: 0; }
.cor-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #000000 !important; }
.cor-creci { font-size: .72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin: var(--space-1) 0 var(--space-2); }
.cor-desc { font-size: .88rem; line-height: 1.7; color: #2D3748 !important; font-weight: 400; margin-bottom: var(--space-4); }
.cor-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cor-meta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-4); font-size: .8rem; }
.cor-tel { color: var(--gold-text, var(--gold)); text-decoration: none; font-weight: 500; }
.cor-tel:hover { text-decoration: underline; }
.cor-updated { color: var(--text-muted); font-size: .72rem; }

/* ── CTA Final ── */
.cta-sec { text-align: center; position: relative; overflow: hidden; padding: var(--space-24) 0; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%,rgba(184,149,90,.06) 0%,transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-eye { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-4); }
.cta-title { font-family: var(--font-heading); font-size: clamp(2rem,3.5vw,3rem); line-height: 1.15; margin-bottom: var(--space-4); }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-txt { font-weight: 300; font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: var(--space-8); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-creci { font-size: .72rem; color: var(--text-muted); margin-top: 28px; letter-spacing: .08em; }

/* ── Lightbox (galeria) ── */
.lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 200; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-x { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 2.5rem; cursor: pointer; background: none; border: none; line-height: 1; font-weight: 300; z-index: 5; }
.lb-p,.lb-n { position: absolute; top: 50%; transform: translateY(-50%); background: var(--gold-muted); border: 1px solid rgba(184,149,90,.25); color: var(--gold-light); font-size: 1.3rem; padding: 12px 14px; cursor: pointer; transition: background .2s; z-index: 5; }
.lb-p { left: 18px; } .lb-n { right: 18px; }
.lb-p:hover,.lb-n:hover { background: rgba(184,149,90,.25); }
.lb-c { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: .8rem; color: var(--text-muted); letter-spacing: .1em; }

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.pulse { animation: pulse 2s ease-in-out infinite; }

/* ========================================
   Responsivo
   ======================================== */
@media(max-width:1024px){
  .porque-grid{grid-template-columns:1fr 1fr}
  .amen-grid{grid-template-columns:repeat(3,1fr)}
  .ac-featured{grid-column:1/3;grid-row:auto}
}
@media(max-width:768px){
  .kronos-hero-body{padding:0 var(--space-6) var(--space-16)}
  .hero-stats{gap:var(--space-4)}
  .hero-stat-d{display:none}
  .hero-ctas{flex-direction:column}
  .hero-ctas .btn-gold,.hero-ctas .btn-out,.hero-ctas .btn-wa{justify-content:center}
  .sobre-grid{grid-template-columns:1fr;gap:var(--space-8)}
  .sobre-img{height:280px}
  .sobre-features{grid-template-columns:1fr}
  .porque-grid{grid-template-columns:1fr 1fr}
  .amen-grid{grid-template-columns:1fr 1fr}
  .ac-featured{grid-column:1/3}
  .ppanel.active{grid-template-columns:1fr;gap:var(--space-6)}
  .loc-grid{grid-template-columns:1fr;gap:var(--space-8)}
  .price-grid{grid-template-columns:1fr}
  .price-card{padding:var(--space-8) var(--space-6)}
  .cor-box{grid-template-columns:1fr;text-align:center;padding:var(--space-8) var(--space-6)}
  .cor-img{margin:0 auto}
  .ps{text-align:center}
}
@media(max-width:480px){
  .hero-stats{flex-direction:column;gap:var(--space-2)}
  .price-val{font-size:2.8rem}
  .price-details{flex-direction:column;gap:var(--space-2)}
  .amen-grid{grid-template-columns:1fr}
  .ac-featured{grid-column:auto}
  .cta-btns{flex-direction:column}
  .cta-btns .btn-wa,.cta-btns .btn-out,.cta-btns .btn-gold{justify-content:center}
}


/* ── A5: Conceito — fundo foto parallax (desktop bg fixed, mobile img estática) ── */
.section-conceito { position: relative; overflow: hidden; }
.conceito-bg { position: absolute; inset: 0; z-index: 0; }
.conceito-bg picture, .conceito-bg img { display: block; width: 100%; height: 100%; object-fit: cover; }
.conceito-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,12,16,.6), rgba(10,12,16,.86)); }
.section-conceito .container { position: relative; z-index: 2; }
.conceito-grid { grid-template-columns: minmax(0, 680px); }

@media (min-width: 769px) {
  .section-conceito {
    background: linear-gradient(180deg, rgba(10,12,16,.55), rgba(10,12,16,.85)), url('/assets/img/on-resort/resort/piscina_resort_solarium.webp') center / cover no-repeat fixed;
  }
  .conceito-bg { display: none; }
}

/* ── A3: botões com fundo escuro mais destacados ──
   Override página-escopo (kronos.css) — base.css/Home intactos.
   Borda base (.btn-out) era rgba(255,255,255,.06) ~invisível no dark. */
.btn-out,
.btn-out-gold {
  border-width: 2px;
  border-radius: var(--radius-md);
}
.btn-out {
  border-color: rgba(216, 181, 122, .4);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .06em;
}
.btn-out:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184, 149, 90, .25);
  transform: translateY(-2px);
}
.btn-out-gold {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-out-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-out:focus-visible,
.btn-out-gold:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ========================================
   A2 — TEMA CLARO mobile-first
   Override 100% página-escopo (kronos.css carrega só na LP, após theme-dark).
   Home/base.css/components.css/theme-dark INTACTOS.
   Paleta: gelo #FFFFFF/#F4F1EB · ink #20242B/#5B616B · bronze #8A6B3F/#B8955A
   ======================================== */
:root {
  /* Fundos */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F1EB;
  --bg-tertiary: #FFFFFF;
  --bg-section-alt: #EFEBE3;
  /* Texto */
  --text-primary: #20242B;
  --text-secondary: #5B616B;
  --text-muted: #7A808A;
  /* Acento p/ texto legível no claro (bronze escuro) */
  --gold-text: #8A6B3F;
  /* Header */
  --header-scrolled: rgba(255, 255, 255, .96);
  --header-text: #FFFFFF;
  --header-text-scrolled: #20242B;
  --header-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  /* Cards */
  --card-bg: #FFFFFF;
  --card-border: #E5E0D4;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  /* Bordas */
  --border-light: #E5E0D4;
  --border-accent: #B8955A;
  /* Footer */
  --footer-bg: #EFEBE3;
  --footer-text: #5B616B;
  /* Overlay */
  --overlay-bg: rgba(255, 255, 255, .92);
  /* Seções */
  --section-divider: #E5E0D4;
}

/* Hero mantém foto escura + texto claro (brief) */
/* Todos os textos da hero: BRANCO #FFFFFF (cliente 18/08) — botões CTA intactos */
.kronos-hero .hero-badge,
.kronos-hero .hero-title,
.kronos-hero .hero-tagline,
.kronos-hero .hero-sub,
.kronos-hero .hero-answer,
.kronos-hero .hero-stat-val,
.kronos-hero .hero-stat-lbl { color: #FFFFFF !important; }
.kronos-hero .hero-badge { border-color: var(--gold-light); }
.kronos-hero .hero-badge svg { fill: #FFFFFF; }
.kronos-hero .btn-out { color: var(--gold-light); border-color: rgba(216, 181, 122, .4); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO REDESIGN TEST (instruções LLM) — SÓ camada de conteúdo
   Imagem de fundo + .kronos-hero-overlay INTOCADOS (foto continua brilhante).
   Reverter = git revert do commit único desta alteração.
   ═══════════════════════════════════════════════════════════════════════ */
/* Scrim esquerdo — REMOVIDO (gradiente cima→baixo do overlay é o único
   escurecimento; nada lateral pra foto ficar o máximo possível como original) */
.kronos-hero-scrim-left {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: none;
}
/* H1 numa linha só em telas largas; ao estreitar (≤992px) volta ao wrap atual */
@media (min-width: 992px) {
  .kronos-hero .hero-title--func { white-space: nowrap; }
}
/* H1 + tagline alinhados à direita um do outro só no DESKTOP (≥769px): o fim da
   tagline ("a" de "pressa") alinha com o fim do H1 ("a" de "Tijuca"). Wrapper
   encolhe ao H1 (maior); padding-right compensa o "." final. Mobile ≤768px
   intacto (wrapper inerte, sem regra). */
@media (min-width: 769px) {
  .kronos-hero .kronos-hero-tt { width: fit-content; text-align: right; }
  .kronos-hero .kronos-hero-tt .hero-tagline { padding-right: .3em; }
}
/* Badge pílula translúcida com blur */
.kronos-hero .hero-badge {
  border: 1px solid rgba(212, 175, 55, .4) !important;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 11px; letter-spacing: .18em;
  padding: 8px 18px; margin-bottom: 22px;
  color: #FFFFFF !important;
}
/* Headline: serif branco + tagline itálica marfim */
.kronos-hero .hero-title--func {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem); /* ~42-51px desktop */
  line-height: 1.15; margin-bottom: 14px;
  color: #FFFFFF !important;
}
.kronos-hero .hero-tagline {
  font-family: var(--font-heading), Georgia, serif;
  font-style: italic;
  font-size: clamp(1.12rem, 1.8vw, 1.28rem); /* ~18-20px */
  color: #F0E6D2 !important;
  line-height: 1.4; margin-bottom: 30px;
}
/* Card glassmorphism + moldura dourada — desktop: alinhado à DIREITA da página
   (fundo visível à esquerda = piscina com a vista pela janela) */
.kronos-hero .hero-card {
  position: relative;
  max-width: 470px;
  margin-left: auto;                    /* empurra o card p/ a direita */
  padding: 20px 24px 18px;
  background: rgba(18, 18, 18, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #C8A261;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
  animation: fadeUp .8s .6s ease both;
  flex: none;                           /* compacto — não estica na altura da hero */
}
/* Specs: grid 2 colunas × 3 linhas */
.kronos-hero .hero-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px; row-gap: 10px;
  margin-bottom: 14px;
  padding-right: 20px;
  grid-auto-flow: row dense;
  justify-items: start;
}
.kronos-hero .hero-spec { display: flex; flex-direction: column; gap: 3px; }
.kronos-hero .hero-spec-val {
  font-family: var(--font-heading), Georgia, serif;
  font-size: 18px; font-weight: 600; line-height: 1.2;
  color: #FFFFFF !important;
}
.kronos-hero .hero-spec-lbl {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #D6D6D6;
}
.kronos-hero .hero-spec--price { /* sem span — preço é o 6º stat (abaixo do Rooftop), quadro 2 col × 3 linhas */ }
.kronos-hero .hero-spec-val--price { font-size: 24px; font-weight: 700; color: #DFBE82 !important; }
/* Selo circular PREMIUM SELECT (flutua no canto do card) */
.kronos-hero .hero-seal {
  position: absolute;
  right: -22px; bottom: 46px;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px dashed #D4AF37;
  background: rgba(18, 18, 18, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.kronos-hero .hero-seal-crown { width: 20px; height: 20px; fill: #D4AF37; }
.kronos-hero .hero-seal-txt {
  font-family: var(--font-heading), Georgia, serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; text-align: center; line-height: 1.15;
  color: #D4AF37;
}
/* CTAs na base do card */
.kronos-hero .hero-ctas { margin-top: 0; }
.kronos-hero .hero-btn-gold {
  background: linear-gradient(135deg, #DFBE82, #C49C5B);
  color: #1C1C1C;
  border: none; border-radius: 5px;
  padding: 13px 26px;
  font-weight: 700; font-size: .92rem;
}
.kronos-hero .hero-btn-gold:hover {
  background: linear-gradient(135deg, #E8CD98, #C8A261);
  transform: translateY(-2px);
}
.kronos-hero .hero-btn-out {
  border: 1px solid #C8A261;
  background: rgba(0, 0, 0, .4);
  color: #DFBE82 !important;
  border-radius: 5px; padding: 13px 26px;
  font-weight: 600;
}
/* Mobile: specs 2 col × 3 linhas (6 stats, preço incluso), fontes menores,
   card mais p/ baixo — fundo livre no topo/miolo p/ ver a imagem */
@media (max-width: 768px) {
  .kronos-hero {
    min-height: 100dvh !important;
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    justify-content: flex-start !important;
  }
  .kronos-hero-bg img {
    object-position: center 35% !important;
  }
  .kronos-hero-scrim-left {
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.62) 0%, rgba(6, 10, 18, 0.25) 170px, transparent 100%) !important;
  }
  /* Overlay mobile claro e luminoso: dá contraste para o H1 no topo, mas deixa a imagem de fundo vívida e límpida */
  .kronos-hero-overlay {
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.65) 0%, rgba(6, 10, 18, 0.32) 160px, rgba(6, 10, 18, 0.05) 280px, rgba(6, 10, 18, 0.45) 100%) !important;
  }
  .kronos-hero-body {
    flex: 1; display: flex; flex-direction: column;
    padding: 14px 16px 16px; max-width: 100%;
  }
  .kronos-hero .hero-badge {
    font-size: 8.5px !important; letter-spacing: .14em; padding: 6px 14px; margin-bottom: 10px;
    background: rgba(6, 10, 18, 0.8) !important;
    border-color: rgba(224, 194, 138, 0.7) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .kronos-hero .hero-title--func {
    font-size: clamp(1.45rem, 6.6vw, 1.85rem) !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.95), 0 1px 3px rgba(0,0,0,0.9) !important;
    line-height: 1.18 !important;
  }
  .kronos-hero .hero-tagline {
    font-size: 0.95rem !important;
    font-style: normal !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.95) !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
  }
  .kronos-hero .hero-tagline strong,
  .kronos-hero .hero-tagline .gold {
    color: #F4D068 !important;
    font-weight: 700 !important;
  }
  .kronos-hero .hero-card {
    padding: 14px 16px; max-width: 100%;
    margin-top: auto;
    background: rgba(10, 14, 22, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(224, 194, 138, 0.35) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  }
  .kronos-hero .hero-specs {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px; row-gap: 10px;
    padding-right: 0; margin-bottom: 0;
  }
  .kronos-hero .hero-spec-val {
    font-size: 14px !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }
  .kronos-hero .hero-spec-lbl {
    font-size: 8.5px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    letter-spacing: 0.08em !important;
    margin-top: 2px !important;
  }
  .kronos-hero .hero-spec-val--price {
    font-size: 15px !important;
    color: #F4D068 !important;
  }
  .kronos-hero .hero-seal { display: none; }
  .kronos-hero .hero-ctas { flex-direction: column; gap: 8px; }
  .kronos-hero .hero-btn-gold, .kronos-hero .hero-btn-out { justify-content: center; width: 100%; font-size: .78rem; padding: 10px 16px; }
}

/* Conceito: foto mantém, scrim claro + texto escuro (tudo claro) */
.conceito-scrim { background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .88)); }
@media (min-width: 769px) {
  .section-conceito {
    background: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .88)), url('/assets/img/on-resort/resort/piscina_resort_solarium.webp') center / cover no-repeat fixed;
  }
}

/* Fundos escuros hard-coded → claro */
.sf { background: #FFFFFF; }
.sf strong { color: var(--text-primary); }
.ac { background: var(--card-bg); }
.ps { background: #FFFFFF; }
.price-card, .cor-box { background: linear-gradient(135deg, #FFFFFF, var(--bg-secondary)); }

/* Texto bronze legível no claro (fallback = cor original no dark) */
.gold { color: var(--gold-text, var(--gold)); }
.sec-title em, .sec-label span { color: var(--gold-text, var(--accent-primary)); }
.ps-val, .price-val, .loc-title em, .cta-title em, .faq-q:hover, .at:hover { color: var(--gold-text, var(--gold-light)); }
.cor-creci, .cta-eye, .ptab.active { color: var(--gold-text, var(--gold)); }
.sf-icon { color: var(--gold-text, var(--gold-light)); }

/* Botões (A3) no claro */
.btn-out { color: var(--gold-text, var(--gold-light)); border-color: var(--gold-text, rgba(216, 181, 122, .4)); }
.btn-out:hover { border-color: var(--gold-text, var(--gold)); color: var(--gold-text, var(--gold-light)); background: rgba(184, 149, 90, .14); }
.btn-out-gold { color: var(--gold-text, var(--gold-light)); }

/* Header (compartilhado NÃO tocado — override página-escopo):
   topo sobre a foto → claro; scrolled / menu mobile → escuro */
.site-header .header-tag,
.site-header .header-nav a { color: #FFFFFF; }
.site-header .header-tag span { color: var(--gold-light); }
.site-header.scrolled .header-tag { color: #1c1515; }
.site-header.scrolled .header-tag span { color: var(--gold-text, var(--accent-primary)); }
.site-header.scrolled .header-nav a,
.site-header .header-nav.open a { color: var(--header-text-scrolled); }
.site-header .btn-out { color: var(--gold-light); border-color: rgba(216, 181, 122, .4); }
.site-header.scrolled .btn-out { color: var(--gold-text, var(--gold-light)); border-color: var(--gold-text, rgba(216, 181, 122, .4)); }

/* ========================================
   AJUSTES PÓS-PREVIEW (cliente 14/08) — rodada única, 100% page-scoped
   Home/base.css/components.css/theme-dark INTACTOS.
   ======================================== */

/* 1. Conceito: foto aparente — scrim escuro leve + texto claro (igual linguagem do hero) */
.conceito-scrim { background: linear-gradient(180deg, rgba(10,12,16,.35), rgba(10,12,16,.62)); }
@media (min-width: 769px) {
  .section-conceito {
    background: linear-gradient(180deg, rgba(10,12,16,.28), rgba(10,12,16,.58)), url('/assets/img/on-resort/resort/piscina_resort_solarium.webp') center / cover no-repeat fixed;
  }
}
.section-conceito .sec-title { color: #FFFFFF; }
.section-conceito .sec-title em,
.section-conceito .sec-label span { color: var(--gold-light); }
.section-conceito .sec-desc { color: rgba(255,255,255,.88); }
.section-conceito .gold { color: var(--gold-light); }
.section-conceito .sf { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.88); }
.section-conceito .sf strong { color: #FFFFFF; }
.section-conceito .sf-icon { color: var(--gold-light); }

/* 2. Por que escolher: 8 cards em 4 col desktop (carrossel de chips removido) */
.porque-grid { grid-template-columns: repeat(4,1fr); }
@media (max-width: 1024px) {
  .porque-grid { grid-template-columns: 1fr 1fr; }
}

/* 3. Tipologias: fundo cinza escuro quase preto + conteúdo claro */
#plantas { background: #16171b; }
#plantas .sec-title { color: #FFFFFF; }
#plantas .sec-title em,
#plantas .sec-label span { color: var(--gold-light); }
#plantas .plantas-tabs { border-bottom-color: rgba(255,255,255,.14); }
#plantas .ptab { color: rgba(255,255,255,.55); }
#plantas .ptab.active { color: var(--gold-light); border-color: var(--gold-light); }
#plantas .ptab:hover:not(.active) { color: rgba(255,255,255,.85); }
#plantas .pinfo-img-sub { color: rgba(255,255,255,.55); }

/* ── Localização Nobre: Fundo escuro integrado (#16171b) ── */
#localizacao {
  background: #16171b !important;
  color: #FFFFFF !important;
}
#localizacao .sec-title,
#localizacao h2 {
  color: #FFFFFF !important;
}
#localizacao .sec-title em {
  color: var(--gold-light) !important;
}
#localizacao .loc-desc {
  color: #E8E8E8 !important;
}
#localizacao .ni {
  color: #FFFFFF !important;
}

/* ── Tabela de Preços e Condições (#preco): Foto Oficial do Deck Molhado On Resort + Overlay Dark ── */
#preco {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.90) 0%, rgba(8, 12, 18, 0.95) 100%), url('/assets/img/on-resort/resort/deck_molhado_palmeiras.webp') center / cover no-repeat !important;
}
@media (min-width: 769px) {
  #preco {
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.90) 0%, rgba(8, 12, 18, 0.95) 100%), url('/assets/img/on-resort/resort/deck_molhado_palmeiras.webp') center / cover no-repeat fixed !important;
  }
}
#preco .sec-title,
#preco .sec-title-white,
#preco h2 {
  color: #FFFFFF !important;
}
#preco .sec-title em,
#preco .sec-title-white em {
  color: var(--gold-light) !important;
}
#preco .sec-label span {
  color: var(--gold-light) !important;
}

/* Todos os Cards de Preço e Fluxo padronizados no estilo translúcido escuro de 3 Suítes */
.price-card-item,
.price-card-featured,
.fluxo-pagamento-box {
  background: linear-gradient(135deg, rgba(20, 24, 32, 0.94), rgba(12, 14, 18, 0.97)) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 149, 90, 0.12) !important;
}
.price-card-item .pcard-title,
.price-card-featured .pcard-title,
.fluxo-pagamento-box .fp-header h4 {
  color: #FFFFFF !important;
}
.price-card-item .pcard-metragem,
.price-card-featured .pcard-metragem,
.fluxo-pagamento-box .fp-lbl {
  color: #E8E8E8 !important;
}
.price-card-item .pcard-from,
.price-card-featured .pcard-from {
  color: #C0C0C0 !important;
}
.price-card-item .pcard-val,
.price-card-featured .pcard-val,
.fluxo-pagamento-box .fp-pct {
  color: var(--gold-light) !important;
}
.price-card-item .pcard-obs,
.price-card-featured .pcard-obs {
  color: #FFFFFF !important;
}
.price-sub-note,
.fp-disclaimer {
  color: #D8D8D8 !important;
}

/* ── WhatsApp Flutuante com Frase e Pulso Ampliado (Alta Especificidade) ── */
html body .wa-float {
  width: auto !important;
  height: auto !important;
  min-height: 54px !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #25D366 !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.25) !important;
  animation: waPulseKronosDefinitive 1.8s ease-in-out infinite !important;
  z-index: 9999 !important;
  bottom: 24px !important;
  right: 24px !important;
}
html body .wa-float svg {
  width: 28px !important;
  height: 28px !important;
  fill: #FFFFFF !important;
  flex-shrink: 0 !important;
}
html body .wa-float::after {
  content: 'Falar com Alexandre no WhatsApp' !important;
  color: #FFFFFF !important;
  font-family: var(--font-body, 'Inter', sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}
@media (max-width: 600px) {
  html body .wa-float {
    padding: 10px 18px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  html body .wa-float::after {
    content: 'Falar com Corretor' !important;
    font-size: 0.88rem !important;
  }
}
@keyframes waPulseKronosDefinitive {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 30px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 24px rgba(37, 211, 102, 0), 0 14px 40px rgba(37, 211, 102, 0.6);
  }
}

/* ── Corretor: fundo preto ── */
#corretor { background: #000000; }

/* 7. FAQ: perguntas com transição suave branco→cinza claro + letra preta */
.faq-q { background: linear-gradient(180deg, #FFFFFF, #EDEDED); color: #000000; }
.faq-q::after { color: var(--gold-text, var(--gold)); }
.faq-q:hover { color: var(--gold-text, var(--gold-light)); }

/* 8. CTA Final (Formulário Mestre): foto oficial fachada On Resort + overlay dark */
.cta-sec {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 15, 0.88) 0%, rgba(6, 9, 15, 0.96) 100%), url('/assets/img/on-resort/hero/hero_fachada_dia.webp') center / cover no-repeat;
}
@media (min-width: 769px) {
  .cta-sec {
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.88) 0%, rgba(6, 9, 15, 0.96) 100%), url('/assets/img/on-resort/hero/hero_fachada_dia.webp') center / cover no-repeat fixed;
  }
}
.cta-eye { color: var(--gold-light); }
.cta-title { color: #FFFFFF; }
.cta-title em { color: var(--gold-light); }
.cta-txt { color: rgba(255,255,255,.85); }
.cta-creci { color: rgba(255,255,255,.6); }

/* 9. Footer: escuro quase preto + ONDA CARIOCA grossa e clara */
.site-footer { background: #0d0d10; }
.site-footer .footer-logo { color: #FFFFFF; font-weight: 800; }
.site-footer .footer-logo span { color: var(--gold-light); }
.site-footer .footer-creci,
.site-footer .footer-copy,
.site-footer .footer-nap,
.site-footer .footer-nap a { color: rgba(255,255,255,.65); }
.site-footer .footer-links a { color: rgba(255,255,255,.75); }
.site-footer .footer-links a:hover,
.site-footer .footer-nap a:hover { color: var(--gold-light); }

/* ── Rodada 3 (cliente 14/08): mobile CTAs + footer mais baixo ── */
@media (max-width: 768px) {
  /* CTAs da última seção: centralizados (não full-width) + "Receber apresentação" preenchido */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-wa,
  .cta-btns .btn-out,
  .cta-btns .btn-gold { width: auto; min-width: 260px; max-width: 100%; justify-content: center; }
  .cta-btns .btn-out { background: #000000; color: #FFFFFF; border-color: #000000; }
}
/* Footer desktop: altura menor + copy centralizada abaixo dos links */
.site-footer { padding: var(--space-5) 0; }
.site-footer .footer-copy { width: 100%; text-align: center; margin-top: var(--space-5); }

/* ════════════════════════════════════════════════════════════
   MODAIS — alinhados ao design system da LP Kronos
   (fontes Playfair/Inter + paleta bronze + card foto-fundo)
   kronos.css só carrega na LP → Home intocada.
   Carrega ANTES dos css do modal → overrides por especificidade.
   ════════════════════════════════════════════════════════════ */

/* ── Fontes: Cinzel/Josefin (Home) → Playfair/Inter (LP) ── */
.fm-box { font-family: var(--font-body, 'Inter', sans-serif); }
.fm-hdr-name,
.fm-cs-label,
.fm-cs-title,
.fm-slider-value,
.fm-gate h2,
.fm-result h2,
.fm-wa-summary h2,
.fm-tour-step,
.fm-tour-q h2 { font-family: var(--font-heading, 'Playfair Display', serif); }
.fm-btn-gold,
.fm-btn-wa,
.fm-btn-out,
.fm-gate-fields input { font-family: var(--font-body, 'Inter', sans-serif); }

/* ── Box: superfície da LP (tom quente bronze, não preto chapado) ──
   Substitui o fundo flat #1a1a1e→#0d0d0f da Home por material da LP:
   radial bronze no topo (mesma linguagem dos glows da LP) + base #0b0d11. */
.fm-box {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(184, 149, 90, 0.10), transparent 62%),
    linear-gradient(150deg, #171920, #0b0d11 70%);
  border-color: rgba(184, 149, 90, 0.35);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(184, 149, 90, 0.18);
}
.fm-box .fm-hdr-av { box-shadow: 0 0 20px rgba(184, 149, 90, 0.18); }

/* ── Card das perguntas: foto preenche o fundo + opções na metade direita ── */
.fm-cs-card.top {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d10;
}
.fm-cs-card.top .fm-cs-img { position: absolute; inset: 0; height: auto; z-index: 0; }
.fm-cs-card.top .fm-cs-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fm-cs-card.top .fm-cs-img::after { background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.05) 55%, rgba(0,0,0,.12) 100%); }
.fm-cs-card.top .fm-cs-badge { z-index: 2; }
.fm-cs-card.top .fm-cs-body { display: none; }
.fm-cs-card.top .fm-cs-opts {
  position: relative;
  z-index: 2;
  width: 52%;
  margin-left: auto;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 14px 14px 18px;
}
.fm-cs-card.top .fm-cs-opt {
  flex: none;
  width: 100%;
  min-height: 62px;
  padding: 12px 14px;
  background: rgba(10, 12, 16, 0.375);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}
.fm-cs-card.top .fm-cs-opt:hover { border-color: rgba(184, 149, 90, 0.45); background: rgba(184, 149, 90, 0.14); }
.fm-cs-card.top .fm-cs-opt.sel { border-color: var(--gold, #B8955A); background: rgba(184, 149, 90, 0.22); box-shadow: 0 0 22px rgba(184, 149, 90, 0.18); }
.fm-cs-card.top .fm-cs-opt-icon { width: 34px; height: 34px; border-radius: 10px; background: #FFFFFF !important; color: #8A6B3F !important; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); }
.fm-cs-card.top .fm-cs-opt-label { font-size: 0.9rem; font-weight: 600; color: #FFFFFF; }
.fm-cs-card.top .fm-cs-opt-desc { font-size: 0.78rem; line-height: 1.35; color: rgba(255, 255, 255, 0.82); margin-top: 3px; }

/* ── Balão: pergunta em destaque ── */
.fm-bubble { background: rgba(255, 255, 255, 0.05); border-color: rgba(184, 149, 90, 0.18); }
.fm-bubble-text strong { color: var(--gold-light, #D8B57A); font-weight: 800; }

/* ── Exit intent (LM2) — fontes + bronze (LP-only) ── */
.lm2-overlay .lm2-box { border-color: rgba(184, 149, 90, 0.35); }
.lm2-overlay .lm2-chat-hdr { background: linear-gradient(135deg, rgba(184, 149, 90, 0.14), rgba(184, 149, 90, 0.04)); border-bottom-color: rgba(184, 149, 90, 0.12); }
.lm2-overlay .lm2-chat-hdr-name { font-family: var(--font-heading, 'Playfair Display', serif); }
.lm2-overlay .lm2-btn-qr,
.lm2-overlay .lm2-chat-input,
.lm2-overlay .lm2-btn-wa,
.lm2-overlay .lm2-btn-save { font-family: var(--font-body, 'Inter', sans-serif); }
.lm2-overlay .lm2-msg-u { background: rgba(184, 149, 90, 0.12); border-color: rgba(184, 149, 90, 0.1); }
.lm2-overlay .lm2-msg-u .lm2-msg-time { color: rgba(184, 149, 90, 0.3); }

/* ── Exit intent (LM2): X visível + área de toque ≥44px (B5) ──
   Base compartilhada (modal-lead-v2.css) = 32px + branco 40% → some no
   gradiente bronze do header. Override LP-only, especificidade vence. */
.lm2-overlay .lm2-close {
  width: 44px;
  height: 44px;
  background: rgba(184, 149, 90, 0.18);
  border-color: rgba(184, 149, 90, 0.45);
  color: #D8B57A;
}
.lm2-overlay .lm2-close:hover { background: rgba(184, 149, 90, 0.28); color: #FFFFFF; }

/* ── Mobile: foto continua fundo (scrim vertical) + chips largura cheia ── */
@media (max-width: 600px) {
  .fm-cs-card.top { min-height: 0; }
  .fm-cs-card.top .fm-cs-img::after { background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.05) 55%, rgba(0,0,0,.12) 100%); }
  .fm-cs-card.top .fm-cs-opts { width: 58%; margin-left: auto; padding: 12px 12px 14px; gap: 7px; }
  .fm-cs-card.top .fm-cs-opt { min-height: 56px; padding: 11px 12px; border-radius: 12px; }
  .fm-cs-card.top .fm-cs-opt-icon { width: 30px; height: 30px; }
  .fm-cs-card.top .fm-cs-opt-label { font-size: 0.86rem; }
  .fm-cs-card.top .fm-cs-opt-desc { font-size: 0.74rem; }
}

/* ════════════════════════════════════════════════════════════
   MODAIS CLAROS — congruência com a LP (A2 tema claro)
   LP é claro: gelo #FFFFFF/#F4F1EB · ink #20242B · bronze #8A6B3F
   Modal (da Home, dark) → override claro. LP-only (kronos.css).
   kronos.css carrega ANTES de format-modal.css / modal-lead-v2.css →
   prefixo .fm-overlay / .lm2-overlay p/ vencer por especificidade.
   ════════════════════════════════════════════════════════════ */

/* Box: superfície gelo da LP (não mais preto chapado) */
.fm-overlay .fm-box {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(184, 149, 90, 0.08), transparent 62%),
    linear-gradient(150deg, #FFFFFF, #F4F1EB 70%);
  border-color: rgba(184, 149, 90, 0.35);
  box-shadow: 0 32px 90px rgba(32, 36, 43, 0.18), 0 0 0 1px rgba(184, 149, 90, 0.16);
}
.fm-overlay .fm-hdr-av { box-shadow: 0 0 20px rgba(184, 149, 90, 0.25); }
/* Avatar do corretor no modal: rosto centralizado (como no card da seção corretor).
   !important p/ vencer o inline object-position:center 35% do JS compartilhado;
   override page-scoped => modal da Home continua como estava. */
.fm-overlay .fm-hdr-av img { object-position: top center !important; }
.fm-overlay .fm-hdr-name { color: #20242B; }
.fm-overlay .fm-hdr-status { color: #8A6B3F; }
.fm-overlay .fm-close { background: rgba(32, 36, 43, 0.05); border-color: rgba(32, 36, 43, 0.12); color: rgba(32, 36, 43, 0.45); }
.fm-overlay .fm-close:hover { background: rgba(32, 36, 43, 0.1); color: #20242B; }

/* Balão da pergunta: claro + compacto (mais espaço pra foto/opções) */
.fm-overlay .fm-bubble { background: #FFFFFF; border-color: rgba(184, 149, 90, 0.35); box-shadow: 0 2px 12px rgba(32, 36, 43, 0.06); margin: 8px 24px 0; padding: 10px 16px; }
.fm-overlay .fm-bubble-text { color: #20242B; }
.fm-overlay .fm-bubble-text strong { color: #8A6B3F; }

/* Gate / Resultado: texto ink + campos claros */
.fm-overlay .fm-gate, .fm-overlay .fm-result, .fm-overlay .fm-wa-summary { color: #20242B; }
.fm-overlay .fm-gate h2, .fm-overlay .fm-result h2, .fm-overlay .fm-wa-summary h2 { color: #20242B; }
.fm-overlay .fm-gate p, .fm-overlay .fm-result .fm-sub, .fm-overlay .fm-wa-summary .fm-sub { color: #5B616B; }
.fm-overlay .fm-gate-fields input {
  background: #FFFFFF;
  border: 1px solid rgba(32, 36, 43, 0.14);
  color: #20242B;
}
.fm-overlay .fm-gate-fields input:focus { border-color: #B8955A; box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.14); }
.fm-overlay .fm-gate-fields input::placeholder { color: rgba(32, 36, 43, 0.55); }

/* Botão "Apenas Deixar o Contato" (resultado) — tinta escura no tema claro */
.fm-overlay .fm-btn-out {
  color: #20242B;
  border-color: rgba(32, 36, 43, 0.22);
}
.fm-overlay .fm-btn-out:hover {
  background: rgba(32, 36, 43, 0.05);
  color: #20242B;
  border-color: rgba(32, 36, 43, 0.35);
}

/* Cards foto-fundo: foto continua real (escura) + chips vidro escuro legíveis — mantém */

/* ── Exit intent (LM2): claro ── */
.lm2-overlay .lm2-box {
  background: linear-gradient(150deg, #FFFFFF, #F4F1EB);
  border-color: rgba(184, 149, 90, 0.35);
  box-shadow: 0 32px 90px rgba(32, 36, 43, 0.2), 0 0 0 1px rgba(184, 149, 90, 0.16);
}
.lm2-overlay .lm2-chat-hdr { background: linear-gradient(135deg, rgba(184, 149, 90, 0.12), rgba(184, 149, 90, 0.03)); border-bottom-color: rgba(184, 149, 90, 0.14); }
/* Avatar do corretor no exit intent (modal LM2): rosto centralizado no círculo —
   amplia a foto 45% (height:145%) p/ focar no rosto; override page-scoped =>
   exit da Home mantém height:100%. */
.lm2-overlay .lm2-chat-av { width: 100%; height: 145%; object-fit: cover; }
.lm2-overlay .lm2-chat-hdr-name { color: #20242B; }
.lm2-overlay .lm2-chat-hdr-status { color: #8A6B3F; }
.lm2-overlay .lm2-chat-msgs::-webkit-scrollbar-thumb { background: rgba(32, 36, 43, 0.12); }
.lm2-overlay .lm2-msg-a { background: #FFFFFF; border-color: rgba(32, 36, 43, 0.08); color: #20242B; }
.lm2-overlay .lm2-msg-a .lm2-msg-time { color: rgba(32, 36, 43, 0.35); }
.lm2-overlay .lm2-msg-u { background: #B8955A; border-color: rgba(184, 149, 90, 0.45); color: #000000; }
.lm2-overlay .lm2-msg-u .lm2-msg-text { color: #000000; }
.lm2-overlay .lm2-msg-u .lm2-msg-time { color: #ffffff; }
.lm2-overlay .lm2-typing { background: #FFFFFF; border-color: rgba(32, 36, 43, 0.08); }
.lm2-overlay .lm2-typing span { background: rgba(32, 36, 43, 0.25); }
.lm2-overlay .lm2-btn-qr { background: rgba(184, 149, 90, 0.1); border-color: rgba(184, 149, 90, 0.3); color: #8A6B3F; }
.lm2-overlay .lm2-btn-qr:hover { background: rgba(184, 149, 90, 0.18); border-color: rgba(184, 149, 90, 0.45); }
.lm2-overlay .lm2-btn-wa { background: linear-gradient(135deg, var(--gold, #B8955A), var(--gold-light, #D8B57A)); color: #141414; }
.lm2-overlay .lm2-btn-save { background: #ffffff; color: rgba(32, 36, 43, 0.7); border-color: rgba(32, 36, 43, 0.25); }
.lm2-overlay .lm2-btn-save:hover { color: #20242B; border-color: rgba(32, 36, 43, 0.35); }
.lm2-overlay .lm2-chat-foot { background: rgba(255, 255, 255, 0.7); border-top: 1px solid rgba(32, 36, 43, 0.08); }
.lm2-overlay .lm2-chat-input { background: #FFFFFF; border-color: rgba(32, 36, 43, 0.14); color: #20242B; }
.lm2-overlay .lm2-chat-input::placeholder { color: rgba(32, 36, 43, 0.35); }
.lm2-overlay .lm2-chat-input:focus { border-color: #B8955A; }

/* ── Header: "Fale conosco" preenchido (estilo btn-gold) + menu mobile bronze ── */
.site-header .btn-out.header-cta {
  background: linear-gradient(135deg, var(--gold, #B8955A), var(--gold-light, #D8B57A));
  color: #141414;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.site-header .btn-out.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(184, 149, 90, 0.45); }
.site-header.scrolled .btn-out.header-cta { background: linear-gradient(135deg, var(--gold, #B8955A), var(--gold-light, #D8B57A)); color: #141414; border-color: transparent; }
.site-header .header-nav.open { background: linear-gradient(135deg, var(--gold, #B8955A), var(--gold-light, #D8B57A)); border-bottom-color: rgba(138, 107, 63, 0.4); }
.site-header .header-nav.open a { color: #141414; }
.site-header .header-nav.open a:hover { color: #4A3A1D; }

/* ── Por que escolher: 6 cards → 2 linhas de 3 no desktop (mobile segue 2 por linha) ── */
@media (min-width: 769px) {
  .porque-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .porque-grid .ac { min-height: 280px; }
}

/* ── Mapa: fallback "Abrir no Google Maps" ── */
.loc-open { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--gold-text, var(--gold)); text-decoration: underline; }
.loc-open:hover { color: var(--gold-dark, #9A7440); }

/* ==========================================================================
   BLOCO DEFINITIVO DE RESPONSIVIDADE MOBILE-FIRST & DESTAQUES KRONOS
   ========================================================================== */

/* ── 1. WhatsApp Float Definitivo (Pill Bar com Frase Completa & Radar Pulse) ── */
html body .wa-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: auto !important;
  height: auto !important;
  min-height: 54px !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #25D366 !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.25) !important;
  animation: waPulseKronosDefinitive 1.8s ease-in-out infinite !important;
  z-index: 99999 !important;
  text-decoration: none !important;
}
html body .wa-float svg {
  width: 28px !important;
  height: 28px !important;
  fill: #FFFFFF !important;
  flex-shrink: 0 !important;
}
html body .wa-float::after {
  content: 'Falar com Alexandre no WhatsApp' !important;
  color: #FFFFFF !important;
  font-family: var(--font-body, 'Inter', sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  display: inline-block !important;
}

/* ── 2. Box de Plantas Mobile-First & Descolamento do CTA ── */
html body .plantas-kit-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: center !important;
  background: linear-gradient(135deg, rgba(184, 149, 90, 0.16), rgba(16, 18, 24, 0.98)) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  padding: 32px 20px !important;
  margin-top: 40px !important;
  margin-bottom: 48px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
html body .pkit-content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 20px !important;
}
html body .pkit-title {
  color: #FFFFFF !important;
  font-size: 1.35rem !important;
  margin-bottom: 10px !important;
}
html body .pkit-desc {
  color: #E8E8E8 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
html body .pkit-cta {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}
html body .pkit-btn {
  width: 100% !important;
  max-width: 540px !important;
  min-height: 54px !important;
  padding: 14px 20px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  white-space: normal !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#plantas .sec-cta {
  display: flex !important;
  justify-content: center !important;
  margin-top: 40px !important;
  margin-bottom: 24px !important;
  clear: both !important;
  width: 100% !important;
}

/* ── 3. Tabela de Preços e Condições (#preco) Foto Oficial do Deck On Resort + Overlay Dark ── */
#preco {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.90) 0%, rgba(8, 12, 18, 0.95) 100%), url('/assets/img/on-resort/resort/deck_molhado_palmeiras.webp') center / cover no-repeat !important;
}
@media (min-width: 769px) {
  #preco {
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.90) 0%, rgba(8, 12, 18, 0.95) 100%), url('/assets/img/on-resort/resort/deck_molhado_palmeiras.webp') center / cover no-repeat fixed !important;
  }
}
#preco .sec-title,
#preco .sec-title-white,
#preco h2 {
  color: #FFFFFF !important;
}
#preco .sec-title em,
#preco .sec-title-white em {
  color: var(--gold-light) !important;
}
#preco .price-card-item,
#preco .price-card-featured,
#preco .fluxo-pagamento-box {
  background: linear-gradient(135deg, rgba(184, 149, 90, 0.08), rgba(15, 17, 21, 0.65)) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 8px 24px rgba(184, 149, 90, 0.15) !important;
}
#preco .pcard-title,
#preco .fp-header h4 {
  color: #FFFFFF !important;
}
#preco .pcard-metragem,
#preco .fp-lbl {
  color: #FFFFFF !important;
}
#preco .pcard-val,
#preco .fp-pct {
  color: var(--gold-light) !important;
}
#preco .pcard-obs,
#preco .pcard-from {
  color: #FFFFFF !important;
}
#preco .fp-disclaimer,
#preco .price-sub-note {
  color: #FFFFFF !important;
}

/* ── 4. Mobile Overrides (< 768px) ── */
@media (max-width: 768px) {
  html body .wa-float {
    padding: 10px 18px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  html body .wa-float::after {
    content: 'Falar com Corretor' !important;
    font-size: 0.88rem !important;
  }
  html body .price-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  html body .fp-steps {
    flex-direction: column !important;
    gap: 16px !important;
  }
  html body .fp-divider {
    display: none !important;
  }
  html body .pcard-btn,
  html body .fp-cta-btn,
  html body .price-cta,
  html body .btn-gold,
  html body .btn-wa,
  html body .btn-out-gold {
    width: 100% !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: normal !important;
  }
}

/* ── 5. FAQ: Descolamento do CTA da última pergunta ── */
#faq .faq-list {
  margin-bottom: 48px !important;
}
#faq .sec-cta {
  display: flex !important;
  justify-content: center !important;
  margin-top: 40px !important;
  margin-bottom: 24px !important;
  clear: both !important;
  width: 100% !important;
}

/* ── 6. CRO: Hero Inline Capture Form ── */
.hero-inline-capture {
  margin-top: 20px;
  padding: 18px 20px 16px;
  background: rgba(15, 17, 21, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: var(--radius-md, 8px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hic-header {
  margin-bottom: 12px;
  text-align: left;
}
.hic-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #DFBE82);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: 600;
}
.hic-title {
  font-family: var(--font-heading), Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 4px;
}
.hic-subtitle {
  font-size: 0.78rem;
  color: #C0C5CE;
  line-height: 1.35;
  margin: 0;
}
.hic-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hic-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hic-field input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 0.9rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hic-field input:focus {
  border-color: var(--gold, #C8A261);
  background: rgba(255, 255, 255, 0.12);
}
.hic-field input::placeholder {
  color: #8C93A0;
}
.hic-btn {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(200, 162, 97, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hic-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 162, 97, 0.5);
}
.hic-privacy {
  font-size: 0.68rem;
  color: #98A0AC;
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.3;
}

/* ── 7. CRO: Badge de Escassez Real ── */
.price-scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #F0E6D2;
}
.price-scarcity-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold, #C8A261);
  flex-shrink: 0;
}

/* ── 8. CRO: Notice de Plantas Cotadas ── */
.plantas-gated-notice {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(184, 149, 90, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 6px;
  text-align: center;
}
.plantas-gated-notice p {
  margin: 0;
  font-size: 0.82rem;
  color: #DFBE82;
  line-height: 1.4;
}

/* ── 9. CRO: Sticky Bottom Bar Mobile ── */
.kronos-mobile-sticky-bar {
  display: none;
}
@media (max-width: 768px) {
  .kronos-mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    padding: 10px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  /* Ocultação da sticky bar única e exclusivamente quando o modal de exit-intent estiver aberto */
  body.has-modal-open .kronos-mobile-sticky-bar,
  .lm2-overlay.active ~ .kronos-mobile-sticky-bar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .kmsb-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
  }
  .kmsb-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .kmsb-badge {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light, #DFBE82);
    font-weight: 700;
  }
  .kmsb-desc {
    font-size: 12px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
  }
  .kmsb-btn {
    flex: 1;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    font-size: clamp(0.82rem, 3.8vw, 0.95rem) !important;
    font-weight: 700 !important;
    background: #25D366 !important;
    color: #FFFFFF !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
    min-height: 46px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  @media (max-width: 540px) {
    .kmsb-text {
      display: none !important;
    }
  }
  /* Ocultação total do botão flutuante no mobile para eliminar duplicação com a sticky bar */
  html body .wa-float {
    display: none !important;
  }
}

/* ── Desktop: .wa-float oculto na Hero p/ desobstruir o formulário aberto ── */
@media (min-width: 769px) {
  html body .wa-float {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(0.95) !important;
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease !important;
  }
  html body .wa-float.wa-float--visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
}

/* ── 10. CRO: Botão Padronizado WhatsApp ── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.btn-wa:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── 11. CRO: Hero Badge & Botão Ver Fotos ── */
.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge-wrap .hero-badge {
  margin-bottom: 0;
}
.hero-photo-peek-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-photo-peek-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--gold-light, #DFBE82);
  transform: translateY(-1px);
}

/* ── 12. CRO: Hero Inline Capture & Formulários de Seção ── */
.hero-inline-capture {
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(18, 20, 26, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.hic-header {
  margin-bottom: 12px;
}
.hic-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light, #DFBE82);
  font-weight: 700;
  margin-bottom: 6px;
}
.hic-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.hic-subtitle {
  font-size: 0.85rem;
  color: #A0A5B0;
  margin: 0;
  line-height: 1.4;
}
.hic-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .hic-fields {
    grid-template-columns: 1fr;
  }
}
.hic-field input,
.ksf-field input,
.ksf-field select {
  width: 100%;
  padding: 13px 16px;
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  border-radius: 6px;
  color: #000000 !important;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hic-field input:focus,
.ksf-field input:focus,
.ksf-field select:focus {
  outline: none;
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: var(--gold, #C8A261) !important;
  box-shadow: 0 0 0 3px rgba(200, 162, 97, 0.3) !important;
}
.hic-field input::placeholder,
.ksf-field input::placeholder {
  color: #666666 !important;
}
.optin-legal-text {
  font-size: 0.72rem;
  color: #8C92A0;
  line-height: 1.45;
  margin-bottom: 14px;
}
.optin-legal-text a {
  color: #DFBE82;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.optin-legal-text a:hover {
  color: #FFFFFF;
}
.hic-btn {
  width: 100%;
  font-size: 1rem;
}

/* ── 13. CRO: Box de Formulário Aberto nas Seções (Plantas, Preço, CTA Final) ── */
.kronos-section-form-box {
  margin-top: 36px;
  padding: 28px 24px;
  background: rgba(18, 20, 26, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.ksf-header {
  margin-bottom: 18px;
}
.ksf-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #DFBE82);
  font-weight: 700;
  margin-bottom: 6px;
  background: rgba(212, 175, 55, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}
.ksf-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  line-height: 1.25;
}
.ksf-subtitle {
  font-size: 0.88rem;
  color: #B0B6C2;
  margin: 0;
  line-height: 1.45;
}
.ksf-form {
  margin-top: 18px;
}
.ksf-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.ksf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .ksf-grid-3,
  .ksf-grid-2 {
    grid-template-columns: 1fr;
  }
}
.ksf-btn {
  width: 100%;
}

/* ── 14. CRO: Respiro Visual Hero Mobile (<= 768px) & Enquadramento Piscina ── */
.hero-mobile-cta {
  display: none !important;
}
@media (min-width: 769px) {
  .hero-desktop-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .kronos-hero {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding-top: calc(var(--header-height, 58px) + 4px) !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    box-sizing: border-box;
    overflow: visible !important;
  }
  .kronos-hero-bg img {
    object-position: center 65% !important;
  }
  .kronos-hero-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 14px 0 !important;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 0;
  }
  .hero-badge-wrap {
    margin-bottom: 3px !important;
    gap: 6px;
  }
  .hero-badge-wrap .hero-badge {
    font-size: 7.5px !important;
    letter-spacing: 0.1em !important;
    padding: 3px 8px !important;
    margin-bottom: 0 !important;
  }
  .kronos-hero .hero-title--func {
    font-size: clamp(1.22rem, 5.2vw, 1.48rem) !important;
    margin-bottom: 2px !important;
    line-height: 1.15 !important;
  }
  .kronos-hero .hero-tagline {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
    color: #F0E6D2 !important;
  }
  .hero-card {
    margin-top: auto !important;
    background: rgba(14, 16, 22, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 10px !important;
    padding: 6px 10px 5px !important;
    margin-bottom: calc(115px + env(safe-area-inset-bottom, 20px)) !important;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .kronos-hero .hero-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 8px !important;
    row-gap: 3px !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }
  .kronos-hero .hero-spec {
    gap: 1px !important;
  }
  .kronos-hero .hero-spec-val {
    font-size: 12px !important;
    line-height: 1.12 !important;
  }
  .kronos-hero .hero-spec-lbl {
    font-size: 7.5px !important;
    letter-spacing: 0.06em !important;
  }
  .kronos-hero .hero-spec-val--price {
    font-size: 14.5px !important;
  }
  .hero-desktop-only {
    display: none !important;
  }
  .hero-mobile-cta {
    display: none !important;
  }
  /* Desobstrução do Rodapé Mobile */
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .site-footer {
    padding-bottom: calc(25px + env(safe-area-inset-bottom, 0px)) !important;
  }
  /* Ajuste no widget flutuante de Cookies para não sobrepor a barra fixa */
  .cf-banner__cookie-icon,
  [class*="cf-banner"],
  #cf-badge,
  #cf-banner-trigger,
  .cf-floating-btn,
  [class*="cookiefacil"],
  [id*="cookiefacil"] {
    bottom: 85px !important;
  }
}

/* ── 15. CRO: Teaser Gated de Plantas (Moeda de Troca Book em PDF) ── */
.planta-gated-card {
  padding: 32px 24px;
  background: rgba(22, 26, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 12px;
}
.pgc-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pgc-lock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light, #DFBE82);
  margin-bottom: 4px;
}
.pgc-badge {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #DFBE82);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}
.pgc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 4px 0 0 0;
  line-height: 1.3;
}
.pgc-desc {
  font-size: 0.88rem;
  color: #A6ABB8;
  line-height: 1.5;
  margin: 0;
}
.pgc-link {
  display: inline-block;
  color: var(--gold-light, #DFBE82);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
  transition: color 0.2s ease;
}
.pgc-link:hover {
  color: #FFFFFF;
}

/* ── 16. CRO: Destaque de Entrada Facilitada 8% (Mistério nas Parcelas) ── */
.fp-highlight-banner {
  padding: 24px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
}
.fp-highlight-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light, #DFBE82);
  font-weight: 700;
  margin-bottom: 6px;
}
.fp-highlight-val {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 8px;
}
.fp-highlight-desc {
  font-size: 0.88rem;
  color: #C2C7D4;
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto;
}

/* ── 17. CRO: Ajuste Tipográfico do CTA Final ── */
.cta-title {
  text-wrap: balance;
  font-size: clamp(1.45rem, 3.8vw, 2.2rem) !important;
  line-height: 1.25 !important;
  max-width: 680px !important;
  margin: 0 auto 16px !important;
}

/* ── 18. CRO: Botão Secundário - Porta de Fuga Elegante ── */
.hic-escape-wrap,
.ksf-escape-wrap {
  text-align: center;
  margin-top: 14px;
}
.btn-escape-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light, #DFBE82);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  line-height: 1.3;
}
.btn-escape-outline:hover,
.btn-escape-outline:focus-visible {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-light, #DFBE82);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

/* ── 19. CRO: Hero Desktop CTA Container ── */
.hero-desktop-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-desktop-cta .hero-cta-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  box-sizing: border-box;
}
.hero-desktop-cta .hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========================================
   20. ON RESORT — PALETA DARK & QUEBRA DE CORES
   ======================================== */

/* Reset Dark Absoluto para evitar fundos claros/beges */
body, main {
  background-color: #0A0E17 !important;
  color: #FFFFFF !important;
}

.section-dark {
  background-color: #0D131F !important;
  color: #FFFFFF !important;
}

.section-darker {
  background-color: #080C14 !important;
  color: #FFFFFF !important;
}

/* Títulos e Textos com Contraste Garantido */
.sec-title {
  color: #FFFFFF !important;
}
.sec-title em {
  color: var(--gold-light, #E0C28A) !important;
}
.sec-desc {
  color: rgba(255, 255, 255, 0.82) !important;
}
.sec-label span {
  color: var(--gold-light, #E0C28A) !important;
}

/* Quebra de Cores: Seção Localização (#localizacao) vs Tipologias (#plantas / #preco) */
#plantas {
  background-color: #080C14 !important;
}

#localizacao {
  background: linear-gradient(180deg, #0D1929 0%, #08111D 100%) !important;
  border-top: 1px solid rgba(30, 111, 143, 0.35) !important;
  border-bottom: 1px solid rgba(30, 111, 143, 0.35) !important;
}

#localizacao .sec-label span {
  color: #4A9BB8 !important;
  border-color: rgba(74, 155, 184, 0.4) !important;
}

#localizacao .loc-desc {
  color: rgba(230, 240, 250, 0.85) !important;
}

#localizacao .nearby .ni {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(74, 155, 184, 0.25) !important;
}

/* Caixa de Serviços Inclusos no Condomínio */
.servicos-box-dark {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 12px !important;
  padding: 24px !important;
}
.servicos-box-dark h3 {
  color: #F4D068 !important;
}
.servicos-box-dark .servico-item {
  color: rgba(255, 255, 255, 0.88) !important;
}
.servicos-box-dark .servico-item strong {
  color: #FFFFFF !important;
}

/* ── Fundo com Imagem Dedicada: Oportunidade Comercial (#preco) ── */
.section-preco-bg {
  position: relative;
  overflow: hidden;
}
.preco-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.preco-bg-img picture,
.preco-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.preco-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.48) 0%, rgba(8, 12, 18, 0.65) 100%);
  pointer-events: none;
}

/* ── Fundo com Imagem Dedicada: CTA Final (#formulario) ── */
.cta-sec {
  position: relative;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img picture,
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 9, 15, 0.48) 0%, rgba(6, 9, 15, 0.65) 100%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
}

/* ── Respiro generoso entre seções (desktop e mobile) ── */
.section,
.section-dark,
.section-darker,
.section-preco-bg,
.cta-sec,
#investimento,
#lazer,
#cidade-jardim,
#plantas,
#localizacao,
#corretor,
#faq,
#formulario {
  padding-top: clamp(60px, 7vw, 96px) !important;
  padding-bottom: clamp(60px, 7vw, 96px) !important;
}



