/* ==========================================================================
   NEXTBOOT AI — Página de vendas
   Paleta inspirada na logo: preto cósmico + azul elétrico + prata cromado
   ========================================================================== */

:root {
  /* Cores base */
  --bg: #03060f;
  --bg-2: #060c1a;
  --bg-3: #0a1224;
  --surface: #0e1729;
  --surface-2: #131e36;
  --border: #1c2a47;
  --border-strong: #2a3c66;

  /* Texto */
  --text: #e8edf3;
  --text-muted: #97a3b6;
  --text-dim: #6c7891;

  /* Acentos — azul elétrico do logo */
  --blue: #00b4ff;
  --blue-2: #5cd6ff;
  --blue-deep: #0080ff;
  --blue-glow: rgba(0, 180, 255, 0.4);

  /* Prata cromado */
  --silver: #c4ccd6;
  --silver-2: #e8edf3;
  --silver-grad: linear-gradient(180deg, #ffffff 0%, #c0c8d0 50%, #6e7986 100%);

  /* CTA verde (do roteiro: "botão verde abaixo") */
  --cta: #00d68f;
  --cta-2: #00b87a;
  --cta-glow: rgba(0, 214, 143, 0.5);

  /* Alertas */
  --danger: #ff3b5c;
  --danger-2: #c4172e;
  --warn: #ffb020;

  /* Acento PREMIUM (usado apenas no upsell .upsell-page) */
  --gold: #c9a14a;
  --gold-2: #e8c873;
  --gold-deep: #8a6a26;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-grad: linear-gradient(135deg, #c9a14a 0%, #f1d57e 50%, #c9a14a 100%);

  /* Tipografia */
  --font-display: 'Orbitron', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-num: 'Space Grotesk', monospace;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Sombras */
  --shadow-blue: 0 0 0 1px rgba(0, 180, 255, 0.18), 0 12px 40px -12px rgba(0, 180, 255, 0.35);
  --shadow-cta: 0 12px 32px -8px rgba(0, 214, 143, 0.55), 0 0 0 1px rgba(0, 214, 143, 0.4);
  --shadow-card: 0 8px 32px -8px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--blue-2); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; line-height: 1.15; font-weight: 700; }

/* Acessibilidade */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cta); color: #001a0e; padding: 12px 18px;
  font-weight: 700; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Helpers */
