/* ============================================
   FEN - Versão LIGHT (Branco + Dourado Premium)
   Vibe: Dior / Tiffany / Spa de luxo
   ============================================ */

:root {
  --bg-main: #faf8f4;          /* Champagne branco */
  --bg-card: #ffffff;           /* Branco puro pra cards */
  --bg-subtle: #f3ede1;         /* Creme suave (seções alternadas) */
  --bg-warm: #f7f1e7;           /* Creme quente */
  --gold: #b8964f;              /* Dourado refinado */
  --gold-light: #d4b871;        /* Dourado claro */
  --gold-pale: #e8d9b3;         /* Dourado muito claro (acentos) */
  --gold-dark: #8c7039;         /* Dourado escuro */
  --gold-gradient: linear-gradient(135deg, #b8964f 0%, #d4b871 50%, #8c7039 100%);
  --gold-shimmer: linear-gradient(135deg, #d4b871 0%, #f0d896 30%, #b8964f 60%, #d4b871 100%);
  --text-primary: #1a1a1a;      /* Preto suave (corpo) */
  --text-secondary: #5a5a5a;    /* Cinza médio */
  --text-muted: #8a8a8a;        /* Cinza claro */
  --border-subtle: #e8e2d5;     /* Borda creme */
  --shadow-soft: 0 4px 24px rgba(184, 150, 79, 0.08);
  --shadow-strong: 0 12px 40px rgba(184, 150, 79, 0.18);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.gold,
.highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 700;
}

/* ============ HERO + VSL (Shorts vertical 9:16) ============ */
.hero {
  background:
    radial-gradient(ellipse at center top, rgba(184, 150, 79, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(212, 184, 113, 0.1) 0%, transparent 50%),
    var(--bg-main);
  padding: 16px 0 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.5;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Container da tela de bloqueio: tudo centralizado, cabe em 100vh */
.hero-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  gap: clamp(12px, 2.4vh, 22px);
  width: 100%;
  padding: clamp(16px, 4vh, 40px) 16px;
}

/* Logo pequena no canto superior esquerdo — não ocupa espaço do fluxo */
.logo {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 20;
  text-align: left;
  margin: 0;
}

.logo img {
  max-height: clamp(40px, 6vh, 52px);
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 3px 12px rgba(184, 150, 79, 0.18));
}

.logo-fallback {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* HEADLINE em destaque (protagonista do topo) */
.hero-headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-headline .gold {
  font-style: normal;
}

.vsl-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 0;
  flex-shrink: 1;
}

.vsl-frame {
  position: relative;
  height: min(54vh, 480px);
  aspect-ratio: 9 / 16;
  width: auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow:
    0 0 0 6px var(--bg-card),
    0 0 0 7px var(--gold),
    0 0 60px rgba(184, 150, 79, 0.4),
    0 30px 80px rgba(184, 150, 79, 0.25),
    0 60px 120px rgba(0, 0, 0, 0.1);
  background: var(--text-primary);
}

/* Badge "ASSISTA AGORA" sobreposto no vídeo */
.live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-dot-red {
  width: 7px;
  height: 7px;
  background: #ff3838;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 56, 56, 0.8);
  animation: pulse-red 1.2s infinite;
}

/* ============ LOCK DE SCROLL (página travada até liberar) ============ */
body.is-locked {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

/* Dica sutil de que vai liberar (sem texto de countdown) */
.hero-lock-hint {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.hero-lock-hint .lock-ico { font-size: 0.9rem; }

/* ============ BOTÃO DE INSCRIÇÃO (aparece quando libera) ============ */
.hero-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--bg-card);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  letter-spacing: 0.02em;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  box-shadow: 0 10px 36px rgba(184, 150, 79, 0.45);
  cursor: pointer;
  animation: unlock-pop 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.3), unlock-glow 2.2s ease-in-out 0.6s infinite;
}

.hero-unlock-btn[hidden] { display: none; }

.hero-unlock-btn:hover {
  transform: translateY(-2px);
}

.hero-unlock-btn .unlock-arrow {
  animation: unlock-bounce 1.4s ease-in-out infinite;
}

@keyframes unlock-pop {
  0% { opacity: 0; transform: scale(0.7) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes unlock-glow {
  0%, 100% { box-shadow: 0 10px 36px rgba(184, 150, 79, 0.45); }
  50% { box-shadow: 0 10px 50px rgba(184, 150, 79, 0.75); }
}

@keyframes unlock-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Iframe — pointer-events: none bloqueia cliques na UI nativa do YouTube */
.vsl-frame iframe,
.vsl-frame #vslPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* Click-catcher invisível: captura cliques e controla play/pause via API */
.vsl-click-catcher {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  cursor: pointer;
}

/* ============ OVERLAY (capa FEN + botão de play) ============ */
.vsl-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('assets/capa-vsl.jpg') center/cover no-repeat,
    linear-gradient(135deg, #f7f1e7 0%, #f3ede1 100%);
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.vsl-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vsl-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bg-card);
  transition: transform 0.3s ease;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.92),
    0 0 0 8px var(--gold-pale),
    0 14px 40px rgba(184, 150, 79, 0.55);
  animation: playPulse 2s ease-in-out infinite;
}

.vsl-play-btn:hover { transform: scale(1.06); animation: none; }

.vsl-play-btn .play-icon {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.92), 0 0 0 8px var(--gold-pale), 0 14px 40px rgba(184,150,79,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0.92), 0 0 0 16px rgba(232,217,179,0.45), 0 18px 52px rgba(184,150,79,0.7); }
}

