/* JR TOMBO LP · components.css */

/* ============ HEADER ============ */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4,2,15,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.lp-header .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.brand-mark { width: 32px; height: 32px; }
.brand b { color: var(--gold); }
.handle { font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: .1em; }

/* ============ HERO ============ */
.hero {
  padding: 56px 0 64px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero-grid.mirror { grid-template-columns: .85fr 1.15fr; }
.hero-copy .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(124,58,237,.08);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 22px;
}
.hero-copy .badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulseGold 2s infinite;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-1);
  max-width: 56ch;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero .hero-visual:not(:empty) { min-height: 280px; }
.hero-silhouette {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: .22; z-index: 1; pointer-events: none;
  filter: blur(.3px);
}
.hero-silhouette svg { width: 80%; max-width: 320px; }

/* ================================================================
   HERO FOTO NEYMAR · DESIGN 2026 FORA-DA-CURVA (JR pediu 22/05)
   - Glow ambient âmbar pulsante atrás da taça
   - Fade-in ao carregar (scale 1.08 → 1.0 + opacity)
   - Parallax suave com scroll (transform translate3d)
   - Spotlight gradient seguindo cursor (var --mx/--my)
   - Mask radial pra integrar sem borda dura
   - prefers-reduced-motion respeita
   ================================================================ */

/* v1-neymar: foto centralizada no hero-visual com glow */
.hero-ney-photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero-ney-photo::before {
  /* glow âmbar pulsante */
  content: '';
  position: absolute;
  width: 78%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 38%, rgba(245,158,11,.45) 0%, rgba(245,158,11,.18) 30%, transparent 65%);
  filter: blur(40px);
  animation: ney-glow 6s ease-in-out infinite;
  z-index: 0;
}
.hero-ney-photo::after {
  /* particle âmbar — pseudo via box-shadow stack */
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(252,211,77,.85), transparent 50%),
    radial-gradient(2px 2px at 80% 45%, rgba(252,211,77,.7), transparent 50%),
    radial-gradient(1px 1px at 65% 22%, rgba(252,211,77,.55), transparent 50%),
    radial-gradient(2px 2px at 35% 70%, rgba(252,211,77,.4), transparent 50%);
  animation: ney-particles 11s ease-in-out infinite;
  z-index: 3;
}
.hero-ney-photo img {
  position: relative;
  width: 100%; max-width: 480px;
  height: auto;
  /* v0.1.31: opacity .92 (era .72) — JR achou que "nao tava funcionando" porque fica
     muito translucido. Manter contraste alto pra Ney destacar. */
  opacity: .92;
  transform: scale(1);
  filter: contrast(1.12) saturate(1.25) drop-shadow(0 22px 55px rgba(4,2,15,.75));
  mask-image: radial-gradient(ellipse 82% 88% at center 45%, rgba(0,0,0,1) 50%, rgba(0,0,0,.75) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(ellipse 82% 88% at center 45%, rgba(0,0,0,1) 50%, rgba(0,0,0,.75) 75%, rgba(0,0,0,0) 100%);
  z-index: 2;
  animation: ney-enter 1.6s cubic-bezier(.22,.9,.3,1.05) forwards 0.15s;
  transition: transform .4s ease-out;
  will-change: transform;
}
/* Fallback total: sem JS/animations, foto AINDA visible */
@media (prefers-reduced-motion: reduce) {
  .hero-ney-photo img { opacity: .92 !important; transform: scale(1) !important; animation: none !important; }
}
.hero-ney-photo .ney-fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, transparent 28%, rgba(4,2,15,.5) 72%, rgba(4,2,15,.95) 100%);
  pointer-events: none;
  z-index: 4;
}
@keyframes ney-enter {
  /* v0.1.31: opacity final .92 (era .72) — Ney chega mais nitido */
  0%   { opacity: 0; transform: scale(1.08) translateY(8px); filter: blur(6px) contrast(1.12) saturate(1.25); }
  60%  { opacity: .95; filter: blur(0) contrast(1.12) saturate(1.25); }
  100% { opacity: .92; transform: scale(1) translateY(0); filter: blur(0) contrast(1.12) saturate(1.25) drop-shadow(0 22px 55px rgba(4,2,15,.75)); }
}
@keyframes ney-glow {
  0%, 100% { transform: scale(1);   opacity: .8;  }
  50%      { transform: scale(1.08); opacity: 1;  }
}
@keyframes ney-particles {
  0%, 100% { transform: translate3d(0,   0,   0) scale(1);    opacity: .7; }
  33%      { transform: translate3d(6px, -4px, 0) scale(1.03); opacity: 1;  }
  66%      { transform: translate3d(-4px, 6px, 0) scale(.97);  opacity: .55;}
}

