/* =========================================================================
   SAINT BARTH PENÍNSULA — LUXURY MOBILE-FIRST DESIGN SYSTEM
   Created with UI UX Pro Max Skill Intelligence
   Palette: Deep Obsidian (#0A0E17) + Metallic Champagne Gold (#D4AF37, #C5A059)
   Typography: Playfair Display + Plus Jakarta Sans
   ========================================================================= */

/* ---------- CSS VARIABLES & TOKENS ---------- */
:root {
  /* Color Palette */
  --bg-dark: #0A0E17;
  --bg-dark-2: #111625;
  --bg-card: rgba(22, 28, 45, 0.75);
  --bg-card-hover: rgba(30, 38, 60, 0.9);

  --gold-primary: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #A38020;
  --gold-gradient: linear-gradient(135deg, #F5E6A3 0%, #D4AF37 50%, #A38020 100%);
  --gold-border: rgba(212, 175, 55, 0.35);
  --gold-glow: rgba(212, 175, 55, 0.18);

  --text-light: #F8F9FA;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Glassmorphism & Borders */
  --glass-bg: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Mobile-first Layout Spacing */
  --container-max: 520px;
  /* Medida ideal para celular */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  :root {
    --container-max: 1140px;
  }
}

/* ---------- RESET & BASE STYLES ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
  /* Space for mobile sticky CTA bar */
}

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

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

/* ---------- ÍCONES (sprite Lucide) ----------
   Os paths do sprite não têm fill/stroke definidos, então herdam o padrão
   do navegador (preenchimento preto). Esta regra faz todo ícone usar a cor
   de texto do elemento pai como traço, do jeito que o sprite foi desenhado. */
svg.hidden-sprite use,
svg:not(.hidden-sprite) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.selection-gold::selection {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
}

.hidden-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(17, 22, 37, 0.9) 0%, transparent 50%);
}

/* ---------- LUZ AMBIENTE — halos dourados suaves e discretos ---------- */
.ambient-light {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.light-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: ambientFloat 26s ease-in-out infinite alternate;
}

.light-blob-1 {
  width: 30rem;
  height: 30rem;
  top: -8rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
  animation-duration: 28s;
}

.light-blob-2 {
  width: 26rem;
  height: 26rem;
  top: 30%;
  right: -9rem;
  background: radial-gradient(circle, rgba(245, 230, 163, 0.11) 0%, transparent 70%);
  animation-duration: 34s;
  animation-delay: -8s;
}

.light-blob-3 {
  width: 32rem;
  height: 32rem;
  bottom: -10rem;
  left: 15%;
  background: radial-gradient(circle, rgba(163, 128, 32, 0.14) 0%, transparent 70%);
  animation-duration: 30s;
  animation-delay: -14s;
}

@keyframes ambientFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(2.5rem, 3rem) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-blob {
    animation: none;
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .container {
    padding: 0 24px;
  }
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-gold {
  color: var(--gold-light);
}

.font-semibold {
  font-weight: 600;
}

/* ---------- TYPOGRAPHY & GRADIENTS ---------- */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.body-lead {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .body-lead {
    font-size: 1.125rem;
  }
}

.body-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- BUTTONS & BADGES ---------- */
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px var(--gold-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (min-width: 576px) {
  .btn-gold-lg {
    width: auto;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-gold-sm:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 9999px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.btn-outline-sm:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 230, 163, 0.4);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  backdrop-filter: var(--glass-blur);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

@media (min-width: 576px) {
  .btn-outline-lg {
    width: auto;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

.btn-outline-lg:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  border-radius: 9999px;
  backdrop-filter: var(--glass-blur);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-nav-cta:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
}

/* ---------- STICKY NAVBAR ---------- */
.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: padding var(--transition-fast), background var(--transition-normal), border-color var(--transition-normal), backdrop-filter var(--transition-normal);
}

.navbar-sticky.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .nav-container {
    padding: 0 24px;
  }
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  font-weight: 700;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   1. HERO SECTION — MOBILE-FIRST, IMAGEM SEMPRE SEM DISTORÇÃO
   Mobile (<768px): imagem no topo (banda ~40vh, object-fit:cover) + texto
   abaixo, em bloco sólido, bem espaçado.
   Desktop (≥992px): imagem plena à direita (object-fit:cover, sem esticar)
   com degradê escuro à esquerda; texto sobreposto, largura controlada.
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 76px;
  /* espaço para o navbar fixo transparente */
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 84px;
  }
}

.hero-banner {
  position: relative;
}

@media (min-width: 992px) {
  .hero-banner {
    min-height: max(90vh, 700px);
    display: flex;
    align-items: stretch;
  }
}

/* ---- Imagem (bloco no mobile, plano de fundo completo no desktop) ---- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    z-index: 0;
  }
}

/* object-fit:cover preserva a proporção original — nunca esticar/achatar.
   A foto (1189×1323) é quase quadrada; no mobile o corte é mínimo. */
.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  /* mostra o prédio inteiro + início da piscina, sem sobrar céu vazio */
  filter: brightness(0.97) contrast(1.04);
}