.grad {
  background: linear-gradient(120deg, var(--blue-2) 0%, var(--blue) 50%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.silver {
  background: var(--silver-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   TOPO — Alert bar + topbar
   ========================================================================== */

.alert-bar {
  background: linear-gradient(90deg, var(--danger-2), var(--danger));
  color: #fff; text-align: center; padding: 8px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  position: relative; z-index: 50;
}
.alert-bar strong { font-weight: 800; }
.alert-bar__num { background: rgba(0,0,0,0.25); padding: 2px 8px; border-radius: 4px; font-variant-numeric: tabular-nums; }
.alert-bar__pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; margin-right: 8px; vertical-align: middle;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(3, 6, 15, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  height: 60px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 14px var(--blue-glow));
  display: block;
}
.brand__logo--crop {
  display: inline-block;
  width: 44px; height: 44px;
  background-image: url('../images/brand-bg.jpg');
  background-repeat: no-repeat;
  background-size: 220px auto;
  background-position: center 32%;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(0, 180, 255, 0.12), 0 0 18px rgba(0, 180, 255, 0.35);
}
.brand__text {
  font-family: var(--font-display); font-weight: 900; font-size: 19px;
  letter-spacing: 0.06em; line-height: 1;
  display: flex; flex-direction: column; gap: 2px;
}
.brand__text span {
  background: var(--silver-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand__text em { font-style: normal; font-size: 11px; color: var(--blue-2); letter-spacing: 0.18em; }

.topbar__timer {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  padding: 8px 14px; border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.1) inset;
}
.topbar__timer-label { font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; }
.topbar__timer-value {
  font-family: var(--font-num); font-weight: 700; font-size: 18px;
  color: var(--blue-2); font-variant-numeric: tabular-nums;
  text-shadow: 0 0 10px var(--blue-glow);
}

@media (max-width: 600px) {
  .topbar__timer-label { display: none; }
  .topbar__inner { padding: 12px 16px; }
  .brand__text { font-size: 16px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

/* Background cosmico fixo atras de toda a pagina (planeta + estrelas) */
.page-bg {
  position: fixed; inset: 0;
  background: url('../images/brand-bg.jpg') no-repeat center 75% / cover, var(--bg);
  z-index: -1;
  pointer-events: none;
  background-attachment: fixed;
}
.page-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,6,15,0.85) 0%, rgba(3,6,15,0.55) 30%, rgba(3,6,15,0.30) 70%, rgba(3,6,15,0.55) 100%);
  pointer-events: none;
}

/* As secoes pares ficam translucidas pra deixar o bg fixo passar */
.section:nth-child(even) {
  background: rgba(6, 12, 26, 0.78);
  backdrop-filter: blur(2px);
}
.section:nth-child(odd) {
  background: rgba(3, 6, 15, 0.72);
  backdrop-filter: blur(2px);
}

.hero {
  position: relative; padding: 60px 0 80px;
  background: rgba(3, 6, 15, 0.35);
  overflow: hidden;
  min-height: 720px;
}
.hero > * { position: relative; z-index: 1; }
.hero__stars {
  display: none;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: .75; } }
.hero__glow {
  position: absolute; top: 78%; left: 50%; transform: translate(-50%, 0);
  width: 1200px; height: 220px;
  background: radial-gradient(ellipse, rgba(0, 180, 255, 0.35) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}

.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(0, 180, 255, 0.05));
  border: 1px solid rgba(0, 180, 255, 0.3);
  color: var(--blue-2); padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 0 8px var(--cta);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 900;
  margin-bottom: 16px; max-width: 920px; letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(16px, 2.5vw, 19px); color: var(--text-muted);
  max-width: 660px; margin-bottom: 36px;
}
.hero__sub strong { color: var(--blue-2); }

/* VSL */
.vsl {
  width: 100%; max-width: 380px; margin: 0 auto 32px;
}
.vsl__frame {
  position: relative; aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-blue),
    0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.vsl__frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(0, 180, 255, 0.08) 50%, transparent 70%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.vsl__video { width: 100%; height: 100%; object-fit: cover; background: #000; position: relative; }

/* Overlay tap-to-play (re-entrada quando autoplay é bloqueado pelo browser) */
.nb-resume-overlay {
  position: absolute; inset: 0; z-index: 30;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  background: radial-gradient(ellipse at center, rgba(3, 6, 15, 0.62), rgba(3, 6, 15, 0.86));
  backdrop-filter: blur(2px);
  border: 0; cursor: pointer;
  color: #fff; font: 600 14px/1.3 var(--font-body, 'Inter', system-ui, sans-serif);
  text-align: center;
  animation: nbResumeFadeIn 240ms ease-out both;
  -webkit-tap-highlight-color: transparent;
}
.nb-resume-overlay__btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cta, #00d68f), #00a26b);
  color: #03060f; display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 6px rgba(0, 214, 143, 0.18),
    0 0 0 14px rgba(0, 214, 143, 0.08),
    0 14px 32px rgba(0, 214, 143, 0.45);
  animation: nbResumePulse 1.6s ease-in-out infinite;
}
.nb-resume-overlay__btn svg { transform: translateX(2px); } /* centra o ícone de play visualmente */
.nb-resume-overlay__lbl {
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.nb-resume-overlay--gone { opacity: 0; transition: opacity 280ms ease; pointer-events: none; }
@keyframes nbResumeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes nbResumePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.vsl__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: radial-gradient(ellipse at center, var(--bg-3), var(--bg));
  z-index: 2; cursor: pointer;
}
.vsl__placeholder-text {
  font-size: 14px; color: var(--text-muted); text-align: center;
  font-weight: 500;
}
.vsl__play {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 8px rgba(0, 180, 255, 0.15),
    0 0 0 16px rgba(0, 180, 255, 0.08),
    0 0 30px var(--blue-glow);
  transition: transform .2s;
}
.vsl__play:hover { transform: scale(1.08); }
.vsl__play svg { margin-left: 4px; }

.vsl__caption {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 14px; font-size: 13px; color: var(--text-muted);
}
/* Selo AO VIVO — design clean: dot pulsante + texto contido */
.vsl__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 64, 80, 0.12);
  border: 1px solid rgba(255, 64, 80, 0.35);
}
.vsl__live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #ff4050;
  box-shadow: 0 0 0 0 rgba(255, 64, 80, 0.7);
  animation: vslLivePulse 1.6s ease-in-out infinite;
}
@keyframes vslLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 64, 80, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 64, 80, 0); }
}

/* CTA principal */
.cta {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em;
  text-align: center; transition: all .2s ease;
  cursor: pointer; user-select: none; text-decoration: none;
  border-radius: 14px; padding: 18px 32px;
  position: relative; overflow: hidden;
}
.cta__sub {
  font-family: var(--font-body); font-size: 13px; font-weight: 500; opacity: .85;
  letter-spacing: 0;
}
.cta--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(0, 180, 255, 0.65), 0 0 0 1px rgba(0, 180, 255, 0.4);
}
.cta--primary:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 18px 40px -10px rgba(0, 180, 255, 0.8); }
.cta--success {
  background: linear-gradient(135deg, var(--cta), var(--cta-2));
  color: #001a0e; font-weight: 800; font-size: 17px;
  box-shadow: var(--shadow-cta);
}
.cta--success:hover { transform: translateY(-2px); opacity: 1; }
.cta--ghost {
  background: transparent; border: 1px solid var(--border-strong);
  color: var(--text); padding: 10px 18px; font-size: 14px;
}
.cta--lg { padding: 20px 36px; font-size: 16px; }
.cta--xl { padding: 22px 40px; font-size: 19px; min-width: min(440px, 100%); }

.cta.pulse::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--cta-glow);
  animation: pulseRing 2s ease-out infinite; pointer-events: none;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.6); }
  70% { box-shadow: 0 0 0 22px rgba(0, 214, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 214, 143, 0); }
}

