/* ================================================
   VIVER DE MAPA ASTRAL V2
   Paleta: Branco Marfim + Ouro + Acentos Suaves
   ================================================ */

:root {
  --white:        #FDFBF7;
  --cream:        #F7F3EC;
  --cream-dark:   #EDE8DE;
  --gold:         #C9A84C;
  --gold-light:   #D4AF37;
  --gold-bright:  #E8C85A;
  --gold-pale:    #F0E4B8;
  --gold-dim:     rgba(201,168,76,0.15);
  --gold-border:  rgba(201,168,76,0.25);
  --text:         #2C2416;
  --text-mid:     #5A4E3A;
  --text-muted:   #8B7B62;
  --text-light:   #B5A690;
  --shadow-gold:  rgba(201,168,76,0.18);
  --shadow-soft:  rgba(44,36,22,0.08);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { height: auto; max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* ── DUST CANVAS ─────────────────────────────── */
#dust-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.6;
}

/* ── CONTAINERS ──────────────────────────────── */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.container-narrow { max-width: 780px; }
.text-center      { text-align: center; }
.section          { padding: 80px 0; position: relative; z-index: 1; overflow: hidden; }
.section-cream    { background: var(--cream); }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant', serif; font-weight: 600; line-height: 1.2; color: var(--text); }
em         { font-style: italic; color: var(--gold-light); }
strong     { font-weight: 700; color: var(--text); }

.section-eyebrow {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--text); margin-bottom: 40px;
}
.section-label {
  font-size: 1.15rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 44px;
}

/* ── DIVIDERS ────────────────────────────────── */
.section-ornament-top {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── BUTTON ──────────────────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-bright) 100%);
  background-size: 200% 100%; background-position: left;
  color: #1a1000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; padding: 18px 44px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px var(--shadow-gold), 0 2px 8px rgba(0,0,0,0.1);
  position: relative; overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.btn-cta:hover {
  background-position: right;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4), 0 4px 16px rgba(0,0,0,0.1);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* ── REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-fast { opacity: 0; transition: opacity 0.5s ease; }
.reveal-fast.visible { opacity: 1; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  display: flex;
  align-items: flex-start; justify-content: center;
  padding: 60px 28px 80px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-mandala-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 820px); pointer-events: none;
}
.hero-mandala {
  width: 100%; height: auto;
  opacity: 0.07; filter: sepia(0.3) brightness(0.9);
}
.hero-mandala-glow {
  position: absolute; inset: 5%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
  text-align: center; /* logo centralizado */
}

/* ── SPLIT LAYOUT ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: 1fr auto;
  gap: 56px;
  align-items: center;
  text-align: left;
  margin-top: 32px;
}
/* Desktop: copy col 1 row 1, video col 2 span 2 rows, button col 1 row 2 */
.hero-copy     { grid-column: 1; grid-row: 1; }
.hero-video-col { grid-column: 2; grid-row: 1 / 3; }
.hero-split > .hero-cta-btn { grid-column: 1; grid-row: 2; align-self: start; }
/* hero elements — JS will animate them on load if available */

.hero-copy {
  display: flex; flex-direction: column; gap: 0;
}

/* Bullets limpos */
.hero-bullets { margin: 20px 0 24px; }
.hero-bullets-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero-bullets ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.hero-bullets li {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.hero-bullets li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.65rem;
  position: absolute;
  left: 0; top: 4px;
}

.hero-watch-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 0;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-cta-btn { align-self: flex-start; }

/* Coluna do vídeo */
.hero-video-col { width: 100%; }

/* Responsivo — empilha abaixo de 860px */
@media (max-width: 860px) {
  #hero { padding: 8px 20px 40px; }
  .logo-wrap { margin-bottom: 12px; opacity: 1 !important; }
  .logo-img { max-width: 260px; }

  .hero-split {
    display: flex !important;
    flex-direction: column;
    text-align: left;
    gap: 16px;
    margin-top: 4px;
  }
  .hero-split > * { grid-column: unset !important; grid-row: unset !important; }
  /* TEXTO PRIMEIRO, VIDEO DEPOIS, BOTÃO POR ÚLTIMO no mobile — ordem vem do HTML */
  .hero-copy { align-items: center; }
  .hero-video-col { opacity: 1 !important; transform: none !important; }
  .hero-split > .hero-cta-btn { width: 100%; justify-content: center; }

  .hero-sub,
  .hero-bullets,
  .hero-watch-cta,
  .hero-cta-btn { opacity: 1 !important; transform: none !important; }

  .hero-overline { text-align: center; width: 100%; }
  .hero-headline { text-align: center; width: 100%; }
  .hero-sub { text-align: center; width: 100%; }
  .hero-bullets { text-align: left; max-width: 420px; width: 100%; }
  .hero-bullets-label { text-align: center; }
  .hero-cta-btn { align-self: stretch; width: 100%; justify-content: center; }
  .hero-watch-cta { margin-top: 8px; margin-bottom: 0; text-align: center; }
  .vsl-embed-wrap { max-width: min(300px, 78vw); margin: 0 auto; }
}

.logo-wrap  { margin-bottom: 36px; opacity: 1; }
.logo-img   { max-width: 280px; width: 100%; height: auto; filter: drop-shadow(0 2px 12px var(--shadow-gold)); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }

.hero-headline {
  font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
  hyphens: none; -webkit-hyphens: none;
}
.gold-em { color: var(--gold-light); font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-mid); max-width: 520px;
  margin: 0 0 0; line-height: 1.75;
}

.hero-cta {
  font-size: 15px; padding: 20px 52px;
}

.hero-ornament {
  margin: 40px auto 0; width: 200px;
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
.scroll-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:1; } }

@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════════════
   PAIN POINTS
   ═══════════════════════════════════════════════ */
#pain { text-align: center; }

.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 820px; margin: 0 auto 44px;
  align-items: start;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 30px 26px;
  text-align: left; display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 2px 16px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.5);
}
.pain-icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0;
  color: var(--gold); opacity: 0.85;
}
.pain-icon-wrap svg { width: 100%; height: 100%; }
.pain-card p { font-size: 0.93rem; line-height: 1.7; color: var(--text-mid); }
.pain-card strong { color: var(--text); }