/* Botão de tela cheia (canto sup. direito, aparece após o play) */
.vsl-fs-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s ease, opacity 0.4s ease, visibility 0.4s;
}

.vsl-fs-btn.is-visible { opacity: 1; visibility: visible; }
.vsl-fs-btn:hover { transform: scale(1.1); }
.vsl-fs-btn svg { width: 17px; height: 17px; }

/* Alterna o ícone: expandir <-> fechar */
.vsl-fs-btn .fs-ico-close { display: none; }
.vsl-fs-btn.is-active .fs-ico-open { display: none; }
.vsl-fs-btn.is-active .fs-ico-close { display: block; }

/* ============ "TELA CHEIA" próprio (cobre a tela; funciona no iPhone) ============ */
body.vsl-fs-open { overflow: hidden; }

.vsl-frame.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.vsl-frame.is-fullscreen iframe,
.vsl-frame.is-fullscreen #vslPlayer {
  width: 100%;
  height: 100%;
}

/* Em tela cheia, o botão de sair fica destacado no canto */
.vsl-frame.is-fullscreen .vsl-fs-btn {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.75);
}

/* ============ SELO PREMIUM (cobre o channel info do YouTube) ============ */
.vsl-premium-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 30px;
  background: linear-gradient(135deg, #0f0f0f 0%, #232323 100%);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  border-radius: 50px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  white-space: nowrap;
}

.vsl-premium-badge .badge-icon {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(212, 184, 113, 0.4));
}

/* ============ WATERMARK FEN (cobre a seta de share do YouTube) ============ */
.vsl-watermark {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  background: #faf8f4;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  border-radius: 50px;
  border: 1px solid var(--gold-pale);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* ============ SPEED TOGGLE (1x / 1.5x) ============ */
.vsl-speed-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 6;
  display: flex;
  gap: 2px;
  background: linear-gradient(135deg, #0f0f0f 0%, #232323 100%);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.vsl-speed-toggle.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vsl-speed-toggle .speed-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 42px;
}

.vsl-speed-toggle .speed-btn:hover { color: var(--bg-card); }

.vsl-speed-toggle .speed-btn.active {
  background: var(--gold-gradient);
  color: var(--bg-card);
  box-shadow: 0 2px 8px rgba(184, 150, 79, 0.4);
}

/* ============ PROGRESS BAR (rápida → lenta) ============ */
.vsl-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 7;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  pointer-events: none;
}

.vsl-progress.is-active {
  opacity: 1;
  visibility: visible;
}

.vsl-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8964f 0%, #e5c16b 60%, #f0d896 100%);
  box-shadow: 0 0 14px rgba(240, 216, 150, 0.9), 0 0 4px rgba(240, 216, 150, 1);
  border-radius: 0 50px 50px 0;
}

/* ============ OFFER STATUS (mensagem da oferta com countdown) ============ */
.offer-status {
  margin: 20px auto 0;
  max-width: 380px;
  padding: 16px 22px;
  background: #faf8f4;
  border: 1px solid var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(184, 150, 79, 0.15);
}

.offer-status-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.offer-status-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.offer-status-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.3;
}

.offer-status-timer {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 2px;
}

.offer-status-released {
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.offer-status.is-unlocked {
  background: linear-gradient(135deg, rgba(184, 150, 79, 0.1), rgba(212, 184, 113, 0.04));
  border-color: var(--gold);
}

/* Stats abaixo do vídeo */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
  padding: 18px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-stats .stat {
  flex: 1;
  min-width: 90px;
  text-align: center;
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.hero-stats .stat span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold-pale), transparent);
}