@media (min-width: 992px) {
  .hero-bg-img {
    /* Em telas largas o corte de cover é 100% vertical (a largura da foto
       já cobre o container inteiro) — por isso o eixo horizontal aqui é
       irrelevante; o que importa é o vertical, ajustado para manter o
       prédio, as varandas e a piscina visíveis, cortando o excesso de céu */
    object-position: center 55%;
  }
}

/* Degradê: no mobile só funde a base da foto com o bloco de texto abaixo;
   no desktop cobre a esquerda inteira para o texto ficar sempre legível */
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(10, 14, 23, 0.35) 0%,
      rgba(10, 14, 23, 0) 24%,
      rgba(10, 14, 23, 0) 55%,
      rgba(10, 14, 23, 0.75) 88%,
      var(--bg-dark) 100%);
}

@media (min-width: 992px) {
  .hero-visual-overlay {
    background: linear-gradient(90deg,
        rgba(10, 14, 23, 0.97) 0%,
        rgba(10, 14, 23, 0.92) 16%,
        rgba(10, 14, 23, 0.55) 42%,
        rgba(10, 14, 23, 0.15) 68%,
        rgba(10, 14, 23, 0) 100%);
  }
}

/* ---- Bloco de texto ---- */
.hero-body {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  padding: 1.75rem 0 2.25rem;
}

@media (min-width: 992px) {
  .hero-body {
    background: transparent;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    width: 100%;
  }
}

/* Padding lateral confortável no mobile (24px), sem alterar o .container global */
.hero-section .container {
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content {
  text-align: left;
}

@media (min-width: 992px) {
  .hero-content {
    max-width: 600px;
  }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.18;
  margin: 1rem 0;
}

@media (min-width: 480px) {
  .hero-heading {
    font-size: 2.1rem;
  }
}

@media (min-width: 992px) {
  .hero-heading {
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
  }
}

.hero-subtext {
  font-size: 0.95rem;
  color: #E2E8F0;
  max-width: 34rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .hero-subtext {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

.hero-cta-group .btn-gold-lg,
.hero-cta-group .btn-outline-lg {
  min-height: 54px;
  /* alvo de toque confortável no mobile */
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .hero-stats-row {
    grid-template-columns: repeat(4, auto);
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.1rem;
  }
}

.stat-number small {
  font-size: 1rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- SECTION GENERAL PADDING ---------- */
.section-padding {
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5.5rem 0;
  }
}

.bg-dark-2 {
  background-color: var(--bg-dark-2);
}

/* ---------- GRID LAYOUTS ---------- */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.grid-4-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.items-center {
  align-items: center;
}

.gap-12 {
  gap: 2rem;
}

.gap-8 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 0.85rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.25rem;
}

.mt-8 {
  margin-top: 1.75rem;
}

.mt-12 {
  margin-top: 2.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.25rem;
}

.mb-12 {
  margin-bottom: 2.5rem;
}

.w-full {
  width: 100%;
}

/* ---------- GLASS CARDS ---------- */
.card-glass {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
}

@media (min-width: 768px) {
  .card-glass {
    padding: 2rem;
  }
}

.card-glass:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
}

.card-glass-gold {
  background: linear-gradient(145deg, rgba(22, 28, 45, 0.9), rgba(15, 23, 42, 0.98));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .card-glass-gold {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
  }
}

.card-icon-gold {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.card-title-sm {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- MULTI-STEP QUALIFICATION WIZARD ---------- */
.wizard-container {
  position: relative;
  text-align: left;
}

.wizard-progress-bar-wrapper {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.wizard-progress-bar {
  height: 100%;
  width: 20%;
  background: var(--gold-gradient);
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: wizardStepIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-question-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.35;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 14, 23, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  min-height: 48px;
  /* Touch friendly on mobile */
}

.option-card:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.06);
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.option-radio-custom::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.option-card input[type="radio"]:checked+.option-radio-custom {
  border-color: var(--gold-primary);
}

.option-card input[type="radio"]:checked+.option-radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

.option-card input[type="radio"]:checked~.option-text {
  color: var(--gold-light);
  font-weight: 600;
}

.option-card:has(input[type="radio"]:checked) {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}

.option-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.35;
}

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ---------- 2. CONCEITO & IMAGEM ---------- */
.img-frame-gold {
  position: relative;
  border-radius: var(--radius-md);
}

.rounded-luxury {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.badge-float-glass {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: rgba(10, 14, 23, 0.92);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  max-width: 120px;
  line-height: 1.25;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.check-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ---------- 3. PENÍNSULA BANNER ---------- */
.peninsula-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}

.peninsula-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peninsula-banner-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 23, 0.95) 65%);
  width: 100%;
}