.pain-cta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Cormorant', serif;
  font-size: 1.25rem; font-weight: 600; font-style: italic;
  color: var(--text-mid); letter-spacing: 0.02em;
}
.pain-cta svg { color: var(--gold); }

/* ═══════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════ */
#video .section-title { margin-bottom: 40px; }

/* VSL principal — vertical 9:16 (formato celular) */
.vsl-embed-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 400px;
  margin: 0 auto 24px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(201,168,76,0.22), 0 4px 24px var(--shadow-soft);
  border: 2px solid var(--gold-border);
}

/* vsl-intro removido — substituído por hero-bullets no split layout */

.video-frame {
  position: relative; margin: 0 auto 20px;
  padding: 16px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 48px rgba(201,168,76,0.12), 0 2px 16px var(--shadow-soft);
}
.video-frame-corner {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.video-frame-corner.tl { top: 6px; left: 6px; border-top-width: 2px; border-left-width: 2px; border-radius: 6px 0 0 0; }
.video-frame-corner.tr { top: 6px; right: 6px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 6px 0 0; }
.video-frame-corner.bl { bottom: 6px; left: 6px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 6px; }
.video-frame-corner.br { bottom: 6px; right: 6px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 6px 0; }

.video-wrap {
  position: relative; border-radius: 12px;
  overflow: hidden; padding-top: 177.78%; /* 9:16 vertical — formato celular */
  background: #000;
  max-width: 380px;
  margin: 0 auto;
}
.video-note { font-size: 0.85rem; color: var(--text-light); font-style: italic; text-align: center; }

/* ═══════════════════════════════════════════════
   PHASES
   ═══════════════════════════════════════════════ */
.phases-intro-sub {
  max-width: 600px; margin: 0 auto 32px;
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
}
.phases-scroll-hint {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}
.phases-hint-arrows { display: flex; gap: 4px; color: var(--gold); opacity: 0.7; }

.phases-pin-wrapper { position: relative; overflow: hidden; }

.phases-progress {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-dim); z-index: 20;
}
.phases-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.1s linear;
}

.phases-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 24px; z-index: 20; list-style: none;
}
.phases-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: 1px solid var(--gold-border);
  border-radius: 50px; padding: 8px 18px;
  cursor: pointer; color: var(--text-muted);
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  transition: all 0.3s ease;
}
.phases-dot.active {
  background: var(--gold-dim); border-color: var(--gold);
  color: var(--gold);
}
.pd-num { font-weight: 700; font-size: 12px; }
.pd-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }

.phases-track { display: flex; width: 300vw; will-change: transform; }

.phase-panel {
  width: 100vw; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 10vw; gap: 80px;
  position: relative; overflow: hidden;
}
.phase-1 { background: var(--white); }
.phase-2 { background: var(--cream); }
.phase-3 {
  background: linear-gradient(135deg, var(--cream) 0%, #F0E8D5 100%);
}

.phase-panel-content { flex: 1; max-width: 520px; }

.phase-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.phase-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-light);
}
.phase-num-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant', serif; font-size: 1rem; font-weight: 700;
  color: var(--gold);
}
.phase-num-badge--2 { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.phase-num-badge--3 { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.4); }

.phase-panel-title {
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 700;
  color: var(--text); margin-bottom: 8px; line-height: 1;
}
.phase-panel-tagline {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.15rem; color: var(--gold); margin-bottom: 20px;
}
.phase-panel-desc {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 28px;
}
.phase-panel-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.phase-panel-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-mid);
}
.phase-list-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Phase visual */
.phase-visual { flex-shrink: 0; width: min(40vw, 420px); position: relative; }
.phase-wheel-container {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.phase-mandala {
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0.18; filter: sepia(0.2);
}
.phase-mandala-1 { animation: spinSlow 80s linear infinite; opacity: 0.15; }
.phase-mandala-2 { animation: spinSlow 70s linear infinite reverse; opacity: 0.13; }
.phase-mandala-3 { animation: spinSlow 60s linear infinite; opacity: 0.2; filter: sepia(0.1) brightness(0.9); }

@keyframes spinSlow { to { transform: rotate(360deg); } }

.phase-wheel-glow {
  position: absolute; inset: 10%;
  border-radius: 50%; pointer-events: none;
}
.phase-wheel-glow-1 { background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); }
.phase-wheel-glow-2 { background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%); }
.phase-wheel-glow-3 { background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%); }

.phase-num-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant', serif; font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700; color: rgba(201,168,76,0.08); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.phase-num-center--2 { color: rgba(201,168,76,0.07); }
.phase-num-center--3 { color: rgba(212,175,55,0.15); }

.phase-bg-word {
  position: absolute; bottom: -0.1em; right: -0.05em;
  font-family: 'Cormorant', serif; font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: rgba(201,168,76,0.04); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: left;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 2px 16px var(--shadow-soft);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }
.feature-card:hover::before { opacity: 1; }

.feature-num {
  font-family: 'Cormorant', serif; font-size: 2.8rem;
  font-weight: 700; color: var(--gold-pale);
  line-height: 1; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--text); }
.feature-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* Mandala deco */
.mandala-deco { position: absolute; pointer-events: none; z-index: 0; }
.mandala-deco--left  { left: -200px; top: 50%; transform: translateY(-50%); width: 500px; opacity: 0.04; }
.mandala-float { width: 100%; animation: spinSlow 120s linear infinite; }

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-layout {
  display: grid; grid-template-columns: 470px 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }

.about-mandala-ring {
  position: absolute; inset: -30px;
  border-radius: 50%; opacity: 0.06; pointer-events: none;
}
.about-mandala-img { width: 100%; animation: spinSlow 90s linear infinite; }

.about-image-placeholder {
  width: 430px; height: 600px;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 8px 48px var(--shadow-gold), 0 2px 16px var(--shadow-soft);
  position: relative;
  background: #ede8de;
  display: block; /* garante que não está hidden */
}
.about-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(201,168,76,0.08) 100%);
  pointer-events: none;
}
.about-initials {
  font-family: 'Cormorant', serif; font-size: 5rem; font-weight: 700;
  color: var(--gold); opacity: 0.4;
}
.about-badge {
  position: absolute; bottom: -20px; right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1000; border-radius: var(--radius);
  padding: 14px 20px; text-align: center;
  box-shadow: 0 8px 24px var(--shadow-gold);
}
.about-badge-num  { display: block; font-family: 'Cormorant', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 2px; }