/* Selos hero */
.hero__seals {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center;
  margin-top: 22px; font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.hero__seals li { display: flex; align-items: center; gap: 6px; }
.seal-ico { font-size: 16px; }

/* ==========================================================================
   SEÇÕES
   ========================================================================== */

.section { padding: 80px 0; position: relative; }
.section__title {
  font-size: clamp(26px, 4vw, 38px); text-align: center;
  margin-bottom: 14px; max-width: 880px; margin-left: auto; margin-right: auto;
}
.section__lead {
  text-align: center; color: var(--text-muted);
  max-width: 640px; margin: 0 auto 50px; font-size: 17px;
}

/* Pain */
.pain__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.pain__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  transition: transform .25s, border-color .25s;
}
.pain__card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pain__ico { font-size: 36px; margin-bottom: 14px; }
.pain__card h3 { font-size: 17px; margin-bottom: 10px; color: var(--silver-2); }
.pain__card p { color: var(--text-muted); font-size: 14.5px; }

/* How */
.how__steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; margin-top: 40px;
}
.how__step {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  overflow: hidden;
}
.how__step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.how__num {
  font-family: var(--font-display); font-weight: 900; font-size: 56px;
  background: var(--silver-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.2);
}
.how__step h3 { font-size: 19px; margin-bottom: 10px; color: var(--blue-2); }
.how__step p { color: var(--text-muted); font-size: 15px; }

/* Testimonials */
.testi__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.testi__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px; position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.testi__card--featured {
  border-color: rgba(0, 214, 143, 0.4);
  background: linear-gradient(180deg, rgba(0, 214, 143, 0.05), var(--surface));
  box-shadow: 0 0 0 1px rgba(0, 214, 143, 0.2), 0 14px 40px -16px rgba(0, 214, 143, 0.4);
}
.testi__head { display: flex; align-items: center; gap: 12px; }
.testi__head > div:nth-child(2) { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.testi__head strong { font-size: 15px; color: var(--silver-2); }
.testi__role { font-size: 12px; color: var(--text-dim); }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display); font-size: 18px;
}
.testi__stars { color: var(--warn); font-size: 14px; letter-spacing: .05em; }
.testi__card p { color: var(--text); font-size: 14.5px; line-height: 1.6; flex: 1; }
.testi__tag {
  display: inline-flex; align-items: center; align-self: flex-start;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.3);
  color: var(--blue-2);
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.testi__tag--gold {
  background: rgba(0, 214, 143, 0.12);
  border-color: rgba(0, 214, 143, 0.45);
  color: var(--cta);
}

/* About */
.about__inner {
  display: grid; grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 60px; align-items: center;
}
.about__photo {
  position: relative; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border-strong);
  box-shadow: 0 0 0 8px rgba(0, 180, 255, 0.08), 0 0 60px var(--blue-glow);
  overflow: hidden;
}
.about__photo-frame {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px dashed var(--blue);
  animation: rotate 22s linear infinite; opacity: .4;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.about__img { width: 100%; height: 100%; object-fit: cover; }
.about__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-3));
  opacity: 0.85;
}
.about__badge {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--bg);
  padding: 4px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
}
.about__eyebrow {
  font-size: 13px; color: var(--blue-2); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.about__title { font-size: clamp(32px, 4vw, 44px); margin: 8px 0 4px; }
.about__role {
  font-family: var(--font-display); color: var(--silver);
  font-size: 15px; letter-spacing: 0.04em; margin-bottom: 18px;
}
.about__copy p { color: var(--text-muted); margin-bottom: 14px; }
.about__creds {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.about__creds li {
  font-size: 14px; font-weight: 600; color: var(--silver-2);
  display: flex; align-items: center; gap: 8px;
}
.about__creds li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

@media (max-width: 720px) {
  .about__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .about__photo { width: 220px; margin: 0 auto; }
  .about__creds { justify-content: center; }
}

/* Anchor */
.anchor__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; margin: 40px 0 36px;
}
.anchor__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
}
.anchor__price {
  font-family: var(--font-display); font-size: 38px; font-weight: 900;
  color: var(--text-dim); text-decoration: line-through;
  margin-bottom: 8px;
}
.anchor__what { font-size: 14px; color: var(--text-muted); }
.anchor__bridge {
  text-align: center; max-width: 600px; margin: 0 auto;
  padding: 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.05), transparent);
  border: 1px solid var(--border);
}
.anchor__bridge p { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.anchor__bridge p:last-child { margin-bottom: 0; font-size: 19px; color: var(--blue-2); }
.anchor__bridge s { color: var(--text-dim); }

/* Offer card */
.offer { background: linear-gradient(180deg, var(--bg-2), var(--bg)); padding: 80px 0; }
.offer__card {
  max-width: 560px; margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-blue), 0 40px 100px -20px rgba(0, 180, 255, 0.35);
  position: relative;
}
.offer__card::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), transparent 30%, transparent 70%, var(--blue));
  z-index: -1; opacity: .5;
  animation: rotateBg 6s linear infinite;
}
@keyframes rotateBg { to { transform: rotate(360deg); } }