/* v3-trofeu: full-bleed cinematográfico — TRÍPTICO "2026 FORA DA CURVA" */
.hero.ney-fullbleed {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero.ney-fullbleed::before {
  /* tríptico cobre todo bg (já tem texto FORA DA CURVA + 3 momentos) */
  content: '';
  position: absolute; inset: -8%;
  background: url('../../shared/assets/neymar-fora-da-curva.jpg') center 35% / cover no-repeat;
  opacity: 0;
  filter: contrast(1.06) saturate(1.18);
  z-index: -2;
  animation: ney-bg-enter 2.4s cubic-bezier(.22,.9,.3,1.05) forwards 0.05s;
  will-change: transform, opacity;
}
.hero.ney-fullbleed::after {
  /* overlay sutil — preserva legibilidade do tríptico + funde com ink */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(91,33,182,.35), transparent 65%),
    linear-gradient(180deg, rgba(4,2,15,.25) 0%, rgba(4,2,15,.55) 60%, rgba(4,2,15,.95) 95%, var(--ink-0) 100%);
  z-index: -1;
}
.hero.ney-fullbleed .hero-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.hero.ney-fullbleed h1 {
  text-shadow:
    0 2px 30px rgba(4,2,15,.85),
    0 0 60px rgba(245,158,11,.18);
  letter-spacing: -.01em;
}
.hero.ney-fullbleed h1 em {
  background: linear-gradient(120deg, var(--gold) 0%, #fcd34d 50%, var(--gold-hi) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 35px rgba(245,158,11,.45);
}
.hero.ney-fullbleed .sub {
  text-shadow: 0 1px 14px rgba(4,2,15,.7);
}
.hero.ney-fullbleed .hero-visual { display: none; }
@keyframes ney-bg-enter {
  0%   { opacity: 0; transform: scale(1.12); filter: blur(8px) contrast(1.1) saturate(1.25); }
  100% { opacity: .85; transform: scale(1.02); filter: blur(0) contrast(1.1) saturate(1.25); }
}

/* v4-prova-ney: Neymar lateral side-by-side, dados na esquerda */
.hero.ney-side {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero.ney-side .hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: 48px;
}
.hero.ney-side .hero-visual {
  position: relative;
  padding: 0;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
}
.hero.ney-side .hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../../shared/assets/neymar-campeao.jpg') center 50% / cover no-repeat;
  opacity: 0;
  filter: contrast(1.08) saturate(1.18);
  animation: ney-side-enter 1.8s cubic-bezier(.22,.9,.3,1.05) forwards 0.2s;
  z-index: 1;
  will-change: transform, opacity;
}
.hero.ney-side .hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,158,11,.2), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(4,2,15,.45) 100%);
  z-index: 2;
  pointer-events: none;
}
@keyframes ney-side-enter {
  0%   { opacity: 0; transform: scale(1.08) translateX(20px); filter: blur(6px) contrast(1.05) saturate(1.12); }
  100% { opacity: .94; transform: scale(1) translateX(0);     filter: blur(0)  contrast(1.05) saturate(1.12); }
}

/* Mobile breakpoint */
@media (max-width: 840px) {
  .hero-ney-photo img { max-width: 320px; }
  .hero.ney-fullbleed { padding: 80px 0 72px; }
  .hero.ney-side .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero.ney-side .hero-visual { min-height: 320px; }
}