.about-content .section-eyebrow { margin-bottom: 8px; }
.about-content .section-title   { margin-bottom: 24px; }
.about-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--gold-border);
  border-radius: var(--radius); overflow: hidden;
  margin: 36px 0;
}
.stat {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid var(--gold-border);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block; font-family: 'Cormorant', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; display: block; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-sub-title {
  font-family: 'Cormorant', serif; font-size: 1.6rem; font-weight: 600;
  color: var(--text); margin-bottom: 32px;
}

/* Video testimonials */
/* Grid de depoimentos em vídeo — 3 colunas estreitas para vídeos verticais */
.vtc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.vtc-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vtc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(201,168,76,0.16); }

.vtc-embed-wrap {
  position: relative; aspect-ratio: 9/16;
  background: #000; overflow: hidden;
  border-radius: 14px;
}
.vtc-thumb {
  position: relative; aspect-ratio: 16/9;
  background: var(--cream-dark); overflow: hidden;
}
.vtc-thumb-bg { position: absolute; inset: 0; }
.vtc-thumb-bg--1 { background: linear-gradient(135deg, #E8DCC8 0%, #D4C4A8 100%); }
.vtc-thumb-bg--2 { background: linear-gradient(135deg, #DDD0BC 0%, #C9B898 100%); }
.vtc-thumb-bg--3 { background: linear-gradient(135deg, #E4D8C4 0%, #D0BEA0 100%); }

.vtc-stars {
  position: absolute; top: 12px; left: 12px;
  color: var(--gold-light); font-size: 13px; letter-spacing: 2px;
}
.vtc-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer; padding: 0;
}
.vtc-play-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.vtc-play-circle:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }

.vtc-name-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(to top, rgba(44,36,22,0.6) 0%, transparent 100%);
  color: #fff;
}
.vtc-name-overlay strong { display: block; font-size: 0.9rem; font-weight: 700; }
.vtc-name-overlay span  { font-size: 0.75rem; opacity: 0.85; }

.vtc-info { padding: 20px 22px; }
.vtc-info blockquote { font-family: 'Cormorant', serif; font-size: 1rem; font-style: italic; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }

/* Text testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; overflow: hidden;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 2px 12px var(--shadow-soft);
}
.testimonial-card .stars {
  color: var(--gold-light); font-size: 14px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.02rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #1a1000; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testimonial-author span   { display: block; font-size: 0.78rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS V2 — PREMIUM CARDS + PROOF GALLERY
   ═══════════════════════════════════════════════ */
.testi-sub {
  font-size: 1rem; color: var(--text-mid);
  margin-bottom: 40px; margin-top: -8px;
}

.testi-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 60px 0 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.testi-divider::before, .testi-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.testi-divider span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}

.testi-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 0; text-align: left;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  box-shadow: 0 4px 24px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px var(--shadow-gold);
}

.testi-stars {
  color: var(--gold-light); font-size: 1rem; letter-spacing: 2px;
}

.testi-quote {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.75; color: var(--text);
  flex: 1;
}

.testi-author-row {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--gold-border);
}