.offer__head { text-align: center; margin-bottom: 24px; }
.offer__badge {
  display: inline-block; background: var(--danger);
  color: #fff; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.offer__title { font-size: 24px; }

.offer__list {
  margin: 24px 0; display: flex; flex-direction: column; gap: 10px;
}
.offer__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.offer__list li:last-child { border-bottom: none; }
.offer__list span {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0, 214, 143, 0.15); color: var(--cta);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px; font-weight: 800; margin-top: 2px;
}

.offer__price { text-align: center; margin: 30px 0 24px; }
.offer__from { font-size: 14px; color: var(--text-dim); margin-bottom: 4px; }
.offer__from s { color: var(--text-muted); }
.offer__by { font-size: 12px; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.offer__big {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  font-family: var(--font-display);
}
.offer__currency {
  font-size: 24px; font-weight: 700; color: var(--silver);
}
.offer__num {
  font-size: 56px; font-weight: 900;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px var(--blue-glow);
  line-height: 1;
}
.offer__num sup { font-size: 22px; vertical-align: super; }
.offer__cash { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.offer__cash strong { color: var(--blue-2); font-weight: 700; }

.offer__pay {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 18px; font-size: 12px; color: var(--text-dim);
}
.offer__warn {
  margin-top: 22px; padding: 14px 18px;
  background: rgba(255, 59, 92, 0.08);
  border: 1px solid rgba(255, 59, 92, 0.25);
  border-radius: 10px; font-size: 13.5px; color: var(--text-muted);
}
.offer__warn strong { color: var(--danger); }

.cta--xl { width: 100%; }

/* Guarantee */
.guarantee { padding: 80px 0; }
.guarantee__inner {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 50px; align-items: center; max-width: 900px; margin: 0 auto;
}
.guarantee__seal {
  position: relative; aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(0, 214, 143, 0.12), 0 0 40px rgba(0, 214, 143, 0.4);
  flex-direction: column;
}
.guarantee__seal::before {
  content: ''; position: absolute; inset: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.25); border-radius: 50%;
  animation: rotate 18s linear infinite reverse;
}
.guarantee__seal-inner {
  display: flex; flex-direction: column; align-items: center;
  color: #001a0e;
}
.guarantee__seal-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1;
}
.guarantee__seal-txt {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em;
}
.guarantee__seal-label {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  background: var(--bg); border: 1px solid var(--cta);
  color: var(--cta); padding: 4px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
}
.guarantee__copy h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; color: var(--cta); }
.guarantee__copy p { color: var(--text); margin-bottom: 12px; }
.guarantee__copy strong { color: var(--silver-2); }
.guarantee__sign {
  font-style: italic; color: var(--text-muted);
  border-left: 3px solid var(--cta); padding-left: 14px;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { width: 180px; margin: 0 auto; }
  .guarantee__sign { border-left: 0; padding-left: 0; }
}

/* FAQ */
.accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.accordion__item[open] { border-color: var(--blue); }
.accordion__item summary {
  padding: 18px 22px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; user-select: none;
  font-family: var(--font-body); font-size: 16px;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: '+'; font-size: 24px; color: var(--blue-2); font-weight: 300;
  transition: transform .2s;
}
.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__item p { padding: 0 22px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.accordion__item strong { color: var(--blue-2); }

/* Final CTA */
.final-cta { background: linear-gradient(180deg, var(--bg), var(--bg-2)); padding: 80px 0 100px; }
.final-cta__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.final-cta__lead { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }

.paths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 720px; margin: 0 auto 40px;
}
.paths__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: left;
}
.paths__item h3 {
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.paths__item--bad { border-color: rgba(255, 59, 92, 0.35); }
.paths__item--bad h3 { color: var(--danger); }
.paths__item--good {
  border-color: rgba(0, 214, 143, 0.5);
  background: linear-gradient(180deg, rgba(0, 214, 143, 0.06), var(--surface));
}
.paths__item--good h3 { color: var(--cta); }

@media (max-width: 600px) { .paths { grid-template-columns: 1fr; } }

/* Decline link (upsell — "Não, obrigado") */
.decline-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
  transition: opacity .2s ease;
}
.decline-link:hover { opacity: 1; color: var(--text-muted); }