/* ============ BANNER PROVA SOCIAL ============ */
.social-banner {
  background: var(--gold-gradient);
  padding: 18px 0;
  text-align: center;
  position: relative;
}

.social-banner::before,
.social-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.social-banner::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main), transparent);
  opacity: 0.3;
}

.social-banner::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main), transparent);
  opacity: 0.3;
}

.social-banner p {
  color: var(--bg-card);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-banner strong {
  font-weight: 800;
}

/* ============ HEADLINE PRINCIPAL ============ */
.headline-section {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-main);
}

.headline-section h1 {
  font-size: clamp(1.6rem, 6vw, 3rem);
  margin-bottom: 28px;
  line-height: 1.15;
}

.subhead {
  font-size: 1.05rem;
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  padding: 14px 22px;
  display: inline-block;
  margin-bottom: 40px;
  border-radius: 4px;
  color: var(--text-secondary);
}

.benefits-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px;
}

.benefits-grid li {
  padding: 14px 18px 14px 44px;
  background: var(--bg-card);
  border-radius: 8px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.benefits-grid li:hover {
  transform: translateX(4px);
  border-color: var(--gold-pale);
}

.benefits-grid li::before {
  content: "✦";
  position: absolute;
  left: 18px;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-block {
  margin-top: 40px;
}

.cta-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 600;
}

/* ============ BOTÃO CTA ============ */
.cta-btn {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--bg-card);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-strong);
  position: relative;
  border: 1px solid var(--gold-dark);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(184, 150, 79, 0.35);
}

.cta-btn.locked {
  background: var(--bg-warm);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
  border-color: var(--border-subtle);
}

.cta-btn.locked .cta-text { display: none; }
.cta-btn:not(.locked) .cta-lock { display: none; }

/* ============ MÉTODO ============ */
.method-section {
  padding: 80px 0;
  background: var(--bg-subtle);
}

.method-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 50px;
}

.key-promises {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

.key-promises li {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.key-promises li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.promise-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.key-promises p {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============ CARROSSEL ============ */
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 40px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.carousel-item {
  flex: 0 0 280px;
}

.img-placeholder,
.video-placeholder {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-subtle));
  border: 2px dashed var(--gold-pale);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.video-placeholder {
  height: 220px;
  font-size: 1.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold-gradient);
  color: var(--bg-card);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* ============ PARA QUEM É ============ */
.audience-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.audience-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 40px;
}

.audience-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 40px;
}

.audience-list li {
  padding: 18px 18px 18px 54px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--gold-gradient);
  color: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.audience-callout {
  text-align: center;
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-primary);
}

/* ============ PORTÕES ============ */
.learn-section {
  padding: clamp(40px, 7vw, 80px) 0;
  background: var(--bg-subtle);
}

.learn-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
}

.gates-list {
  list-style: none;
  counter-reset: gates;
  max-width: 800px;
  margin: 40px auto 0;
}

.gates-list li {
  padding: 22px 26px 22px 64px;
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  counter-increment: gates;
  box-shadow: var(--shadow-soft);
}

.gates-list li::before {
  content: counter(gates);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.gates-list li:hover {
  transform: translateX(6px);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-strong);
}

/* ============ BÔNUS ============ */
.bonus-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.bonus-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 30px;
}

/* ============ PROVAS SOCIAIS VISUAIS ============ */
.proof-section {
  padding: clamp(40px, 7vw, 80px) 0;
  background: var(--bg-subtle);
}

.proof-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 30px;
}

.proof-secondary {
  margin-top: 60px;
}

.proof-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* Galeria masonry — usada como FALLBACK se o JS de marquee não rodar */
.proof-gallery {
  column-count: 2;
  column-gap: 12px;
}