.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Cormorant', serif;
}
.testi-av-a { background: linear-gradient(135deg, #C9A84C, #D4AF37); }
.testi-av-b { background: linear-gradient(135deg, #9B7B4E, #C4975A); }
.testi-av-c { background: linear-gradient(135deg, #7B5E8B, #A07AAC); }
.testi-av-d { background: linear-gradient(135deg, #5E8B7B, #7AACA0); }
.testi-av-e { background: linear-gradient(135deg, #8B7B5E, #AC9E7A); }

.testi-info strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-info span   { display: block; font-size: 0.76rem; color: var(--text-muted); }

/* Proof screenshots gallery */
.testi-proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: start;
}
.testi-proof-item {
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-soft);
  border: 1px solid var(--gold-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.testi-proof-item:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 10px 36px var(--shadow-gold);
}
.testi-proof-img { width: 100%; display: block; }

/* ═══════════════════════════════════════════════
   WHATSAPP EQUIPE
   ═══════════════════════════════════════════════ */
.wpp-intro { max-width: 540px; margin: 0 auto 48px; color: var(--text-mid); font-size: 1rem; }

.wpp-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.wpp-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; gap: 16px; align-items: center;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wpp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.3);
}
.wpp-icon { width: 40px; height: 40px; flex-shrink: 0; color: #25D366; }
.wpp-icon svg { width: 100%; height: 100%; }
.wpp-info { display: flex; flex-direction: column; gap: 3px; }
.wpp-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.wpp-number { font-size: 0.82rem; color: var(--text-mid); }
.wpp-cta-label { font-size: 0.78rem; color: #25D366; font-weight: 600; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gold-border); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--gold); transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
#final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.final-mandala-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: min(90vw, 700px);
  pointer-events: none;
}
.final-mandala { width: 100%; opacity: 0.06; animation: spinSlow 100s linear infinite; filter: sepia(0.2); }
.final-mandala-glow {
  position: absolute; inset: 15%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.final-pre {
  font-size: 1.1rem; color: var(--text-mid);
  max-width: 560px; margin: 0 auto 18px;
  line-height: 1.75;
}
.final-pre--em {
  font-family: 'Cormorant', serif; font-size: 1.5rem;
  font-style: italic; color: var(--gold-light);
  margin-bottom: 40px;
}
.final-title { margin-bottom: 20px !important; }
.final-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 44px; font-style: italic; font-family: 'Cormorant', serif; }
.final-ornament { margin: 0 auto 40px; width: 200px; }
.final-cta { font-size: 16px; padding: 22px 56px; }
.final-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-light); margin-top: 20px;
  letter-spacing: 0.05em;
}
.final-guarantee svg { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════ */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  opacity: 0;
}
.wpp-float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  position: relative; z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wpp-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wpp-icon-close { display: none; }
.wpp-float.open .wpp-icon-main  { display: none; }
.wpp-float.open .wpp-icon-close { display: block; }

.wpp-pulse {
  position: absolute; bottom: 0; right: 0;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wppPulse 2.5s ease-out infinite;
}
@keyframes wppPulse { 0% { transform:scale(1); opacity:0.6; } 100% { transform:scale(2); opacity:0; } }

.wpp-float-menu {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 16px;
  box-shadow: 0 8px 32px var(--shadow-soft);
  display: none; flex-direction: column; gap: 8px; min-width: 220px;
  opacity: 0;
}
.wpp-float.open .wpp-float-menu { display: flex; }

.wpp-float-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 4px; padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-border);
}
.wpp-float-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
  color: var(--text); font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s ease;
}
.wpp-float-item:hover { background: #f0faf3; color: #25D366; }

/* ═══════════════════════════════════════════════
   POPUP
   ═══════════════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(44,36,22,0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px; max-width: 460px; width: 100%;
  box-shadow: 0 24px 80px rgba(44,36,22,0.2);
  position: relative; text-align: center;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }

.popup-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--text-light); transition: color 0.2s ease;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { color: var(--text); }

.popup-ornament { margin-bottom: 8px; }
.popup-ornament svg { width: 80px; height: auto; }

.popup-logo-img { max-width: 180px; margin: 0 auto 20px; display: block; filter: drop-shadow(0 1px 6px var(--shadow-gold)); }
.popup-title { font-size: 1.6rem; margin-bottom: 8px; color: var(--text); }
.popup-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.65; }

.lead-form { text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.form-group input {
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  background: var(--cream); color: var(--text);
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group input.error { border-color: #e05555; }
.form-group input::placeholder { color: var(--text-light); }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-privacy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-light); margin-top: 14px;
  text-align: center;
}
.form-privacy svg { flex-shrink: 0; color: var(--gold); }

/* ═══════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════ */
.vtc-modal {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(44,36,22,0.88); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.vtc-modal.active { opacity: 1; pointer-events: all; }
.vtc-modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; transition: background 0.2s ease;
}
.vtc-modal-close:hover { background: rgba(255,255,255,0.2); }
.vtc-modal-player {
  width: 100%; max-width: 900px;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.vtc-modal-player iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--cream-dark);
  padding: 60px 0 40px;
  text-align: center;
  position: relative; z-index: 1;
  border-top: 1px solid var(--gold-border);
}
.footer-ornament { margin-bottom: 32px; }
.footer-ornament svg { width: 300px; height: auto; }
.footer-logo-img {
  max-width: 180px; margin: 0 auto 24px; display: block;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) brightness(0.82);
  opacity: 1;
}
.footer-copy { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-light); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO EXTRAS
   ═══════════════════════════════════════════════ */
.hero-overline {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-tagline {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.25rem; color: var(--gold-light);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════
   RESULTS SECTION — COSMOS LAYOUT
   ═══════════════════════════════════════════════ */
.results-section { overflow: hidden; }
/* zoom overlay during scroll pin */
.cosmos-zooming body { overflow: hidden; }

.results-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: -8px;
  margin-bottom: 0;
  opacity: 0.8;
}

/* ── COSMOS GRID ─────────────────────────────── */
.results-cosmos {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  max-width: 1200px;
  margin: 52px auto 0;
  align-items: center;
  position: relative;
}

/* Card placement */
.cosmos-card--tl { grid-column: 1; grid-row: 1; }
.cosmos-card--tr { grid-column: 3; grid-row: 1; }
.cosmos-card--bl { grid-column: 1; grid-row: 2; }
.cosmos-card--br { grid-column: 3; grid-row: 2; }
.cosmos-center   { grid-column: 2; grid-row: 1 / 3; }

/* ── CARD STYLES ─────────────────────────────── */
.cosmos-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: default;
  will-change: transform;
}
.cosmos-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 56px rgba(201,168,76,0.22), 0 4px 20px var(--shadow-soft);
  border-color: rgba(201,168,76,0.6);
}
.cosmos-card-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.cosmos-card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(201,168,76,0.12);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.cosmos-card:hover .cosmos-card-icon {
  transform: scale(1.2) rotate(20deg);
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
}
.cosmos-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* ── COSMOS CENTER ───────────────────────────── */
.cosmos-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible; /* rings animate outside, section clips */
}

.cosmos-mandala-wrap {
  position: relative;
  width: 390px;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cosmos-mandala-img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  animation: mandalaPulse 4s ease-in-out infinite;
  will-change: transform, filter;
  transform-origin: center center;
}
@keyframes mandalaPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 28px rgba(201,168,76,0.38));
  }
  50% {
    transform: scale(1.055);
    filter: drop-shadow(0 0 58px rgba(201,168,76,0.78));
  }
}

/* ── GLOW ────────────────────────────────────── */
.cosmos-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.08) 45%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: cosmosGlowPulse 4s ease-in-out infinite alternate;
}
@keyframes cosmosGlowPulse {
  from { opacity: 0.45; transform: scale(0.85); }
  to   { opacity: 1.0;  transform: scale(1.18); }
}

/* ── RADAR SWEEP ────────────────────────────── */
/* Conic-gradient "scanner" ray — rotated by GSAP on scroll enter */
.cosmos-sweep {
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    transparent 0%,
    rgba(201,168,76,0.04) 4%,
    rgba(201,168,76,0.20) 10%,
    rgba(255,240,160,0.55) 14%,
    rgba(201,168,76,0.18) 20%,
    transparent 36%
  );
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
  transform-origin: center center;
  opacity: 0;
}

/* ── ENERGY BURST ────────────────────────────── */
/* Brief radial flash on each card materialisation */
.cosmos-burst {
  position: absolute;
  inset: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,160,0.55) 0%, rgba(201,168,76,0.22) 38%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

/* ── RINGS ───────────────────────────────────── */
.cosmos-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  pointer-events: none;
  z-index: 0;
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cosmos-ring-1 { animation: cosmosRingPulse 3.8s ease-out 0.0s infinite; }
.cosmos-ring-2 { animation: cosmosRingPulse 3.8s ease-out 1.27s infinite; }
.cosmos-ring-3 { animation: cosmosRingPulse 3.8s ease-out 2.54s infinite; }

@keyframes cosmosRingPulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2.0); opacity: 0;   }
}