/* ================================================================
   TRUST BLOCK — anti-scam, transparência total (JR pediu 22/05)
   Sem poluir: 1 seção compacta, glass morph fino, paleta JR
   ================================================================ */
.trust-block {
  padding: 56px 0;
  position: relative;
}
.trust-block .trust-intro {
  font-size: 14px;
  color: var(--ink-1);
  max-width: 52ch;
  margin: 16px auto 0;
  line-height: 1.55;
}
.trust-block .section-title h2 em {
  color: var(--gold);
  font-style: normal;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.trust-card {
  padding: 20px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
}
.trust-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(124, 58, 237, 0.08);
  transform: translateY(-2px);
}
.trust-card .trust-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(91, 33, 182, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9px;
  color: var(--gold);
  margin-bottom: 12px;
}
.trust-card h3 {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink-0);
}
.trust-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-1);
  margin-bottom: 10px;
}
.trust-card p b { color: var(--gold); font-weight: 700; }
.trust-card ul.trust-perms {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--ink-1);
}
.trust-card ul.trust-perms li {
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.4;
}
.trust-card ul.trust-perms li::before {
  content: '→';
  color: var(--gold);
  position: absolute;
  left: 0;
}
.trust-card ul.trust-perms li b {
  color: var(--ink-0);
  font-family: ui-monospace, 'Cascadia Mono', monospace;
  font-size: 11px;
  background: rgba(245, 158, 11, 0.1);
  padding: 1px 5px;
  border-radius: 4px;
}
.trust-hash {
  display: block;
  font-family: ui-monospace, 'Cascadia Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  background: rgba(4, 2, 15, 0.5);
  padding: 8px 10px;
  border-radius: 6px;
  word-break: break-all;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trust-btn, .trust-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(120deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 7px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.trust-btn:hover, .trust-mini:hover {
  background: linear-gradient(120deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.15));
  border-color: rgba(245, 158, 11, 0.55);
}
.trust-mini {
  margin-left: 6px;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--ink-1);
  font-size: 10px;
  padding: 6px 10px;
  text-transform: lowercase;
}
.trust-mini:hover {
  background: rgba(124, 58, 237, 0.18);
  color: var(--ink-0);
}
.trust-warranty {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-1);
  text-align: center;
}
.trust-warranty .trust-x {
  display: inline-block;
  margin-right: 8px;
  color: #10B981;
  font-weight: 900;
  font-size: 14px;
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-hash { font-size: 9px; }
}

/* Footer social JR */
.footer-social {
  display: flex; gap: 14px;
  margin-right: 16px;
}
.footer-social a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 6px;
  color: var(--ink-1);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: all 0.18s ease;
}
.footer-social a:hover {
  color: var(--ink-0);
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
}
.footer-social a svg { opacity: 0.8; }
.footer-social a:hover svg { opacity: 1; }

/* Respeita preferência do usuário */
@media (prefers-reduced-motion: reduce) {
  .hero-ney-photo img,
  .hero.ney-fullbleed::before,
  .hero.ney-side .hero-visual::before {
    animation: none;
    opacity: .7;
    transform: none;
    filter: contrast(1.05) saturate(1.12);
  }
  .hero-ney-photo::before,
  .hero-ney-photo::after { animation: none; }
}
.hero-visual .mockup-banner { position: relative; z-index: 2; }

