/* ============================================================
   DESIGN SYSTEM — MVP TIME DE MARKETING (Criadores Magnéticos)
   Base estrutural: claudecode.aprendausaria.com/v6 (Nathan Lopes)
   Única alteração de cor: a rampa de dourado é a do William.
   Mobile é a vista canônica. Desktop é o fallback.
   ------------------------------------------------------------
   Ordem: 1 tokens · 2 reset/base · 3 atmosfera · 4 tipografia
          5 botões · 6 superfícies · 7 seções · 8 componentes
          9 responsivo · 10 acessibilidade de movimento
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Dourado — RAMPA DO WILLIAM (substitui #9c7a1e/#d4af37/#f5d67e da ref) */
  --gold-deep:   #AA8B4F;
  --gold:        #C49F6A;
  --gold-light:  #E8CFA0;
  --gold-bright: #FFF1CC;

  --gold-grad: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  --gold-grad-shimmer: linear-gradient(115deg,
    var(--gold-deep), var(--gold-light), var(--gold), var(--gold-light), var(--gold-deep));
  --gold-grad-headline: linear-gradient(100deg,
    #AA8B4F 0%, #C49F6A 18%, #E8CFA0 32%, #FFF1CC 46%,
    #E8CFA0 60%, #C49F6A 78%, #AA8B4F 100%);

  /* Dourado com alfa (mesmos degraus da referência) */
  --gold-a04:  #C49F6A0a;
  --gold-a05:  #C49F6A0d;
  --gold-a06:  #C49F6A0f;
  --gold-a07:  #C49F6A12;
  --gold-a12:  #C49F6A1f;
  --gold-a08:  #C49F6A14;
  --gold-a10:  #C49F6A1a;
  --gold-a15:  #C49F6A26;
  --gold-a16:  #C49F6A29;
  --gold-a18:  #C49F6A2e;
  --gold-a20:  #C49F6A33;
  --gold-a25:  #C49F6A40;
  --gold-a28:  #C49F6A47;
  --gold-a30:  #C49F6A4d;
  --gold-a35:  #C49F6A59;
  --gold-a40:  #C49F6A66;
  --gold-a45:  #C49F6A73;
  --gold-a50:  #C49F6A80;
  --gold-a60:  #C49F6A99;
  --gold-light-a04: #E8CFA00a;
  --gold-light-a05: #E8CFA00d;
  --gold-light-a06: #E8CFA00f;
  --gold-light-a10: #E8CFA01a;
  --gold-light-a20: #E8CFA033;
  --gold-light-a40: #E8CFA066;

  /* Fundos */
  --bg-base:     #0a0a0a;
  --bg-elevated: #141210;
  --bg-deepest:  #050505;
  --bg-panel:    #0d0b08;

  /* Texto */
  --text-primary: #f5f2ea;
  --text-muted:   #a8a29a;
  --white-60: #f5f2ea9e;
  --white-50: #f5f2ea7a;
  --white-30: #f5f2ea57;
  --white-10: #C49F6A29;   /* bordas herdam o dourado, como na ref */
  --white-05: #ffffff0d;
  --white-03: #ffffff08;

  /* Semânticos */
  --success: #6fcf97;
  --danger:  #c0392b;
  --alert:   #dc2828;
  --whatsapp-a: #25d366;
  --whatsapp-b: #128c7e;

  /* Vidro */
  --glass-bg: #ffffff08;
  --glass-border: 1px solid #ffffff1a;
  --glass-blur: blur(16px);

  /* Raios */
  --radius:    2.5rem;
  --radius-sm: 1.5rem;
  --radius-xs: 1rem;
  --radius-pill: 9999px;

  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --tracking-tight: -.06em;

  /* Layout */
  --shell-max: 1320px;
  --nav-h: 78px;
  --banner-h: 0px;

  /* Botão (sobrescrevível por seção) */
  --btn-bg: var(--gold-grad);
  --btn-fg: #0a0a0a;
  --btn-pulse: none;
}