/* Footer */
.footer { background: #02050d; padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 2fr; gap: 40px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--text-muted); font-size: 14px; }
.footer__nav a:hover { color: var(--blue-2); }
.footer__legal p { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.footer__disclaimer { line-height: 1.6; margin-top: 14px !important; }

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: linear-gradient(135deg, var(--cta), var(--cta-2));
  color: #001a0e; font-weight: 800; font-family: var(--font-display);
  padding: 14px 20px; border-radius: 14px;
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--shadow-cta);
  z-index: 30; text-decoration: none;
  animation: slideUp .4s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sticky-cta__price {
  background: rgba(0, 0, 0, 0.18); padding: 6px 12px; border-radius: 8px;
  font-size: 13px; white-space: nowrap;
}
.sticky-cta.is-visible { display: flex; }

@media (min-width: 900px) { .sticky-cta { display: none !important; } }

/* Cookie bar */
.cookie-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  z-index: 60; max-width: 880px; margin: 0 auto;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}
.cookie-bar p { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 240px; }
@media (max-width: 480px) { .cookie-bar { flex-direction: column; align-items: stretch; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Demo banner (controlado por NEXTBOOT_CONFIG.isDemoMode) */
.demo-banner {
  background: var(--warn); color: var(--bg);
  text-align: center; padding: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   VSL GATE — modal full-screen bloqueante
   ========================================================================== */

body[data-gate-active="true"] {
  overflow: hidden;
  height: 100vh;
}

.page[data-gate-blur="true"] {
  filter: blur(8px) brightness(0.45) saturate(0.7);
  pointer-events: none;
  user-select: none;
  transition: filter 600ms ease-out;
}

.gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(180deg, rgba(3,6,15,0.55) 0%, rgba(3,6,15,0.35) 45%, rgba(3,6,15,0.75) 100%),
    url('../images/brand-bg.jpg') no-repeat center bottom / cover,
    rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px 20px;
  overflow-y: auto;
  animation: gateIn 500ms ease-out;
  -webkit-overflow-scrolling: touch;
}
@keyframes gateIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.gate[hidden] { display: none !important; }

.gate__stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 14% 22%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 32% 48%, #aaceff, transparent),
    radial-gradient(1px 1px at 58% 18%, #fff, transparent),
    radial-gradient(1px 1px at 78% 62%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 88% 28%, #b8d8ff, transparent),
    radial-gradient(1px 1px at 22% 82%, #fff, transparent),
    radial-gradient(1px 1px at 64% 88%, #fff, transparent);
  opacity: .55;
  animation: twinkle 5s ease-in-out infinite alternate;
}
.gate__radar {
  position: absolute; left: 50%; top: 30%;
  width: 1400px; height: 1400px; transform: translate(-50%, -50%);
  pointer-events: none; opacity: .14;
  background:
    radial-gradient(circle, transparent 30%, rgba(0,180,255,0.22) 31%, transparent 32%),
    radial-gradient(circle, transparent 45%, rgba(0,180,255,0.18) 46%, transparent 47%),
    radial-gradient(circle, transparent 60%, rgba(0,180,255,0.12) 61%, transparent 62%);
}

.gate__modal {
  position: relative; z-index: 2;
  width: 100%; max-width: 920px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  animation: gateModalIn 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 980px) {
  .gate { align-items: center; }
  .gate__modal {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 380px);
    grid-template-areas:
      "header   player"
      "title    player"
      "watching player"
      "lockmsg  player"
      "cta      player";
    gap: 16px 56px;
    align-items: center;
    text-align: left;
  }
  .gate__header   { grid-area: header;   align-self: end; }
  .gate__title    { grid-area: title;    margin: 0; }
  .gate__watching { grid-area: watching; }
  .gate__lockMsg  { grid-area: lockmsg;  justify-self: start; }
  .gate__cta      { grid-area: cta;      align-self: start; align-items: stretch; max-width: 460px; }
  .gate__player   { grid-area: player;   margin: 0; }
}
@keyframes gateModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.gate__modal.is-shaking { animation: gateShake 350ms ease-in-out; }
@keyframes gateShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}

.gate__header {
  display: flex; align-items: center; gap: 14px;
}
.gate__logo {
  height: 140px; width: auto;
  filter: drop-shadow(0 0 24px var(--blue-glow));
  display: block;
}
.gate__live {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.4);
  color: var(--danger);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
}
.gate__live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--danger);
  box-shadow: 0 0 10px var(--danger);
  animation: pulse 1.4s ease-in-out infinite;
}

.gate__title {
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 900; letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 800px; margin-top: 4px;
}

.gate__watching {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.gate__watching-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 0 10px var(--cta);
  animation: pulse 1.6s ease-in-out infinite;
}
.gate__watching strong { color: var(--blue-2); font-weight: 700; }