/* ============ BOTOES ============ */
.cta-group {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.btn-primary, .btn-ghost {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .25s ease, background-position .4s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #0B0820;
  background: linear-gradient(120deg, var(--purple-hi) 0%, var(--gold) 60%, var(--gold-hi) 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  border: 0;
  box-shadow: 0 14px 40px rgba(245,158,11,.35), 0 0 0 1px rgba(252,211,77,.2) inset;
  animation: pulseGold 3.4s infinite;
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 18px 50px rgba(245,158,11,.5); }
/* v0.1.54 micro-interaction: spring press + glow sweep no hover */
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  background-size: 220% 100%;
  background-position: -60% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, background-position .55s cubic-bezier(.2,.75,.2,1);
}
.btn-primary:hover::after { opacity: 1; background-position: 160% 0; }
.btn-primary:active { transform: translateY(0) scale(.97); transition: transform .12s cubic-bezier(.34,1.56,.64,1); }
.btn-ghost:active { transform: translateY(0) scale(.97); transition: transform .12s cubic-bezier(.34,1.56,.64,1); }
.btn-primary small {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; opacity: .65; margin-top: 2px; font-weight: 400;
}
.btn-primary .stack { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.btn-ghost {
  color: var(--ink-0);
  background: rgba(124,58,237,.08);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(124,58,237,.18); border-color: var(--purple-hi); transform: translateY(-1px); }

/* ============ STATS BAR ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin: 56px 0;
}
.stats-bar .stat {
  padding: 12px 24px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.stats-bar .stat:last-child { border-right: 0; }
.stats-bar .stat .num {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stats-bar .stat .num.neutral { color: var(--ink-0); }
.stats-bar .stat .num.warn { color: #F59E0B; }
.stats-bar .stat .label { margin-top: 8px; font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: .12em; text-transform: uppercase; }

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 88px 0;
  text-align: center;
}
.manifesto p {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--ink-0);
  max-width: 18ch;
  margin: 0 auto;
  letter-spacing: -.005em;
  text-transform: none;
}
.manifesto p em { font-style: normal; color: var(--gold); }
.manifesto .signature {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .15em;
}

/* ============ CAFEZIN STRIP ============ */
.cafezin-strip {
  display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin: 40px 0;
}
.cafezin-strip span { white-space: nowrap; }
.cafezin-strip .dot { color: var(--purple-hi); }

/* ============ SECTION TITLES ============ */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title h2 { max-width: 18ch; margin: 0 auto; }

/* ============ MOCKUP BANNER ============ */
.mockup-banner {
  position: relative;
  width: 300px; height: 154px;
  perspective: 1200px;
  animation: float 6s ease-in-out infinite;
}
.mockup-banner.large { width: 380px; height: 196px; }
.mb-frame {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1A1340 0%, #0E0827 100%);
  border: 1px solid rgba(124,58,237,.45);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow:
    0 28px 60px rgba(91,33,182,.55),
    0 0 0 1px rgba(245,158,11,.12) inset,
    0 0 80px rgba(124,58,237,.25);
  transform: rotate(2deg);
  display: flex; flex-direction: column; justify-content: space-between;
}
.mockup-banner.large .mb-frame { padding: 18px 22px; }
.mb-head {
  display: flex; align-items: center; justify-content: space-between;
}
.mb-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mockup-banner.large .mb-tag { font-size: 12px; }
.mb-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulseGold 2s infinite;
}
.mb-row {
  display: flex; gap: 14px; align-items: baseline;
}
.mb-dir {
  font-family: var(--display);
  font-size: 46px;
  color: var(--danger);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  transition: opacity .3s ease, color .3s ease;
}
.mockup-banner.large .mb-dir { font-size: 64px; }
.mb-dir.up { color: var(--ok); }
.mb-pair {
  font-family: var(--display);
  font-size: 30px;
  color: var(--ink-0);
  font-weight: 700;
  line-height: 1;
  transition: opacity .3s ease;
}
.mockup-banner.large .mb-pair { font-size: 40px; }
.mb-tf {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-1);
  letter-spacing: .08em;
}
.mockup-banner.large .mb-tf { font-size: 14px; }
.mb-confidence {
  margin-top: 4px;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.mb-confidence i {
  display: block; height: 100%; width: 78%;
  background: linear-gradient(90deg, var(--purple-hi), var(--gold));
  transition: width .6s ease;
}

/* ============ PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), border-color .25s ease, box-shadow .35s ease;
  overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 30%, rgba(245,158,11,.18) 70%, transparent 80%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pillar:hover { transform: perspective(900px) rotateX(-3deg) rotateY(2deg) translateY(-4px); border-color: var(--purple-hi); box-shadow: 0 20px 50px rgba(91,33,182,.35); }
.pillar:hover::before { opacity: 1; }
.pillar .icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(245,158,11,.12);
  color: var(--gold);
  margin-bottom: 18px;
}
.pillar h3 { font-size: 18px; margin-bottom: 10px; }
.pillar p { color: var(--ink-1); margin: 0; font-size: 14.5px; line-height: 1.55; }

/* ============ 7 CONDICOES (radiografia) ============ */
.condicoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding: 0;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-1);
  max-width: 920px;
  margin: 0 auto;
}
.condicoes li {
  padding: 14px 18px;
  border-left: 2px solid var(--purple-hi);
  background: linear-gradient(90deg, rgba(124,58,237,.08), transparent 80%);
  border-radius: 0 8px 8px 0;
}
.condicoes li b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ============ DISCLOSURE (backtest aberto) ============ */
.disclosure {
  margin: 32px auto 0;
  max-width: 720px;
  padding: 24px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-1);
  line-height: 1.6;
  text-align: left;
}
.disclosure b { color: var(--gold); }
.disclosure a { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(124,58,237,.04);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--purple-hi); background: rgba(124,58,237,.1); }
.faq summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink-0);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 24px;
  color: var(--gold);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px 22px; color: var(--ink-1); font-size: 15px; line-height: 1.65; }