@media (max-width: 768px) { :root { --nav-h: 65px; } }
html[data-banner="on"] { --banner-h: 36px; }
@media (max-width: 768px) { html[data-banner="on"] { --banner-h: 32px; } }

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-heading);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
html[data-nav="on"] [id] { scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 16px); }

/* Grão fractal global — camada fixa sobre tudo */
body::before {
  content: "";
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.shell { width: 100%; position: relative; overflow: hidden; }
.container { max-width: var(--shell-max); margin: 0 auto; padding: 0 48px; }

/* ---------- 3. ATMOSFERA (o fundo vivo) ---------- */
/* 3.1 Névoa dourada fixa */
.atmosphere {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(60% 45% at 50% 36%, var(--gold-a06), transparent 60%),
    radial-gradient(70% 50% at 18% 20%, var(--gold-a06), transparent 60%),
    radial-gradient(60% 50% at 85% 62%, var(--gold-light-a05), transparent 60%),
    radial-gradient(110% 55% at 50% 0%, var(--gold-a07), transparent 62%),
    radial-gradient(140% 100% at 50% 42%, transparent 52%, #0009 100%);
}

/* 3.2 Campo de estrelas — duas camadas, parallax lento */
.starfield, .starfield2 {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background-repeat: repeat;
}
.starfield {
  background-image:
    radial-gradient(1px 1px at 25px 35px, #ffffffe6, transparent),
    radial-gradient(1px 1px at 80px 120px, #ffffff8c, transparent),
    radial-gradient(1.4px 1.4px at 150px 60px, #E8CFA0d9, transparent),
    radial-gradient(1px 1px at 200px 175px, #ffffff80, transparent),
    radial-gradient(1px 1px at 120px 215px, #ffffffb3, transparent),
    radial-gradient(1.4px 1.4px at 290px 95px, #E8CFA099, transparent),
    radial-gradient(1px 1px at 250px 275px, #ffffff99, transparent),
    radial-gradient(1px 1px at 330px 205px, #ffffff73, transparent);
  background-size: 360px 360px;
  animation: starTwinkle 5s ease-in-out infinite, starDrift 140s linear infinite;
}
.starfield2 {
  opacity: .85;
  background-image:
    radial-gradient(1.6px 1.6px at 60px 80px, #E8CFA0e6, transparent),
    radial-gradient(1px 1px at 180px 40px, #ffffffb3, transparent),
    radial-gradient(2px 2px at 240px 160px, #E8CFA0b3, transparent),
    radial-gradient(1px 1px at 100px 200px, #ffffff99, transparent),
    radial-gradient(1.4px 1.4px at 300px 240px, #ffffff8c, transparent);
  background-size: 520px 520px;
  animation: starTwinkle2 7s ease-in-out infinite, starDrift2 210s linear infinite;
}

/* 3.3 Partículas que sobem */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particles span {
  position: absolute; bottom: -12px;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  box-shadow: 0 0 6px var(--gold-a60);
  will-change: transform, opacity;
  animation-name: particleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 3.4 Esferas de brilho que derivam */
.glow-sphere { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.glow-orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); pointer-events: none; }

/* 3.5 Camada de deriva por seção (o "respiro" do fundo) */
.section-drift::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  background-size: 200% 200%;
  animation: bg-drift 25s ease-in-out infinite;
}
.section-drift--a::before {
  background-image:
    radial-gradient(500px 400px at 10% 20%, var(--gold-a06), transparent),
    radial-gradient(400px 300px at 90% 80%, var(--gold-light-a04), transparent);
}
.section-drift--b::before {
  background-image:
    radial-gradient(600px 400px at 80% 30%, var(--gold-a05), transparent),
    radial-gradient(400px 400px at 20% 70%, var(--gold-light-a04), transparent);
  animation-duration: 22s; animation-direction: reverse;
}
.section-drift--c::before {
  background-image:
    radial-gradient(600px 400px at 20% 30%, var(--gold-a08), transparent),
    radial-gradient(500px 500px at 80% 70%, var(--gold-light-a06), transparent),
    radial-gradient(400px 300px, var(--gold-a04), transparent);
  animation-duration: 20s;
}
.section-drift--d::before {
  background-image:
    radial-gradient(500px 500px at 50% 20%, var(--gold-a06), transparent),
    radial-gradient(300px 300px at 80% 80%, var(--gold-light-a04), transparent);
  animation-duration: 18s;
}

/* ---------- 4. TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
  line-height: 1.1;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--white-60); font-size: 1rem; line-height: 1.7; }

.accent { color: var(--gold); }
/* Atenção: usar sempre background-IMAGE aqui. O atalho `background`
   reseta background-clip e o texto vira um bloco chapado. */
.gold-text {
  background-image: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 18px var(--gold-a25));
}
.gold-text--headline { background-image: var(--gold-grad-headline); }

.eyebrow, .status-tag {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: var(--gold-light);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow--muted { color: var(--white-30); }

.tag {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  background: var(--gold-a10);
  border: 1px solid var(--gold-a20);
  border-radius: 6px;
  padding: 4px 12px;
}

/* ---------- 5. BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  letter-spacing: -.02em;
  padding: 1rem 2.5rem;
  border: none; border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  box-shadow: 0 0 30px var(--gold-a35);
  animation: var(--btn-pulse, btn-pulse 2s ease-in-out infinite);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.btn:hover {
  transform: scale(1.07);
  animation: none;
  box-shadow: 0 0 60px var(--gold-a35), 0 0 100px var(--gold-a35);
}
.btn--lg { padding: 1.25rem 3rem; font-size: 1.15rem; }
.btn--full { width: 100%; max-width: 480px; }
.btn--ghost {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--white-10);
  box-shadow: none; animation: none;
}
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-a10); transform: none; box-shadow: none; }

/* ---------- 6. SUPERFÍCIES ---------- */
.card {
  border-radius: var(--radius-xs);
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 20px;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: var(--gold-a40); }
.card--lift:hover { transform: translateY(-2px); }
.card--lg { border-radius: var(--radius-sm); padding: 28px; }

.panel {
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--gold-a15);
  padding: 56px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Borda que corre — o brilho vivo do card de preço e do vídeo */
.shimmer-border { position: relative; }
.shimmer-border::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  opacity: .7;
  pointer-events: none;
  background: var(--gold-grad-shimmer) 0 0 / 250% 100%;
  animation: borderShimmer 7s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Ícones em quadradinho */
.icon-check, .icon-x {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 6px;
  font-size: .65rem;
}
.icon-check { color: var(--gold); background: var(--gold-a10); border: 1px solid var(--gold-a30); }
.icon-x { color: var(--danger); background: #c0392b26; border: 1px solid #c0392b4d; width: 24px; height: 24px; font-size: .7rem; }
.icon-badge {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 10px; font-size: 1rem;
  color: var(--gold-light);
  background: var(--gold-light-a10);
  border: 1px solid var(--gold-light-a20);
}

/* Selos / pílulas */
.pill {
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: .75rem; font-weight: 600;
  color: var(--gold-light);
  background: var(--gold-a08);
  border: 1px solid var(--gold-a25);
}
.pill--solid { background: var(--gold-grad); color: #0a0a0a; border-color: transparent; }
.pill--dark { background: var(--bg-deepest); color: var(--text-primary); border-color: var(--gold-a25); }

/* ---------- 7. SEÇÕES ---------- */
section { padding: 120px 0; }
.section-rel { position: relative; overflow: hidden; }
.section-edge { border-top: 1px solid var(--gold-a18); background: var(--bg-base); position: relative; z-index: 2; }
.section-content { position: relative; z-index: 1; }

/* ---------- 8. COMPONENTES ---------- */
/* 8.1 Barra de contagem regressiva */
.countdown-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999999;
  padding: 10px; text-align: center;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: #fff; background: #dc2828d9;
}
.countdown-strip span { font-weight: 800; letter-spacing: .05em; }

/* 8.2 Navbar */
.navbar {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 999998;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  background: #0c0c0ced;
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  transition: background .3s, top .2s;
}
.nav-center {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
}
.nav-center a { padding: 8px 16px; border-radius: var(--radius-pill); color: var(--white-60); font-size: .9rem; transition: .2s; }
.nav-center a:hover { color: var(--text-primary); background: var(--white-05); }

/* 8.3 Hero */
.hero {
  display: flex; align-items: center; justify-content: center;
  min-height: 100dvh;
  padding: 120px 0 100px;
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; z-index: 2; position: relative; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; animation: label-float 4s ease-in-out infinite; }
.hero-sub { color: var(--white-60); max-width: 520px; margin-bottom: 32px; font-size: 1.1rem; line-height: 1.8; }
.hero-proof { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.hero-proof li { display: flex; align-items: center; gap: 10px; color: var(--white-60); font-size: .9rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 20px; }

/* 8.4 Moldura do vídeo (VSL) */
.video-frame {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--gold-a50);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 50px var(--gold-a16), inset 0 0 38px var(--gold-a05);
}
.video-frame::before { animation-duration: 6s; opacity: .75; border-radius: 20px; }
.video-inner { background: var(--bg-base); border: 1px solid var(--gold-a18); border-radius: 12px; overflow: hidden; }
.video-label {
  margin-top: 16px; text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--white-30);
}

/* 8.5 Marquee */
.marquee {
  padding: 16px 0; overflow: hidden;
  background: var(--bg-base);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-track span {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--white-30);
}

/* 8.6 Métricas */
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.metric-card { text-align: center; padding: 20px; border-radius: var(--radius-xs); background: var(--bg-base); border: 1px solid var(--gold-a20); }
.metric-card .number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: var(--tracking-tight); color: var(--gold); }
.metric-card .label { margin-top: 4px; font-size: .75rem; color: var(--text-muted); }

/* 8.7 Tabelas */
.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  border: var(--glass-border);
  overflow: hidden;
  text-align: left;
}
.table th, .table td { padding: 16px 20px; font-size: .9rem; border-bottom: 1px solid var(--white-10); }
.table thead th {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .15em;
  color: #0a0a0a; background: var(--gold-grad); padding: 20px;
}
.table tbody td { color: var(--white-60); }
.table td.old { color: var(--danger); font-weight: 600; }
.table td.new { color: var(--gold); font-weight: 600; }
.table .total-row { background: var(--gold-a10); }
.table .total-row td { font-weight: 700; border-bottom-color: var(--gold-a20); }
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 40px; }

/* 8.8 Faixa de destaque (economia / resultado) */
.highlight-band {
  border-radius: var(--radius-sm);
  background: var(--gold-grad);
  color: #0a0a0a;
  text-align: center;
  padding: 40px;
  box-shadow: 0 0 60px var(--gold-a35);
}
.highlight-band h3 { color: #0a0a0a; margin-bottom: 8px; }
.highlight-band p { color: #000000b8; }

/* 8.9 Passos numerados */
.steps { display: flex; flex-direction: column; max-width: 600px; margin: 0 auto 48px; }
.step { display: flex; gap: 24px; }
.step-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  font-family: var(--font-mono); font-size: .9rem; font-weight: 700;
  color: var(--gold); background: var(--gold-a10);
  border: 1px solid var(--gold-a30);
}
.step-connector { flex: 1; width: 1px; min-height: 20px; background: var(--white-10); }
.step-content { padding-bottom: 36px; }
.step-content h4 { color: var(--text-primary); margin-bottom: 4px; }
.step-content p { font-size: .9rem; }

/* 8.10 Letras gigantes vazadas (método) */
.letter-steps { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.letter-step { display: flex; align-items: flex-start; gap: 24px; padding-bottom: 36px; position: relative; }
.letter-step:last-child { padding-bottom: 0; }
.letter-step::before {
  content: ""; position: absolute; top: 74px; bottom: -2px; left: 33px;
  width: 1px; background: linear-gradient(var(--white-10), transparent);
}
.letter-step:last-child::before { display: none; }
.letter-glyph {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 8vw, 5rem); font-weight: 800; line-height: .8;
  letter-spacing: var(--tracking-tight);
  width: 68px; flex-shrink: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-a60);
}

/* 8.11 Card de preço */
.price-card {
  position: relative;
  margin-top: 32px;
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--gold-a40);
  box-shadow: 0 0 60px var(--gold-a10), inset 0 1px var(--gold-light-a10);
}
.price-crossed { font-size: 1.5rem; color: var(--white-50); text-decoration: line-through; margin-bottom: 8px; }
.price-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: 8px; }
.price-main { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; line-height: 1; letter-spacing: var(--tracking-tight); margin-bottom: 8px; }
.price-note { color: var(--white-30); margin-bottom: 20px; }
.daily-cost {
  display: inline-block; margin-bottom: 32px;
  padding: 12px 20px; border-radius: 12px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white-50);
  background: var(--gold-a08); border: 1px solid var(--gold-a20);
}
.daily-cost strong { color: #fff; font-weight: 700; }
.discount-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #fff; background: #dc28281f; border: 1px solid #dc28284d;
}
.discount-dot { width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--alert); animation: discountBlink 2s infinite; }
.anchor-phrase {
  max-width: 560px; margin: 28px auto 8px;
  padding: 18px 22px;
  border-radius: var(--radius-xs);
  font-size: .95rem; line-height: 1.6;
  color: var(--text-primary);
  background: var(--gold-a08); border: 1px solid var(--gold-a28);
}
.anchor-phrase strong { color: var(--gold-light); }
.price-bullets { display: flex; flex-direction: column; gap: 10px; max-width: 480px; margin: 0 auto 40px; text-align: left; }
.price-bullets li { display: flex; align-items: center; gap: 10px; color: var(--white-60); font-size: .9rem; }

/* 8.12 Selo de garantia */
.seal {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100px; height: 100px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 40px var(--gold-a35);
}
.seal .days { font-size: 2rem; font-weight: 800; line-height: 1; color: #0a0a0a; }
.seal .txt { font-family: var(--font-mono); font-size: 7px; text-transform: uppercase; letter-spacing: .2em; color: #000000a6; }
.quote { border-left: 3px solid var(--gold); padding-left: 20px; font-style: italic; color: var(--white-60); text-align: left; margin-bottom: 8px; }

/* 8.13 Mockup de navegador + telefone */
.browser {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-a30);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px #00000080;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--gold-a16); }
.browser-dot { width: 9px; height: 9px; flex-shrink: 0; border-radius: 50%; }
.phone-card {
  position: absolute; bottom: -22px; right: 0;
  width: 178px; padding: 13px 12px;
  background: var(--bg-panel);
  border: 1px solid var(--gold-a45);
  border-radius: 22px;
  box-shadow: 0 22px 50px #0009;
  animation: float 6s ease-in-out infinite;
}
.bubble-in { margin-bottom: 7px; padding: 8px 10px; font-size: 11px; color: var(--text-primary); background: #ffffff0f; border-radius: 12px 12px 12px 3px; }
.bubble-out { margin-left: 22px; padding: 8px 10px; font-size: 11px; font-weight: 600; color: #0a0a0a; background: var(--gold-grad); border-radius: 12px 12px 3px 12px; }
.live-dot { width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }

/* 8.14 Botão flutuante de WhatsApp */
.wa-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp-a) 0%, var(--whatsapp-b) 100%);
  box-shadow: 0 10px 28px #25d36673, 0 4px 10px #00000040;
  transition: transform .25s, box-shadow .25s;
}
.wa-fab::before { content: ""; position: absolute; inset: -4px; z-index: -1; border-radius: 50%; background: #25d3668c; animation: waPulse 2.2s ease-out infinite; }
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 14px 34px #25d36699, 0 6px 14px #0000004d; }

/* ---------- 9. ANIMAÇÕES ---------- */
@keyframes label-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes discountBlink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bg-drift {
  0%   { background-position: 0 0; }
  25%  { background-position: 100% 0; }
  50%  { background-position: 50% 100%; }
  75%  { background-position: 0 100%; }
  100% { background-position: 0 0; }
}
@keyframes glow-move {
  0%   { transform: translate(0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.1); }
  66%  { transform: translate(-20px, 15px) scale(.95); }
  100% { transform: translate(0) scale(1); }
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  12%  { opacity: .85; }
  85%  { opacity: .45; }
  100% { opacity: 0; transform: translateY(-105vh) scale(.55); }
}
@keyframes starTwinkle  { 0%, 100% { opacity: 1; }   50% { opacity: .72; } }
@keyframes starTwinkle2 { 0%, 100% { opacity: .85; } 50% { opacity: .5; } }
@keyframes starDrift  { 0% { background-position: 0 0; } 100% { background-position: 0 -360px; } }
@keyframes starDrift2 { 0% { background-position: 0 0; } 100% { background-position: 0 -520px; } }
@keyframes borderShimmer { 0% { background-position: 0 0; } 100% { background-position: -250% 0; } }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold-a35); transform: scale(1); }
  50% { box-shadow: 0 0 50px var(--gold-a35), 0 0 80px var(--gold-a25), 0 0 120px var(--gold-a10); transform: scale(1.03); }
}
@keyframes waPulse { 0% { opacity: .55; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }

/* ---------- 10. RESPONSIVO (mobile é a vista canônica) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-grid { gap: 32px; }
}

@media (max-width: 900px) {
  .hero { align-items: flex-start; min-height: auto; padding: 96px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  h3 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  h4 { font-size: clamp(1rem, 4vw, 1.2rem); }

  .hero { min-height: auto; padding: 90px 0 60px; }
  .hero h1 { text-align: center; margin-bottom: 16px; font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub { text-align: center; margin-bottom: 24px; font-size: .95rem; line-height: 1.7; }
  .hero-label { justify-content: center; width: 100%; margin-bottom: 16px; }
  .hero-proof { gap: 10px; margin-bottom: 28px; }
  .hero-proof li { font-size: .8rem; }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 12px; }

  .tag { padding: 3px 10px; font-size: 9px; }
  .btn { padding: 1rem 2rem; font-size: .9rem; }
  .btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

  .marquee { padding: 12px 0; }
  .marquee-track { gap: 24px; }
  .marquee-track span { letter-spacing: .15em; font-size: 9px; }

  .panel { border-radius: var(--radius-xs); padding: 32px 20px; }
  .panel h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .card { gap: 12px; padding: 16px; }
  .card p { font-size: .85rem; }
  .card--lg { padding: 20px; }

  .metric-grid { grid-template-columns: 1fr; gap: 8px; }
  .metric-card { padding: 16px; }
  .metric-card .number { font-size: 1.3rem; }

  .table th, .table td { padding: 10px 12px; font-size: .75rem; word-break: break-word; }
  .table th:first-child, .table td:first-child { width: 28%; }
  .highlight-band { border-radius: var(--radius-xs); padding: 28px 20px; }
  .highlight-band h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }

  .step { gap: 16px; }
  .step-number { width: 40px; height: 40px; font-size: .8rem; }
  .step-content { padding-bottom: 24px; }
  .step-content h4 { font-size: .95rem; }
  .step-content p { font-size: .85rem; }

  .letter-step { gap: 16px; padding-bottom: 28px; }
  .letter-step::before { top: 60px; left: 25px; }
  .letter-glyph { width: 52px; }

  .price-card { padding: 28px 18px; }
  .price-main { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .price-crossed { font-size: 1.3rem; }
  .discount-badge { padding: 6px 14px; font-size: 9px; }
  .daily-cost { padding: 10px 16px; font-size: 10px; }
  .price-bullets li { font-size: .85rem; }

  .navbar { padding: 14px 20px; }
  .countdown-strip { padding: 8px 12px; font-size: 9px; letter-spacing: .1em; }
}

@media (max-width: 640px) {
  .wa-fab { bottom: 14px; right: 14px; width: 54px; height: 54px; }
}

@media (max-width: 560px) {
  .phone-card { width: 200px; right: 50%; bottom: -64px; transform: translateX(50%); animation: none; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-sub { font-size: .88rem; }
  .price-main { font-size: 2.2rem; }
  .table th, .table td { padding: 8px; font-size: .7rem; }
  .table th:first-child, .table td:first-child { width: 32%; }
}

/* ---------- 11. MOVIMENTO REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