/* ── CENTER LABEL ────────────────────────────── */
.cosmos-center-label {
  margin-top: 20px;
  text-align: center;
  font-family: 'Cormorant', serif;
  line-height: 1.5;
}
.cosmos-center-label span {
  display: block;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cosmos-center-label em {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   METHOD SECTION
   ═══════════════════════════════════════════════ */
.method-sub {
  font-size: 1rem; color: var(--text-mid); margin-bottom: 12px;
  font-family: 'Cormorant', serif; font-style: italic; font-size: 1.1rem;
}
.method-highlight {
  font-weight: 700; color: var(--text); margin-bottom: 36px;
  font-size: 1.05rem;
}
.method-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; text-align: left; max-width: 920px; margin: 0 auto 40px;
}
.method-item {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 24px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 12px var(--shadow-soft);
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.75;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.method-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(201,168,76,0.13); }
.method-icon {
  font-size: 0.9rem; color: var(--gold); flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
/* Method showcase headline */
.method-showcase-headline {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.method-showcase-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.method-showcase-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}
.method-showcase-title em {
  font-style: italic;
  color: var(--gold);
}

/* Method section screens */
/* Method showcase — main + floating overlay */
.method-showcase {
  position: relative;
  max-width: 820px;
  margin: 0 auto 80px;
  padding-bottom: 40px;
}
.method-showcase-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 56px rgba(201,168,76,0.15), 0 4px 20px var(--shadow-soft);
  border: 1px solid var(--gold-border);
}
.method-main-img { width: 100%; display: block; }
.method-showcase-overlay {
  position: absolute;
  top: -20px; right: -24px;
  width: 50%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22), 0 4px 16px var(--shadow-gold);
  border: 2px solid var(--gold-border);
}
.method-overlay-img { width: 100%; display: block; }

.method-checklist {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 680px; margin: 0 auto 48px; text-align: left;
  background: var(--cream);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 28px 32px;
}
.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.7;
}
.check-icon {
  color: var(--gold); font-weight: 700; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-dim); display: inline-flex;
  align-items: center; justify-content: center; font-size: 0.75rem;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   CALLOUT SECTION (gold elegante)
   ═══════════════════════════════════════════════ */
.section-callout-gold {
  background: linear-gradient(135deg, var(--cream) 0%, #EDE0C4 50%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.section-callout-gold::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.callout-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: 0.04em; color: var(--text);
  margin-bottom: 32px; line-height: 1.25;
}
.callout-title em { color: var(--gold-light); font-style: italic; }
.callout-body {
  max-width: 620px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 20px;
  font-size: 1rem; line-height: 1.8; color: var(--text-mid);
}
.callout-wants {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius); padding: 24px 28px;
  font-size: 1.02rem; line-height: 2;
  text-align: left; color: var(--text);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  box-shadow: none;
}
.btn-outline::after { display: none; }
.btn-outline:hover {
  background: var(--gold-dim);
  box-shadow: 0 4px 24px rgba(201,168,76,0.25) !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   BRIDGE MANDALA
   ═══════════════════════════════════════════════ */
.bridge-mandala-wrap {
  position: absolute; top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 420px; pointer-events: none; z-index: 0;
}
.bridge-mandala-img {
  width: 100%; opacity: 0.05;
  animation: spinSlow 120s linear infinite;
}

/* ═══════════════════════════════════════════════
   ABOUT PHOTO
   ═══════════════════════════════════════════════ */
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 0;
  display: block !important;
  opacity: 1 !important; /* garante que não é afetado por .reveal */
  transition: transform 0.6s ease;
}
.about-image-placeholder:hover .about-photo-img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════
   MODULES SECTION
   ═══════════════════════════════════════════════ */
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 32px 26px;
  text-align: left; position: relative; overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  opacity: 0; transition: opacity 0.3s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }
.module-card:hover::before { opacity: 1; }
.module-num {
  font-family: 'Cormorant', serif; font-size: 3.5rem;
  font-weight: 700; color: var(--gold-pale);
  line-height: 1; margin-bottom: 12px;
}
.module-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.module-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

.modules-special {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 36px 40px;
  text-align: center;
}
.modules-special-title {
  font-family: 'Cormorant', serif; font-size: 1.4rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 16px;
}
.modules-special p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 12px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.modules-special p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   BONUS SECTION
   ═══════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   BONUS SECTION — light & premium
   ══════════════════════════════════════════ */