/* ============ COUNTDOWN ============ */
.countdown-sticky {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(11,8,32,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  font-family: var(--mono);
  max-width: 320px;
}
.countdown-sticky .label { font-size: 10px; color: var(--ink-2); letter-spacing: .12em; text-transform: uppercase; }
.countdown-sticky .timer { font-size: 18px; color: var(--gold); letter-spacing: .08em; }
.countdown-sticky[hidden] { display: none; }

/* ============ CTA BLOCK ============ */
.cta-block {
  text-align: center;
  padding: 80px 0;
}
.cta-block h2 { max-width: 18ch; margin: 0 auto 32px; }
.cta-block .cta-group { justify-content: center; }
.cta-block .ps { margin-top: 24px; color: var(--ink-2); font-size: 13px; font-family: var(--mono); letter-spacing: .08em; }

/* ============ FOOTER ============ */
.lp-footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 32px;
  margin-top: 60px;
  color: var(--ink-2);
}
.lp-footer .row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.lp-footer .brand { font-size: 18px; }
.lp-footer .hasta { font-family: var(--mono); font-size: 12px; letter-spacing: .15em; color: var(--ink-1); text-transform: uppercase; }
.disclaimer {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 920px;
  margin: 24px auto 0;
  text-align: center;
}

/* ============ MOBILE ============ */
@media (max-width: 920px) {
  .hero { padding: 36px 0 44px; }
  .hero-grid, .hero-grid.mirror { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: auto; }
  .hero-silhouette { opacity: .12; }
  .stats-bar { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-bar .stat { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 18px 12px; }
  .stats-bar .stat:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .pillars { grid-template-columns: 1fr; }
  .condicoes { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; }
  .mockup-banner { width: 260px; height: 134px; margin: 0 auto; }
  .mockup-banner.large { width: 300px; height: 158px; }
  .mockup-banner.large .mb-dir { font-size: 48px; }
  .mockup-banner.large .mb-pair { font-size: 30px; }
  .mb-dir { font-size: 36px; }
  .mb-pair { font-size: 24px; }
  .countdown-sticky { right: 12px; bottom: 12px; left: 12px; max-width: none; }
  .manifesto { padding: 56px 0; }
  .section { padding: 56px 0; }
}

@media (max-width: 920px) {
  .pillar:hover { transform: none; }
}

/* ================================================================
   v0.1.54 RADAR MULTI-PAR — conic-gradient sweep girando.
   Ilustra a extensão vigiando ~16 pares ao mesmo tempo na Vera.
   CSS puro, sem libs. Paleta JR purple + gold. Assimetria proposital.
   ================================================================ */
.radar-section { padding: 84px 0; }
.radar-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
.radar-wrap.mirror { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.radar-wrap .radar-stage { order: 0; }

/* O radar em si */
.radar {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(124,58,237,.10) 0%, rgba(11,8,32,.65) 70%, rgba(4,2,15,.9) 100%);
  border: 1px solid rgba(124,58,237,.35);
  box-shadow:
    0 30px 80px rgba(91,33,182,.4),
    0 0 0 1px rgba(245,158,11,.1) inset,
    0 0 90px rgba(124,58,237,.22);
  overflow: hidden;
  isolation: isolate;
}
/* anéis concêntricos */
.radar::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0, transparent calc(33% - 1px), rgba(124,58,237,.22) 33%, transparent calc(33% + 1px)),
    radial-gradient(circle, transparent 0, transparent calc(66% - 1px), rgba(124,58,237,.18) 66%, transparent calc(66% + 1px));
  z-index: 1;
}
/* cruz central */
.radar::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(124,58,237,.18) 50%, transparent calc(50% + .5px)),
    linear-gradient(0deg,  transparent calc(50% - .5px), rgba(124,58,237,.18) 50%, transparent calc(50% + .5px));
  z-index: 1;
}
/* o feixe que varre (conic-gradient girando) */
.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  z-index: 2;
  background: conic-gradient(
    from 0deg,
    rgba(245,158,11,.45) 0deg,
    rgba(245,158,11,.14) 14deg,
    transparent 50deg,
    transparent 360deg
  );
  -webkit-mask-image: radial-gradient(circle, #000 0 99%, transparent 100%);
  mask-image: radial-gradient(circle, #000 0 99%, transparent 100%);
  animation: radar-spin 4.2s linear infinite;
  will-change: transform;
}
/* núcleo brilhante */
.radar-core {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold), 0 0 40px rgba(245,158,11,.5);
  z-index: 4;
  animation: ledPulse 2.4s ease-in-out infinite;
}
/* os "blips" = pares vigiados, espalhados assimétricos */
.radar-blip {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--purple-hi);
  box-shadow: 0 0 10px rgba(124,58,237,.9);
  z-index: 3;
  transform: translate(-50%, -50%);
  animation: blip-fade 4.2s ease-in-out infinite;
}
.radar-blip.hot { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.radar-blip::after {
  content: attr(data-pair);
  position: absolute; left: 14px; top: -4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: .75;
}
.radar-blip.hot::after { color: var(--gold-hi); opacity: 1; }
/* posições assimétricas dos pares (16 blips) */
.radar-blip:nth-child(1)  { left: 64%; top: 22%; animation-delay: .2s; }
.radar-blip:nth-child(2)  { left: 30%; top: 31%; animation-delay: 1.1s; }
.radar-blip:nth-child(3)  { left: 72%; top: 58%; animation-delay: 2.4s; }
.radar-blip:nth-child(4)  { left: 41%; top: 68%; animation-delay: .7s; }
.radar-blip:nth-child(5)  { left: 56%; top: 44%; animation-delay: 3.1s; }
.radar-blip:nth-child(6)  { left: 23%; top: 52%; animation-delay: 1.8s; }
.radar-blip:nth-child(7)  { left: 78%; top: 38%; animation-delay: 2.9s; }
.radar-blip:nth-child(8)  { left: 47%; top: 26%; animation-delay: .4s; }
.radar-blip:nth-child(9)  { left: 34%; top: 74%; animation-delay: 3.6s; }
.radar-blip:nth-child(10) { left: 62%; top: 76%; animation-delay: 1.4s; }
.radar-blip:nth-child(11) { left: 18%; top: 40%; animation-delay: 2.0s; }
.radar-blip:nth-child(12) { left: 68%; top: 30%; animation-delay: .9s; }
.radar-blip:nth-child(13) { left: 52%; top: 60%; animation-delay: 3.3s; }
.radar-blip:nth-child(14) { left: 39%; top: 46%; animation-delay: 1.6s; }
.radar-blip:nth-child(15) { left: 74%; top: 68%; animation-delay: 2.6s; }
.radar-blip:nth-child(16) { left: 28%; top: 63%; animation-delay: .5s; }

/* legenda flutuante "X pares no ar" */
.radar-meta {
  position: absolute; left: 50%; bottom: 8%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  z-index: 5;
  white-space: nowrap;
}
.radar-meta b { color: var(--gold); }

/* texto ao lado do radar */
.radar-copy .kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.radar-copy h2 { margin-bottom: 18px; max-width: 16ch; }
.radar-copy h2 em { font-style: normal; color: var(--gold); }
.radar-copy p { font-size: 15.5px; line-height: 1.6; max-width: 48ch; }
.radar-copy .radar-before-after {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.radar-before-after span {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
}
.radar-before-after .was { color: var(--ink-2); text-decoration: line-through; opacity: .8; }
.radar-before-after .now { color: var(--gold); border-color: rgba(245,158,11,.4); background: rgba(245,158,11,.07); }

/* v0.1.71 — chips de features novas do RADAR (apito, notificação, boundary burst, OTC, relay) */
.radar-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.radar-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(124,58,237,.05);
  font-size: 12px; line-height: 1.3;
  color: var(--ink-1);
}
.radar-chips .chip b { color: var(--gold); font-weight: 700; }

@media (max-width: 920px) {
  .radar-wrap, .radar-wrap.mirror { grid-template-columns: 1fr; gap: 36px; }
  .radar-wrap .radar-stage { order: -1; }
  .radar-copy h2, .radar-copy p { margin-left: auto; margin-right: auto; }
  .radar-copy { text-align: center; }
  .radar-before-after { justify-content: center; }
  .radar-chips { justify-content: center; }
}

/* ================================================================
   v0.1.54 KINETIC TYPOGRAPHY — headline em letras com stagger.
   As variants envolvem palavras-chave em <span class="kt"> e cada
   .kt entra com delay incremental. Fallback: visível sem anim.
   ================================================================ */
.kinetic .kt {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(2deg);
  animation: kt-rise .72s cubic-bezier(.2,.75,.25,1) forwards;
}
.kinetic .kt:nth-child(1)  { animation-delay: .08s; }
.kinetic .kt:nth-child(2)  { animation-delay: .16s; }
.kinetic .kt:nth-child(3)  { animation-delay: .24s; }
.kinetic .kt:nth-child(4)  { animation-delay: .32s; }
.kinetic .kt:nth-child(5)  { animation-delay: .40s; }
.kinetic .kt:nth-child(6)  { animation-delay: .48s; }
.kinetic .kt:nth-child(7)  { animation-delay: .56s; }
.kinetic .kt:nth-child(8)  { animation-delay: .64s; }
.kinetic .kt:nth-child(9)  { animation-delay: .72s; }
.kinetic .kt:nth-child(10) { animation-delay: .80s; }

/* badge "novidade" pro radar */
.tag-new {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0B0820;
  background: var(--gold);
  border-radius: 5px;
  vertical-align: middle;
}

/* ============ v0.1.47 LP FOOTER COMPLIANCE ============ */
.lp-footer {
  padding: 36px 0 28px;
  border-top: 1px solid rgba(124,58,237,.18);
  background: rgba(4,2,15,.6);
  text-align: center;
  font-size: 12px;
  color: rgba(245,235,255,.5);
}
.lp-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  justify-content: center;
}
.lp-footer-links a {
  color: rgba(245,235,255,.7);
  text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 1px dotted rgba(245,158,11,.35);
  padding-bottom: 1px;
}
.lp-footer-links a:hover { color: #FCD34D; }
.lp-footer-fine {
  font-size: 11px;
  color: rgba(245,235,255,.4);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* ============ v0.1.42 DEPOIMENTOS (testers fase beta) ============ */
.depo-section .depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.depo-card {
  position: relative;
  padding: 24px 22px 22px;
  background: linear-gradient(180deg, rgba(124,58,237,.07), rgba(124,58,237,.02));
  border: 1px solid rgba(245,158,11,.18);
  border-left: 3px solid rgba(245,158,11,.55);
  border-radius: 14px;
  transition: border-color .25s, transform .25s;
}
.depo-card:hover { border-color: rgba(245,158,11,.45); transform: translateY(-3px); }
.depo-card::before {
  content: '"';
  position: absolute; top: 4px; right: 14px;
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  color: rgba(245,158,11,.18);
  pointer-events: none;
}
.depo-quote {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: #E9E5FF;
  margin: 0 0 18px;
}
.depo-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(124,58,237,.18);
}
.depo-avatar {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F59E0B, #B45309);
  color: #0B0820;
  font-weight: 900;
  font-size: 13px;
  border-radius: 10px;
  letter-spacing: .04em;
}
.depo-info {
  flex: 1;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(245,235,255,.78);
}
.depo-info b { color: #F8F7FF; font-weight: 700; }
.depo-metric {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: rgba(16,185,129,.16);
  color: #34D399;
  border: 1px solid rgba(16,185,129,.32);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.depo-disclaimer {
  margin-top: 22px;
  font-size: 11px;
  color: rgba(245,235,255,.42);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ============ v0.1.42 STICKY CTA MOBILE (UX upgrade) ============ */
/* Aparece após scroll > 300px no mobile/tablet. Aumenta CVR esperado +8-12%. */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(4,2,15,.92), rgba(4,2,15,.98));
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(245,158,11,.28);
  box-shadow: 0 -8px 24px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1.05);
  will-change: transform;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
}
.sticky-cta a.primary {
  background: linear-gradient(135deg, #F59E0B, #B45309);
  color: #0B0820;
}
.sticky-cta a.ghost {
  background: rgba(124,58,237,.18);
  color: #F8F7FF;
  border: 1px solid rgba(124,58,237,.4);
}
.sticky-cta a:active { transform: scale(.97); }
.sticky-cta-hint {
  display: block;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  font-style: italic;
}
@media (min-width: 921px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 920px) {
  .sticky-cta { display: block; }
  /* dá espaço pro final do conteúdo não ficar tampado */
  body.has-sticky-cta { padding-bottom: 90px; }
}

/* v0.1.57: selo VirusTotal junto do CTA de download (prova no ponto de decisão) */
.vt-proof {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  color: #6EE7B7; text-decoration: none;
  border: 1px solid rgba(110, 231, 183, .35); border-radius: 999px;
  background: rgba(16, 185, 129, .07);
  transition: border-color .2s, background .2s, transform .2s;
}
.vt-proof:hover { border-color: rgba(110, 231, 183, .7); background: rgba(16, 185, 129, .14); transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .vt-proof { transition: none; } .vt-proof:hover { transform: none; } }

/* ============================================================
   v0.1.66: REFORÇO MOBILE/TABLET — celular pequeno + alvos de toque
   ============================================================ */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero h1, h1 { font-size: clamp(26px, 8vw, 38px); line-height: 1.08; }
  .hero .sub, .sub { font-size: 14px; }
  .badge { font-size: 10px; }
  .cta-group, .btn-row { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost, .ghost { width: 100%; box-sizing: border-box; justify-content: center; text-align: center; }
  .depo-grid, .stats-grid, .radar-wrap { grid-template-columns: 1fr !important; }
  .radar { max-width: 78vw; margin: 0 auto; }
  .stat .num { font-size: clamp(20px, 7vw, 30px); }
  table, .answer { font-size: 13px; }
}
@media (max-width: 360px) {
  .hero h1, h1 { font-size: 24px; }
  .badge { letter-spacing: .02em; }
}
/* alvos de toque ≥44px em touch (tablet/cel) */
@media (pointer: coarse) {
  .btn-primary, .btn-ghost, .ghost, .vt-proof, .faq summary, .footer-social a, .sticky-cta a {
    min-height: 44px; display: inline-flex; align-items: center;
  }
  .faq summary { padding-top: 12px; padding-bottom: 12px; }
}
/* nunca scroll horizontal no mobile */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; height: auto; }