.peninsula-banner-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.peninsula-banner-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.peninsula-banner-lg {
  min-height: 340px;
}

@media (min-width: 768px) {
  .peninsula-banner-lg {
    min-height: 480px;
  }
}

@media (min-width: 1200px) {
  .peninsula-banner-lg {
    min-height: 600px;
  }
}

.peninsula-banner-lg .peninsula-banner-content {
  padding: 2.5rem 2rem;
}

.peninsula-banner-lg .peninsula-banner-content h4 {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .peninsula-banner-lg .peninsula-banner-content h4 {
    font-size: 2.1rem;
  }
}

/* Mobile: foto e texto separados — evita o texto "engolindo" a imagem
   quando o título quebra em várias linhas numa tela estreita */
@media (max-width: 767.98px) {
  .peninsula-banner-lg {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .peninsula-banner-lg .peninsula-img {
    position: relative;
    inset: auto;
    height: 220px;
  }

  .peninsula-banner-lg .peninsula-banner-content {
    position: relative;
    background: var(--bg-dark-2);
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .peninsula-banner-lg .peninsula-banner-content h4 {
    font-size: 1.35rem;
  }
}

/* Caixas de destaque compactas, abaixo da imagem grande */
.peninsula-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .peninsula-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.card-glass-compact {
  padding: 1.1rem;
}

@media (min-width: 768px) {
  .card-glass-compact {
    padding: 1.25rem;
  }
}

.card-icon-sm {
  width: 34px;
  height: 34px;
  margin-bottom: 0.65rem;
}

.card-title-xs {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card-glass-compact .card-text {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ---------- 4. STACKED IMAGES & QUOTE ---------- */
.img-grid-stacked {
  position: relative;
  padding-bottom: 15%;
}

.img-stacked-1,
.img-stacked-2 {
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: width var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast);
}

/* Posição "de trás": imagem grande, no fluxo normal */
.img-stacked-1.stack-back,
.img-stacked-2.stack-back {
  width: 85%;
  position: relative;
  z-index: 1;
  border: 1px solid var(--glass-border);
  box-shadow: none;
}

/* Posição "da frente": imagem pequena, sobreposta com destaque dourado */
.img-stacked-1.stack-front,
.img-stacked-2.stack-front {
  width: 58%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.img-stacked-1.stack-front:hover,
.img-stacked-2.stack-front:hover {
  transform: translateY(-4px);
}

.quote-card {
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
}

/* ---------- 5. TABS DE LAZER ---------- */
.tab-controls-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.amenity-chip svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ---------- 6. CLUBE HIGHLIGHTS ---------- */
.club-highlights-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .club-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.club-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.club-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.club-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
}

.club-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- 7. PLANTAS ---------- */
.plan-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.plan-tag.gold {
  background: var(--gold-gradient);
  color: var(--bg-dark);
}

.card-featured {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px var(--gold-glow);
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.plan-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.825rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 0.85rem;
}

.plan-specs li strong {
  color: var(--gold-light);
}

/* ---------- 8. GALERIA — CARROSSEL PREMIUM ---------- */
.carousel-gallery {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: var(--bg-dark-2);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

@media (min-width: 768px) {
  .carousel-viewport {
    aspect-ratio: 16/9;
  }
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide img.is-loaded {
  opacity: 1;
}

.carousel-slide.is-active img {
  animation: kenburns 7s ease-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.16) translate(-1.2%, -1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide.is-active img {
    animation: none;
    transform: scale(1.02);
  }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 23, 0.55);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  backdrop-filter: var(--glass-blur);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-arrow:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev {
  left: 0.75rem;
}

.carousel-arrow-next {
  right: 0.75rem;
}

@media (max-width: 575px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), width var(--transition-fast);
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.6);
}

.carousel-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--gold-gradient);
}

/* ---------- 8.5 VÍDEO DE APRESENTAÇÃO ---------- */
.video-showcase {
  display: flex;
  justify-content: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-dark-2);
}