.section-bonus-light {
  background: linear-gradient(160deg, #fffdf7 0%, #f7f2e8 50%, #fdf8ef 100%);
  position: relative; overflow: hidden;
}
.section-bonus-light::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(212,175,55,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.bonus-intro {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 10px; font-style: italic;
  font-family: var(--font-serif);
}
.bonus-headline {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.bonus-sub {
  font-size: 1rem; color: var(--gold);
  margin-bottom: 52px; letter-spacing: 0.05em;
}

/* Bonus mockup */
.bonus-mockup-wrap { margin: 0 auto 52px; max-width: 900px; }
.bonus-mockup-img {
  width: 100%; border-radius: var(--radius-lg); display: block;
  box-shadow: 0 12px 48px rgba(201,168,76,0.18), 0 4px 20px rgba(0,0,0,0.08);
}

/* Bonus inline img */
.bonus-item-img {
  width: 100%; border-radius: var(--radius-sm);
  margin: 10px 0 14px; display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Bonus grid — cards claros */
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px; text-align: left;
}
.bonus-item {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 2px 14px rgba(201,168,76,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bonus-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.bonus-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.bonus-item h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.3;
}
.bonus-item p {
  font-size: 0.85rem; color: var(--text-medium);
  line-height: 1.75; margin-bottom: 16px;
}
.bonus-price {
  display: flex; gap: 12px; align-items: center;
  font-size: 0.82rem; font-weight: 700;
}
.bonus-de { color: var(--text-muted); text-decoration: line-through; }
.bonus-por { color: var(--gold); }

/* Bonus total — premium light design */
.bonus-total {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  box-shadow: 0 4px 24px rgba(201,168,76,0.1);
  text-align: left;
}
.bonus-total-value {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0;
}
.bonus-total-label {
  font-family: var(--font-sans);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.bonus-total-amount {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  white-space: nowrap;
}
.bonus-total-divider {
  width: 1px; align-self: stretch;
  background: var(--gold-border);
  flex-shrink: 0;
}
.bonus-total-msg { flex: 1; }
.bonus-total-cta-text {
  font-size: 1.05rem; color: var(--text-dark);
  line-height: 1.6; margin: 0 0 0;
}
.bonus-total-cta-text strong {
  color: var(--text-dark);
  font-weight: 800;
  white-space: nowrap;
}
.bonus-alert {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 10px !important;
  font-size: 0.83rem !important;
  color: #8B6914 !important;
  background: rgba(201,168,76,0.07);
  border-radius: 6px; padding: 7px 10px;
}
.bonus-alert svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }

@media (max-width: 600px) {
  .bonus-total { flex-direction: column; text-align: center; gap: 20px; }
  .bonus-total-divider { width: 60px; height: 1px; align-self: auto; }
  .bonus-total-msg { text-align: left; }
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold-light);
  color: var(--gold-light) !important;
  box-shadow: none;
}
.btn-gold-outline::after { display: none; }
.btn-gold-outline:hover {
  background: rgba(201,168,76,0.12);
  box-shadow: 0 4px 28px rgba(201,168,76,0.3) !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   ACCESS SECTION
   ═══════════════════════════════════════════════ */
.access-options {
  display: flex; gap: 20px; justify-content: center;
  margin: 0 auto 36px; flex-wrap: wrap;
}
.access-opt {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 36px;
  min-width: 200px;
  box-shadow: 0 2px 16px var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.access-opt:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); }
.access-opt--highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, #FBF6E9 100%);
  box-shadow: 0 4px 24px var(--shadow-gold);
}
.access-opt-icon { font-size: 2rem; margin-bottom: 4px; }
.access-opt strong { font-family: 'Cormorant', serif; font-size: 1.3rem; color: var(--text); }
.access-opt span { font-size: 0.82rem; color: var(--text-muted); }
.access-sub {
  font-size: 0.95rem; color: var(--text-mid);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════ */
.guarantee-badge {
  display: flex; justify-content: center;
  margin-bottom: 36px;
}
.guarantee-circle {
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 0 0 8px var(--gold-dim), 0 8px 32px var(--shadow-gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.guarantee-num {
  font-family: 'Cormorant', serif; font-size: 3.5rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.guarantee-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text);
}
.guarantee-sub {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
}
.guarantee-text {
  max-width: 580px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BRIDGE SECTION
   ═══════════════════════════════════════════════ */
.bridge-sub {
  font-size: 1.05rem; color: var(--text-mid);
  margin-bottom: 40px; line-height: 1.8;
}
.bridge-checklist {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; max-width: 820px; margin: 0 auto 44px;
  text-align: left;
}
.bridge-check {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 16px 18px;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   3 FASES SECTION
   ═══════════════════════════════════════════════ */
.phases-v-sub {
  font-size: 1.05rem; color: var(--text-mid);
  margin-bottom: 52px; line-height: 1.8;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.phases-v-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 1000px; margin: 0 auto;
}
.phase-v-card {
  flex: 1; background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; position: relative;
  box-shadow: 0 4px 24px var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phase-v-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.15);
}
.phase-v-num {
  font-family: 'Cormorant', serif; font-size: 4.5rem;
  font-weight: 700; color: var(--gold-pale);
  line-height: 1; margin-bottom: 8px;
}
.phase-v-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.phase-v-title {
  font-family: 'Cormorant', serif; font-size: 1.9rem;
  font-weight: 700; color: var(--gold-light); margin-bottom: 6px;
}
.phase-v-tagline {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 18px; display: block;
}
.phase-v-card p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.8;
}
.phase-v-arrow {
  flex-shrink: 0; width: 48px; display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); opacity: 0.5;
}
.phase-v-arrow svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════
   TARGET AUDIENCE SECTION
   ═══════════════════════════════════════════════ */
.target-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 680px; margin: 0 auto; text-align: left;
}
.target-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 20px 24px;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.7;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.target-item:hover {
  transform: translateX(4px);
  border-color: rgba(201,168,76,0.5);
}
.target-icon {
  color: var(--gold); flex-shrink: 0;
  font-size: 0.85rem; margin-top: 3px;
  width: 26px; height: 26px;
  background: var(--gold-dim); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════
   SOCIAL PROOF / PROOF NUMBERS SECTION
   ═══════════════════════════════════════════════ */
.social-sub {
  font-size: 1rem; color: var(--text-mid); margin-bottom: 48px;
}
/* Proof Numbers */
.proof-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  margin: 0 auto 56px;
  box-shadow: 0 4px 24px var(--shadow-soft);
}
.proof-num-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0 40px;
}
.proof-num-big {
  font-family: 'Cormorant', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.proof-num-label {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.proof-num-divider {
  width: 1px; height: 48px;
  background: var(--gold-border);
}
/* Proof Quotes */
.proof-quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left; margin-bottom: 0;
}
.proof-quote-item {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 2px 12px var(--shadow-soft);
}
.proof-quote-item p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 12px; font-style: italic;
}
.proof-quote-item cite {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  font-style: normal; letter-spacing: 0.02em;
}
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}
.social-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: 0 2px 14px var(--shadow-soft);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.13);
}
.social-card-header {
  display: flex; align-items: center; gap: 10px;
}
.social-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #1a1000;
  flex-shrink: 0;
}
.social-avatar--a { background: linear-gradient(135deg, #C9A84C, #D4AF37); }
.social-avatar--b { background: linear-gradient(135deg, #D4AF37, #E8C85A); }
.social-avatar--c { background: linear-gradient(135deg, #B8973B, #C9A84C); }
.social-avatar--d { background: linear-gradient(135deg, #E8C85A, #C9A84C); }
.social-avatar--e { background: linear-gradient(135deg, #C9A84C, #B8973B); }
.social-avatar--f { background: linear-gradient(135deg, #D4AF37, #B8973B); }
.social-meta strong { display: block; font-size: 0.85rem; color: var(--text); }
.social-meta span   { font-size: 0.75rem; color: var(--text-light); }
.social-card p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.7; font-family: 'Cormorant', serif;
  font-style: italic; font-size: 1rem;
}
.social-likes {
  font-size: 0.78rem; color: var(--text-light);
  border-top: 1px solid var(--gold-border);
  padding-top: 10px; margin-top: auto;
}

/* ═══════════════════════════════════════════════
   OBJECTIONS SECTION
   ═══════════════════════════════════════════════ */
.objection-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 16px;
}
.objection-item {
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}
.objection-item:first-child { border-top: 1px solid var(--gold-border); }
.objection-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Cormorant', serif; font-size: 1.2rem; font-weight: 600;
  font-style: italic; color: var(--text);
  transition: color 0.2s ease;
}
.objection-q:hover { color: var(--gold); }
.objection-q[aria-expanded="true"] { color: var(--gold); }
.objection-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.objection-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.objection-a.open { max-height: 200px; }
.objection-a p {
  padding: 0 0 20px 0;
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FINAL CTA EXTRAS
   ═══════════════════════════════════════════════ */
.final-sub-big {
  font-family: 'Cormorant', serif; font-size: 2rem;
  font-weight: 600; color: var(--text);
  margin-bottom: 16px;
}
.final-sub-big strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .phases-v-grid { flex-direction: column; gap: 0; max-width: 560px; }
  .phase-v-arrow { transform: rotate(90deg); padding: 8px 0; }
  .bridge-checklist { grid-template-columns: 1fr; max-width: 540px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-image-placeholder { width: min(380px, 85vw); height: auto; aspect-ratio: 430/600; }
  .about-badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -24px; white-space: nowrap; }
  .about-image-wrap { margin-bottom: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-proof-grid { grid-template-columns: repeat(3, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .results-cosmos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
  }
  .cosmos-center   { grid-column: 1 / 3; grid-row: 1; }
  .cosmos-card--tl { grid-column: 1; grid-row: 2; }
  .cosmos-card--tr { grid-column: 2; grid-row: 2; }
  .cosmos-card--bl { grid-column: 1; grid-row: 3; }
  .cosmos-card--br { grid-column: 2; grid-row: 3; }
  .cosmos-mandala-wrap { width: 300px; height: 300px; }
  .cosmos-ring { width: 320px; height: 320px; }
  .method-grid { grid-template-columns: 1fr; max-width: 560px; }
  .method-showcase-overlay { display: none; }
  .method-showcase { padding-bottom: 0; margin-bottom: 40px; }
  .wac-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Global ── */
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
  .section-title { font-size: clamp(1.65rem, 5.5vw, 2.2rem); margin-bottom: 24px; }
  .final-sub-big { font-size: 1.45rem; }

  /* ── Buttons ── */
  .btn-cta { width: 100%; justify-content: center; padding: 16px 24px; font-size: 13px; }
  .hero-cta-btn { align-self: stretch; }
  .final-cta { padding: 16px 24px; font-size: 13px; }

  /* ── Bridge ── */
  .bridge-checklist { grid-template-columns: 1fr; }

  /* ── Pain ── */
  .pain-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* ── Features ── */
  .features-grid { grid-template-columns: 1fr; }

  /* ── Cosmos ── */
  .results-cosmos {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 14px;
  }
  .cosmos-center   { grid-column: 1 !important; grid-row: 1 !important; }
  .cosmos-card--tl { grid-column: 1 !important; grid-row: 2 !important; }
  .cosmos-card--tr { grid-column: 1 !important; grid-row: 3 !important; }
  .cosmos-card--bl { grid-column: 1 !important; grid-row: 4 !important; }
  .cosmos-card--br { grid-column: 1 !important; grid-row: 5 !important; }
  .cosmos-mandala-wrap { width: min(240px, 68vw); height: min(240px, 68vw); }
  .cosmos-ring { width: min(260px, 72vw); height: min(260px, 72vw); }
  .cosmos-card { transform: none !important; rotation: 0 !important; }
  .cosmos-card-inner { padding: 18px 16px; }

  /* ── Video testimonials ── */
  .vtc-grid { grid-template-columns: 1fr; justify-content: center; max-width: min(340px, 90vw); margin-left: auto; margin-right: auto; }

  /* ── Written testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testi-cards-grid { grid-template-columns: 1fr !important; }
  .testi-proof-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── WhatsApp ── */
  .wpp-team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .wac-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  /* ── Method ── */
  .method-grid { grid-template-columns: 1fr; }
  .method-showcase-overlay { display: none; }
  .method-showcase { padding-bottom: 0; margin-bottom: 32px; }
  .modules-special { padding: 24px 18px; }
  .callout-wants { padding: 14px 16px; }

  /* ── Modules & Bonus ── */
  .modules-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }

  /* ── About ── */
  .about-image-placeholder { width: min(320px, 84vw); height: auto; aspect-ratio: 430/600; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-layout { gap: 48px; }

  /* ── Phases ── */
  .phase-panel { flex-direction: column; padding: 52px 18px 72px; gap: 28px; }
  .phase-visual { width: min(68vw, 260px); }
  .phases-dots { gap: 8px; }
  .pd-label { display: none; }

  /* ── Social ── */
  .social-grid { grid-template-columns: 1fr; }

  /* ── Phases V ── */
  .phases-v-grid { max-width: 420px; }
  .phase-v-card { padding: 26px 16px; }

  /* ── Popup ── */
  .popup-card { padding: 32px 22px; }
  .popup-title { font-size: 1.35rem; }
  .popup-overlay { padding: 16px; align-items: flex-end; }
  .popup-card { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES  (≤ 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* ── Global ── */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); margin-bottom: 20px; }
  .section-eyebrow { font-size: 9px; letter-spacing: 0.2em; }

  /* ── Hero ── */
  #hero { padding: 6px 16px 32px; }
  .logo-wrap { margin-bottom: 10px; }
  .logo-img { max-width: 220px; }
  .hero-overline { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 0; line-height: 1; }
  .hero-headline { font-size: clamp(1.47rem, 7.3vw, 2.0rem); margin-bottom: 0; line-height: 1.1; }
  .hero-headline .hero-headline-top { display: block; text-align: center; }
  .hero-headline .gold-em { font-size: 0.76em; }
  .hero-sub { font-size: 0.88rem; }
  .hero-bullets { margin: 12px 0 16px; }
  .hero-bullets li { font-size: 0.86rem; }
  .hero-watch-cta { font-size: 0.78rem; }
  .vsl-embed-wrap { max-width: min(270px, 86vw); border-radius: 14px; }

  /* ── Buttons ── */
  .btn-cta { padding: 14px 18px; font-size: 12px; letter-spacing: 0.05em; }

  /* ── Cosmos ── */
  .cosmos-mandala-wrap { width: min(200px, 64vw); height: min(200px, 64vw); }
  .cosmos-ring { width: min(220px, 68vw); height: min(220px, 68vw); }
  .results-cosmos { gap: 12px; }
  .cosmos-card-inner { padding: 16px 14px; gap: 8px; }
  .cosmos-card p { font-size: 0.84rem; line-height: 1.65; }

  /* ── About ── */
  .about-image-placeholder { width: min(280px, 86vw); }
  .about-badge-num { font-size: 1.4rem; }
  .about-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat:last-child { border-bottom: none; }

  /* ── Testimonials ── */
  .testi-proof-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .testi-quote { font-size: 0.95rem; }
  .testi-card { padding: 18px 14px 14px; }
  .testimonials-sub-title { font-size: 1.25rem; }

  /* ── Method ── */
  .method-showcase-title { font-size: clamp(1.05rem, 5vw, 1.35rem); }

  /* ── Phases ── */
  .phase-v-card { padding: 22px 14px; }
  .phase-panel { padding: 40px 14px 64px; }

  /* ── VTC ── */
  .vtc-grid { max-width: min(280px, 88vw); }

  /* ── Bonus ── */
  .bonus-total {
    flex-direction: column; align-items: center; text-align: center;
    padding: 22px 16px; gap: 16px;
  }
  .bonus-total-divider { width: 70%; height: 1px; align-self: auto; }
  .bonus-total-amount { font-size: 1.75rem; }
  .final-sub-big { font-size: 1.25rem; }
  .final-pre { font-size: 0.92rem; }
  .final-pre--em { font-size: 1.2rem; }

  /* ── Bridge ── */
  .bridge-check { gap: 10px; font-size: 0.86rem; }

  /* ── FAQ ── */
  .faq-question { font-size: 0.86rem; padding: 16px 0; }

  /* ── Modules ── */
  .modules-special { padding: 20px 14px; }

  /* ── Popup — bottom sheet ── */
  .popup-overlay { padding: 0; align-items: flex-end; }
  .popup-card { padding: 28px 18px 36px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .popup-title { font-size: 1.2rem; }
  .popup-sub { font-size: 0.8rem; }

  /* ── WPP float ── */
  .wpp-float { bottom: 18px; right: 14px; }
  .wpp-float-btn { width: 50px; height: 50px; }
  .wpp-pulse { width: 50px; height: 50px; }
  .wpp-float-menu { min-width: 186px; }

  /* ── Footer ── */
  .footer-ornament svg { width: 200px; }
  .footer-links { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .footer-links a { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP SCREENSHOT CARDS
   ═══════════════════════════════════════════════ */
.wac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 40px auto 0;
}
.wac-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.wac-phone {
  background: #111;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
}
.wac-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 14px 4px;
  font-size: 0.65rem; font-weight: 600;
  color: #fff;
  background: #111;
}
.wac-header-bar {
  background: #075E54;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wac-avatar-sm {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #075E54);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant', serif; font-size: 1rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.wac-avatar-sm--b { background: linear-gradient(135deg, #C9A84C, #8B6914); }
.wac-avatar-sm--c { background: linear-gradient(135deg, #9B59B6, #4A235A); }

.wac-contact-info { flex: 1; }
.wac-contact-info strong { display: block; color: #fff; font-size: 0.82rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }
.wac-contact-info span { color: rgba(255,255,255,0.7); font-size: 0.68rem; }

.wac-messages {
  background: #ECE5DD;
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ccc' fill-opacity='0.08'%3E%3Cpath d='M20 0C8.954 0 0 8.954 0 20s8.954 20 20 20 20-8.954 20-20S31.046 0 20 0zm0 36c-8.837 0-16-7.163-16-16S11.163 4 20 4s16 7.163 16 16-7.163 16-16 16z'/%3E%3C/g%3E%3C/svg%3E");
}
.wac-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 8px 10px 4px;
  max-width: 85%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}
.wac-bubble::before {
  content: '';
  position: absolute; top: 0; left: -7px;
  border: 7px solid transparent;
  border-right-color: #fff;
  border-top-color: #fff;
}
.wac-bubble p {
  font-size: 0.78rem; color: #303030; line-height: 1.5;
  font-family: 'Montserrat', sans-serif; margin: 0 0 4px;
}
.wac-bubble strong { color: #111; }
.wac-time {
  display: block; text-align: right;
  font-size: 0.62rem; color: #888;
}
.wac-name-tag {
  font-size: 0.8rem; color: var(--text-mid); font-weight: 600;
  letter-spacing: 0.02em; text-align: center;
}

@media (max-width: 900px) {
  .wac-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ═══════════════════════════════════════════════
   CERTIFICATE SECTION
   ═══════════════════════════════════════════════ */
.cert-sub {
  font-size: 1rem; color: var(--text-mid);
  max-width: 560px; margin: 0 auto 52px;
  line-height: 1.8;
}
.cert-image-wrap {
  margin: 0 auto 52px;
  max-width: 620px;
}
.cert-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(201,168,76,0.22), 0 4px 20px var(--shadow-soft);
  border: 1px solid var(--gold-border);
}
.cert-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
}
.cert-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cert-corner {
  position: absolute; width: 22px; height: 22px;
  border-color: var(--gold); border-style: solid;
  z-index: 2;
}
.cert-corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.cert-corner--tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.cert-corner--bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.cert-corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.cert-items {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 520px; margin: 0 auto; text-align: left;
}
.cert-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.cert-icon {
  color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
  margin-top: 3px;
}
.cert-item p {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.6;
}
.cert-item strong { color: var(--text); }

@media (max-width: 480px) {
  .popup-card { padding: 36px 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat:last-child { border-bottom: none; }
  .about-image-placeholder { width: 280px; height: 400px; }
}