.proof-item {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.proof-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Quando vira marquee, esconde o layout masonry de fallback */
.proof-gallery.is-marquee {
  column-count: auto;
  column-gap: 0;
}

.proof-gallery.is-marquee > .proof-item {
  display: none;
}

/* ============ MARQUEE PREMIUM (carrossel inteligente, arrastável) ============ */
.marquee-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee {
  position: relative;
  width: 100%;
}

/* Viewport: scroll container (arraste/swipe/trackpad) + fade nas bordas */
.marquee-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
  cursor: grab;
  touch-action: pan-x pan-y;      /* deixa o browser rolar carrossel (horizontal) ou página (vertical) */
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-viewport::-webkit-scrollbar {
  display: none;                  /* Chrome/Safari */
}

.marquee-viewport.dragging {
  cursor: grabbing;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Setas de navegação (aparecem no hover em desktop) */
.marquee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(184, 150, 79, 0.25);
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.marquee:hover .marquee-arrow {
  opacity: 1;
}

.marquee-arrow:hover {
  background: var(--gold-gradient);
  color: var(--bg-card);
  transform: translateY(-50%) scale(1.1);
}

.marquee-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.marquee-arrow.prev { left: 12px; }
.marquee-arrow.next { right: 12px; }

/* Mobile: sem setas (usa swipe do dedo), mas mantém dica visual sutil */
@media (hover: none) {
  .marquee-arrow { display: none; }
}

/* Cada item: altura uniforme = padronização premium, largura proporcional */
.marquee-item {
  flex: 0 0 auto;
  height: 320px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow:
    0 2px 8px rgba(184, 150, 79, 0.1),
    0 8px 24px rgba(184, 150, 79, 0.12);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  position: relative;
}

.marquee-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(184, 150, 79, 0.25);
  pointer-events: none;
}

.marquee-item:hover {
  transform: scale(1.04);
  box-shadow:
    0 4px 12px rgba(184, 150, 79, 0.2),
    0 16px 50px rgba(184, 150, 79, 0.3);
  z-index: 2;
}

.marquee-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

/* Fileira de depoimentos (prints verticais) — um pouco mais alta */
.marquee-group.tall .marquee-item {
  height: 380px;
}

@media (min-width: 768px) {
  .marquee-item { height: 400px; }
  .marquee-group.tall .marquee-item { height: 460px; }
}

/* ============ LIGHTBOX (modal pra ampliar) ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 22, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--gold);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: var(--bg-card);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--gold-pale);
  color: var(--bg-card);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--gold-gradient);
}

.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bg-card);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
}

@media (min-width: 600px) {
  .proof-gallery { column-count: 3; }
}

@media (min-width: 900px) {
  .proof-gallery { column-count: 4; column-gap: 16px; }
  .proof-item { margin-bottom: 16px; }
}

/* ============ DEPOIMENTOS ============ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.testimonials-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 50px;
}

/* Carrossel horizontal com snap em mobile, layout fluido em desktop */
.testimonials-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 28px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-pale) transparent;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: var(--gold-pale);
  border-radius: 50px;
}

.testimonial-card {
  flex: 0 0 240px;
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-pale);
}

/* Thumbnail vertical 9:16 com play overlay */
.testimonial-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg-warm);
}

.testimonial-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-thumb img {
  transform: scale(1.06);
}

.testimonial-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 4;
}

/* Gradiente premium: escurece topo e base pra texto/play saltarem */
.testimonial-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(26,22,15,0.45) 0%, transparent 22%),
    linear-gradient(to top, rgba(26,22,15,0.78) 0%, rgba(26,22,15,0.25) 32%, transparent 55%);
}

.testimonial-card.is-playing .testimonial-grad,
.testimonial-card.is-playing .testimonial-tag,
.testimonial-card.is-playing .testimonial-info {
  display: none;
}

/* Selo "ALUNA FEN" no topo */
.testimonial-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--gold-gradient);
  color: var(--bg-card);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(184, 150, 79, 0.5);
}

/* Play button overlay (gold premium) */
.testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.95),
    0 0 0 5px var(--gold-pale),
    0 10px 30px rgba(184, 150, 79, 0.5);
  z-index: 2;
}

.testimonial-card:hover .testimonial-play {
  transform: translate(-50%, -50%) scale(1.08);
}

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

.testimonial-card.is-playing .testimonial-play {
  display: none;
}

/* Info da aluna (nome + cidade) sobreposto na base da imagem */
.testimonial-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px 16px 16px;
  text-align: left;
  pointer-events: none;
}

.testimonial-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.testimonial-city {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 260px; }
}

/* ============ PLANOS ============ */
.plans-section {
  padding: 80px 0;
  background: var(--bg-subtle);
}

.plans-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 50px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-pale);
}

.plan-card.featured {
  border: 1px solid var(--gold-pale);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%);
}

.plan-card.featured-gold {
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(184, 150, 79, 0.2), var(--shadow-strong);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-soft);
}

.plan-badge.gold-badge {
  background: var(--gold-gradient);
  color: var(--bg-card);
}