.gate__player {
  position: relative;
  width: 100%;
  max-width: min(380px, calc((100vh - 240px) * 9 / 16));
  aspect-ratio: 9/16;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  background-image:
    linear-gradient(180deg, var(--surface), var(--bg)),
    linear-gradient(135deg, #c4ccd6 0%, #00b4ff 25%, #2a3340 50%, #00b4ff 75%, #c4ccd6 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    var(--shadow-blue),
    0 30px 100px -20px rgba(0, 0, 0, 0.85);
}
.gate__player::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(0,180,255,0.10) 50%, transparent 70%);
  animation: shine 4s ease-in-out infinite; pointer-events: none; z-index: 1;
}
.gate__video { width: 100%; height: 100%; object-fit: cover; background: #000; display: block; }

.gate__playBtn {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: radial-gradient(circle at center, rgba(0, 180, 255, 0.18), transparent 60%);
  color: #fff; cursor: pointer; transition: opacity .3s;
}
.gate__playBtn svg {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 50%; padding: 16px;
  box-shadow:
    0 0 0 8px rgba(0, 180, 255, 0.18),
    0 0 0 18px rgba(0, 180, 255, 0.08),
    0 0 36px var(--blue-glow);
  animation: playPulse 2.4s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.gate__playBtn svg path { fill: #fff; }
.gate__playLabel {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--silver-2);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.gate__playBtn[hidden] { display: none; }

/* Placeholder visível enquanto o embed Vturb não foi colado em #vturbContainer.
   Some automaticamente quando o iframe Vturb é injetado (ver regra abaixo). */
.gate__placeholder {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: radial-gradient(circle at center, rgba(0, 180, 255, 0.10), rgba(3, 6, 15, 0.92) 70%);
  color: #fff; pointer-events: none;
}
.gate__placeholder svg {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 50%; padding: 16px;
  box-shadow: 0 0 0 8px rgba(0, 180, 255, 0.18), 0 0 36px var(--blue-glow);
  opacity: 0.55;
}
.gate__placeholder-text {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--silver-2);
  text-align: center; padding: 0 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.gate__placeholder-text small { display: block; margin-top: 6px; opacity: 0.7; font-size: 10px; letter-spacing: 0.05em; }

/* Spinner circular pra placeholders de vídeo */
.gate__loader {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid rgba(0, 180, 255, 0.18);
  border-top-color: var(--blue); border-right-color: var(--blue);
  animation: nb-spin 0.9s linear infinite;
}
@keyframes nb-spin { to { transform: rotate(360deg); } }
/* O placeholder fica visível até o JS detectar postMessage do Vturb e escondê-lo. */

/* Garante que [hidden] esconde mesmo com display: inline-flex / flex em regras anteriores */
.gate__lockMsg[hidden], .gate__cta[hidden], .gate__tooltip[hidden], .miniVsl[hidden], .cookie-bar[hidden] { display: none !important; }

.gate__lockMsg {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  background: rgba(14, 23, 41, 0.7);
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--border);
}

.gate__cta {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: 100%; max-width: 480px;
  animation: gateCtaIn 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes gateCtaIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.gate__cta[hidden] { display: none; }
.gate__cta .cta { width: 100%; }

/* Reaction bubbles flutuantes */
.gate__bubbles {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  pointer-events: none; z-index: 4;
}
.bubble {
  background: rgba(14, 23, 41, 0.92);
  border: 1px solid rgba(0, 180, 255, 0.25);
  color: var(--text);
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.7);
  animation: bubbleIn 4s ease-in-out forwards;
  max-width: 280px;
  display: flex; align-items: center; gap: 8px;
}
.bubble__ico { font-size: 14px; }
.bubble__name { color: var(--silver-2); font-weight: 700; }
@keyframes bubbleIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.85); }
  10%, 80% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