.video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-dark-2);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(10, 14, 23, 0.55) 0%, rgba(10, 14, 23, 0.15) 45%, rgba(10, 14, 23, 0.35) 100%);
  border: none;
  cursor: pointer;
  color: var(--bg-dark);
  transition: opacity var(--transition-normal);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 8px 24px var(--gold-glow);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.video-play-btn svg {
  position: relative;
  margin-left: 4px;
}

.video-play-btn:hover::before {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---------- 9. LOCALIZAÇÃO ---------- */
.proximity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prox-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prox-time {
  padding: 0.4rem 0.75rem;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.prox-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
}

.prox-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-frame-glass {
  border-radius: var(--radius-md);
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}

/* ---------- 10. CORRETOR MARCOS PAZ ---------- */
.broker-card-glass {
  background: linear-gradient(135deg, rgba(22, 28, 45, 0.92), rgba(10, 14, 23, 0.98));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.2rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .broker-card-glass {
    padding: 2.1rem 2.25rem;
    border-radius: var(--radius-lg);
  }
}

.broker-img-wrapper {
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .broker-img-wrapper {
    max-width: 210px;
  }
}

.broker-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
}

.broker-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--gold-primary);
  padding: 0.25rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.broker-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.broker-role {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

.broker-quote {
  font-size: 0.9rem;
  line-height: 1.55;
}

.broker-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- FORMULÁRIO GERAL ---------- */
.lead-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(10, 14, 23, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  min-height: 46px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.success-box {
  padding: 2rem 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.hidden {
  display: none !important;
}

/* ---------- FOOTER ---------- */
.footer-dark {
  padding: 3rem 0 5.5rem;
  background-color: #070A10;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.legal-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}

.footer-copyright {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ---------- STICKY BAR FLUTUANTE DE CTA (OPTIMIZADA PARA CELULAR) ---------- */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  padding: 0.6rem 0;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.sticky-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .sticky-container {
    justify-content: space-between;
  }
}

.sticky-info {
  display: none;
  flex-direction: column;
}

@media (min-width: 576px) {
  .sticky-info {
    display: flex;
  }
}

.sticky-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
}

.sticky-info span {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.sticky-btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

.sticky-btns .btn-gold-sm {
  width: 100%;
  min-height: 46px;
}

@media (min-width: 576px) {
  .sticky-btns {
    width: auto;
  }

  .sticky-btns .btn-gold-sm {
    width: auto;
  }
}

/* ---------- LIGHTBOX MODAL ---------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.lightbox-caption {
  margin-top: 0.75rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  font-size: 2.25rem;
  color: var(--text-light);
  line-height: 1;
}

/* ---------- ANIMATION REVEAL ON SCROLL ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}