.plan-header h3 {
  font-size: 1.7rem;
  color: var(--gold-dark);
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.plan-price {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.price-installments {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 6px 0;
}

.price-cash {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-indicated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  padding: 14px;
  background: var(--bg-warm);
  border-radius: 8px;
  line-height: 1.5;
}

.plan-indicated strong {
  color: var(--gold-dark);
}

.plan-features {
  list-style: none;
  margin-bottom: 26px;
}

.plan-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.05rem;
}

.plan-btn {
  display: block;
  text-align: center;
  background: var(--gold-gradient);
  color: var(--bg-card);
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.plan-btn:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.plan-btn.locked {
  background: var(--bg-warm);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.plan-btn.locked .btn-text { display: none; }
.plan-btn:not(.locked) .btn-lock { display: none; }

/* Botão "Começar agora" do TOPO de cada plano (igual ao da original) */
.plan-btn-top {
  margin-bottom: 22px;
}

/* ============ GARANTIA ============ */
.guarantee-section {
  padding: 70px 0;
  background: var(--bg-main);
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 850px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-pale);
  border-radius: 20px;
  padding: 38px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}

.guarantee-seal {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(184, 150, 79, 0.4);
  border: 4px solid var(--bg-card);
  outline: 1px solid var(--gold-pale);
}

.guarantee-content {
  flex: 1;
  min-width: 260px;
}

.guarantee-content h2 {
  font-size: 1.5rem;
}

.guarantee-content p {
  color: var(--text-secondary);
}

/* ============ ROI ============ */
.roi-section {
  padding: 70px 0;
  text-align: center;
  background: var(--bg-subtle);
}

.roi-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.roi-section p {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 20px;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.faq-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-pale);
}

.faq-item summary {
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  list-style: none;
  color: var(--text-primary);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 26px 20px;
  color: var(--text-secondary);
}

/* ============ CTA FINAL ============ */
.final-cta-section {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(184, 150, 79, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(212, 184, 113, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.final-cta-section p {
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.final-cta-section .cta-btn {
  position: relative;
  z-index: 1;
}

/* ============ MENTORES ============ */
.mentors-section {
  padding: 90px 0;
  background: var(--bg-main);
}

.mentors-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
}

.mentors-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mentor-img {
  position: relative;
}

.mentor-img img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow:
    0 0 0 1px var(--gold-pale),
    0 20px 60px rgba(184, 150, 79, 0.25),
    0 40px 100px rgba(0, 0, 0, 0.1);
}

.mentor-text p {
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.mentor-text strong {
  color: var(--gold-dark);
}

.mentor-cta {
  color: var(--text-primary) !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 50px 0 30px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer p {
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-pale);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(184, 150, 79, 0.15);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-cta span {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.cta-btn-small {
  background: var(--gold-gradient);
  color: var(--bg-card);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-soft);
}

/* ============ RESPONSIVO TABLET+ ============ */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .key-promises {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentors-content {
    grid-template-columns: 1fr 2fr;
  }
}

/* ============ RESPONSIVO DESKTOP ============ */
@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ GATILHO/CTA DO VÍDEO (hero) ============ */
.vsl-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 94%;
  margin: 0 auto;
  padding: 13px 26px;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-warm) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(184, 150, 79, 0.22);
  animation: cue-fade 0.6s ease both;
}

.vsl-cue strong { color: var(--gold-dark); font-weight: 800; }

.vsl-cue.is-hidden {
  display: none;
}

.vsl-cue-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(184, 150, 79, 0.6);
  animation: cue-pulse 1.6s ease-out infinite;
}

@keyframes cue-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 150, 79, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(184, 150, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 150, 79, 0); }
}

@keyframes cue-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ BOTÃO CTA FINAL (mentores) ============ */
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  background: var(--gold-gradient);
  color: var(--bg-card);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.95rem, 3.2vw, 1.15rem);
  letter-spacing: 0.02em;
  padding: 17px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  box-shadow: 0 10px 32px rgba(184, 150, 79, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(184, 150, 79, 0.55);
}

.final-cta-btn.locked {
  background: var(--bg-warm);
  color: var(--text-muted);
  border-color: var(--border-subtle);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.final-cta-btn.locked .btn-text { display: none; }
.final-cta-btn:not(.locked) .btn-lock { display: none; }

/* ============ DICA DE ARRASTE (carrosséis) ============ */
.marquee-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease, visibility 0.5s;
  animation: hint-float 2s ease-in-out infinite;
}

.marquee-hint .hint-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.marquee-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes hint-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* Em telas com mouse (desktop), a dica é menos necessária — some mais cedo no hover */
@media (hover: hover) {
  .marquee:hover .marquee-hint { opacity: 0; visibility: hidden; }
}

/* Carrossel de depoimentos em vídeo: wrapper pra ancorar a dica "arraste" */
.testimonials-carousel {
  position: relative;
}

/* No celular, o vídeo ocupa mais a tela (protagonista) */
@media (max-width: 600px) {
  .vsl-frame {
    height: min(54vh, 480px);
  }
  .hero-headline {
    font-size: clamp(1.05rem, 4.6vw, 1.5rem);
  }
}