.gate__tooltip {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: var(--danger); color: #fff;
  padding: 10px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  z-index: 10000;
  box-shadow: 0 10px 30px -8px rgba(255, 59, 92, 0.6);
  animation: tooltipPop 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tooltipPop {
  from { opacity: 0; transform: translate(-50%, 14px) scale(0.85); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@media (max-width: 720px) {
  .gate { padding: 12px; }
  .gate__title { font-size: 22px; }
  .gate__lockMsg { font-size: 12px; padding: 6px 12px; }
  .gate__playBtn svg { padding: 10px; }
  .gate__bubbles { left: 8px; right: 8px; }
  .bubble { font-size: 12px; max-width: 240px; }
}

/* Mini VSL widget (após dismiss) */
.miniVsl {
  position: fixed; right: 20px; bottom: 90px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 10px 18px 10px 14px;
  box-shadow: var(--shadow-blue), 0 12px 40px -10px rgba(0, 0, 0, 0.7);
  cursor: pointer; user-select: none;
  animation: miniIn 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes miniIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to { opacity: 1; transform: none; }
}
.miniVsl[hidden] { display: none; }
.miniVsl__label {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--blue-2); letter-spacing: 0.04em;
}
.miniVsl__close {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--danger); color: #fff;
  font-size: 14px; line-height: 1;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 600px) {
  .miniVsl { right: 12px; bottom: 86px; padding: 8px 14px 8px 12px; }
  .miniVsl__label { font-size: 11px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gate__stars, .gate__live-dot, .gate__watching-dot,
  .gate__playBtn svg, .alert-bar__pulse, .vsl__live,
  .cta.pulse::after, .hero__badge-dot { animation: none !important; }
  .reveal { transition: none !important; }
}

/* ==========================================================================
   MOBILE — 90% dos leads. Tudo redondo aqui.
   ========================================================================== */

/* Conter elementos decorativos que estouravam viewport */
.gate__radar, .hero__glow, .hero__stars {
  max-width: 100vw; left: 0 !important; right: 0 !important; transform: none !important;
}

@media (max-width: 768px) {

  /* Topbar compacta */
  .alert-bar { font-size: 12px; padding: 6px 10px; line-height: 1.3; }
  .alert-bar__num { padding: 1px 6px; font-size: 11px; }
  .topbar__inner { padding: 10px 14px; }
  .brand__logo { height: 44px; width: auto; }
  .topbar__timer { padding: 6px 10px; }
  .topbar__timer-value { font-size: 14px; }

  /* Container padding reduzido */
  .container { padding: 0 16px; }

  /* GATE — cabe na viewport sem cortar */
  .gate { padding: 16px 12px; align-items: flex-start; }
  .gate__radar { display: none; } /* remove decoração que estourava */
  .gate__modal { gap: 12px; }
  .gate__header { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .gate__logo { height: 90px; width: auto; }
  .gate__live { font-size: 10px; padding: 5px 10px; }
  .gate__title {
    font-size: 18px; line-height: 1.2;
    margin-top: 0;
  }
  .gate__title br { display: none; }
  .gate__watching { font-size: 12px; }
  .gate__watching strong { font-size: 14px; }
  .gate__player { max-width: 88vw; }
  .gate__playBtn svg { padding: 8px; width: 44px; height: 44px; }
  .gate__playLabel { font-size: 10px; letter-spacing: 0.1em; }
  .gate__lockMsg {
    font-size: 11px; padding: 6px 10px; line-height: 1.3;
    text-align: center; max-width: 100%;
  }
  .gate__cta { width: 100%; }
  .gate__cta .cta { padding: 16px 20px; font-size: 14px; }
  .gate__cta .cta__sub { font-size: 11px; }
  .gate__bubbles { left: 6px; right: 6px; bottom: 8px; }
  .bubble { font-size: 11px; padding: 8px 10px; max-width: 90vw; }

  /* HERO */
  .hero { padding: 32px 0 60px; min-height: auto; }
  .hero__glow { display: none; }
  .hero__badge { font-size: 10px; padding: 6px 12px; }
  .hero__title { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
  .hero__sub { font-size: 14px; margin-bottom: 24px; }
  .hero__seals {
    flex-direction: column; gap: 8px; font-size: 12px; align-items: center;
  }
  .vsl { max-width: 280px; }

  /* Section padding reduzido */
  .section { padding: 50px 0; }
  .section__title { font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
  .section__lead { font-size: 14px; margin-bottom: 30px; }

  /* Pain — cards ficam compactos */
  .pain__grid { gap: 12px; }
  .pain__card { padding: 22px 18px; }
  .pain__ico { font-size: 30px; margin-bottom: 10px; }
  .pain__card h3 { font-size: 16px; }
  .pain__card p { font-size: 14px; }

  /* How */
  .how__steps { gap: 14px; margin-top: 24px; }
  .how__step { padding: 24px 20px; }
  .how__num { font-size: 42px; }
  .how__step h3 { font-size: 17px; }

  /* Testimonials */
  .testi__grid { gap: 14px; }
  .testi__card { padding: 18px; }
  .testi__head { gap: 10px; }
  .testi__avatar { width: 38px; height: 38px; font-size: 16px; }
  .testi__head strong { font-size: 14px; }
  .testi__role { font-size: 11px; }
  .testi__card p { font-size: 14px; }

  /* About */
  .about__inner { gap: 24px; }
  .about__photo { width: 180px; }
  .about__title { font-size: 28px; }
  .about__role { font-size: 13px; }
  .about__copy p { font-size: 14px; }
  .about__creds li { font-size: 13px; }

  /* Anchor */
  .anchor__list { gap: 12px; margin: 28px 0 24px; }
  .anchor__item { padding: 22px 18px; }
  .anchor__price { font-size: 30px; }
  .anchor__what { font-size: 13px; }
  .anchor__bridge { padding: 22px 18px; }
  .anchor__bridge p { font-size: 15px; }
  .anchor__bridge p:last-child { font-size: 16px; }

  /* Offer card — DESTAQUE no mobile */
  .offer__card { padding: 28px 22px; }
  .offer__title { font-size: 20px; }
  .offer__list li { font-size: 14px; padding: 8px 0; }
  .offer__from { font-size: 13px; }
  .offer__by { font-size: 11px; }
  .offer__currency { font-size: 20px; }
  .offer__num { font-size: 44px; }
  .offer__num sup { font-size: 18px; }
  .offer__cash { font-size: 13px; }
  .cta--xl { padding: 18px 22px; font-size: 16px; min-width: 100%; }
  .cta--xl .cta__sub { font-size: 12px; }
  .offer__warn { font-size: 12px; padding: 12px 14px; }

  /* Garantia */
  .guarantee__seal { width: 160px; }
  .guarantee__seal-num { font-size: 48px; }
  .guarantee__seal-txt { font-size: 12px; }
  .guarantee__copy h2 { font-size: 22px; }
  .guarantee__copy p { font-size: 14px; }

  /* FAQ */
  .accordion__item summary { padding: 16px 18px; font-size: 15px; }
  .accordion__item p { padding: 0 18px 16px; font-size: 14px; }

  /* Final CTA */
  .final-cta { padding: 60px 0 80px; }
  .final-cta h2 { font-size: 26px; }
  .final-cta__lead { font-size: 15px; margin-bottom: 28px; }
  .paths__item { padding: 22px 18px; }
  .paths__item h3 { font-size: 12px; }

  /* Footer */
  .footer { padding: 40px 0 30px; }
  .footer__brand p { font-size: 13px; }
  .footer__nav a { font-size: 13px; }

  /* Sticky CTA mobile mais compacto */
  .sticky-cta {
    left: 12px; right: 12px; bottom: 12px;
    padding: 12px 16px; gap: 10px;
  }
  .sticky-cta__text { font-size: 13px; }
  .sticky-cta__price { font-size: 11px; padding: 4px 8px; }

  /* Mini VSL widget — afasta do sticky CTA */
  .miniVsl { right: 12px; bottom: 80px; padding: 8px 14px 8px 12px; }
  .miniVsl__label { font-size: 11px; }

  /* Cookie bar */
  .cookie-bar {
    left: 8px; right: 8px; bottom: 8px;
    padding: 12px 14px; gap: 10px;
    flex-direction: column; align-items: stretch;
  }
  .cookie-bar p { font-size: 12px; min-width: auto; }
  .cookie-bar .cta { padding: 8px 14px; font-size: 13px; }

  /* Sections com fundos legíveis no mobile */
  .section { backdrop-filter: blur(3px); }
}

/* Telas muito pequenas (320–360px) */
@media (max-width: 380px) {
  .gate__title { font-size: 16px; }
  .hero__title { font-size: 22px; }
  .offer__num { font-size: 38px; }
  .topbar__timer-label { display: none; }
  .topbar__timer-value { font-size: 13px; }
  .brand__text { font-size: 13px; }
}

/* Touch tap targets — todos os botões clicáveis com mínimo 44x44 */
@media (pointer: coarse) {
  .cta, .accordion__item summary, .gate__playBtn, .gate__cta button,
  .miniVsl, .miniVsl__close, .cookie-bar .cta, .sticky-cta {
    min-height: 44px;
  }
}

/* ==========================================================================
   UPSELL — toques de exclusividade dourado (escopo body.upsell-page)
   Premiumização sutil. NÃO substitui CTA verde, fundo escuro, texto branco.
   Apenas adiciona acentos: headlines em "grad", badges, numerais, selo SGT30.
   ========================================================================== */
body.upsell-page {
  /* Permite que herdeiros usem var(--accent) abstrato em vez de azul */
  --accent: var(--gold);
  --accent-2: var(--gold-2);
  --accent-glow: var(--gold-glow);
}

/* Headlines com `<span class="grad">` ficam douradas no upsell */
body.upsell-page .grad {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

/* "Sócio da mineração" — destaque prata vira dourado discreto no upsell */
body.upsell-page .silver {
  background: linear-gradient(180deg, #f1d57e 0%, #c9a14a 50%, #8a6a26 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Alert-bar topo — borda inferior dourada fina */
body.upsell-page .alert-bar {
  border-bottom: 1px solid var(--gold);
  box-shadow: inset 0 -1px 0 var(--gold-glow);
}
body.upsell-page .alert-bar__num {
  color: var(--gold-2);
  border: 1px solid var(--gold);
  background: rgba(201, 161, 74, 0.12);
}

/* Hero badge — borda + dot dourados no upsell */
body.upsell-page .hero__badge {
  border-color: rgba(201, 161, 74, 0.35);
  background: linear-gradient(180deg, rgba(201, 161, 74, 0.10), rgba(201, 161, 74, 0.04));
  box-shadow: 0 0 32px -10px var(--gold-glow);
}
body.upsell-page .hero__badge-dot {
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.25), 0 0 12px var(--gold-2);
}

/* Gate — selo "CONVITE EXCLUSIVO" no upsell vira dourado */
body.upsell-page .gate__live {
  color: var(--gold-2);
  background: rgba(201, 161, 74, 0.08);
  border-color: rgba(201, 161, 74, 0.4);
}
body.upsell-page .gate__live-dot {
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.2), 0 0 12px var(--gold);
}

/* Offer badge "CONVITE PRO — 10 VAGAS" — fundo gradient dourado */
body.upsell-page .offer__badge {
  background: var(--gold-grad);
  color: #1a1206;
  border: 1px solid rgba(255, 215, 130, 0.5);
  box-shadow: 0 8px 24px -8px var(--gold-glow);
}

/* Numerais 01/02/03 dos bônus — dourados no upsell */
body.upsell-page .how__num {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 30px var(--gold-glow);
}

/* Headings dos bônus — sutil tom dourado em vez de azul */
body.upsell-page .how__step h3 {
  color: var(--gold-2);
}

/* Selo SGT30 + R$500 — anel dourado por fora do selo verde */
body.upsell-page .guarantee__seal {
  box-shadow: 0 0 0 2px var(--gold), 0 0 30px var(--gold-glow);
  border-radius: 999px;
}
body.upsell-page .guarantee__seal-label {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: rgba(255, 215, 130, 0.5);
}

/* Ancoragem (R$2.900 / R$5.000 / <1%) — números em dourado */
body.upsell-page .anchor__price {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* Linha sutil dourada acima de seções principais (apenas upsell) */
body.upsell-page .section.offer .offer__card,
body.upsell-page .section.guarantee .guarantee__inner {
  position: relative;
}
body.upsell-page .section.offer .offer__card::before,
body.upsell-page .section.guarantee .guarantee__inner::before {
  content: "";
  position: absolute; left: 50%; top: -1px; transform: translateX(-50%);
  width: 60%; max-width: 320px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0.6;
}
