/* ══════════════════════════════════════════
   BALIZ STORE — teste.css
   Unique · Tactical · Glass
   ══════════════════════════════════════════ */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --acc:   #9061f9;
  --acc-d: #7c3aed;
  --acc-g: rgba(144,97,249,.14);

  --bg:   #000000;
  --bg-1: #06060e;
  --bg-2: #0c0c18;

  --g:    rgba(255,255,255,.04);
  --g2:   rgba(255,255,255,.07);
  --g3:   rgba(255,255,255,.11);

  --b:    rgba(255,255,255,.07);
  --b2:   rgba(255,255,255,.12);

  --t1: rgba(255,255,255,.95);
  --t2: rgba(255,255,255,.55);
  --t3: rgba(255,255,255,.28);
  --t4: rgba(255,255,255,.14);

  --red:   #ff453a;
  --green: #30d158;

  --font: 'Inter', -apple-system, sans-serif;
  --r: 14px;
  --r-lg: 22px;
  --blur: blur(60px) saturate(180%);
  --t: .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }


/* ── Layout ── */
.container      { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 700px; margin: 0 auto; padding: 0 40px; }

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--acc);
  display: block;
  margin-bottom: 14px;
}

/* ── Section number (bg watermark) ── */
.sec-num {
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sec-num-light { color: rgba(255,255,255,.02); }

/* ── Fade-in reveal ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NOISE GRAIN
   ══════════════════════════════════════════ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .035;
}


/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0 40px;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid var(--b);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 66px;
  gap: 40px;
}

.nav-logo-img { height: 36px; width: auto; display: block; }

/* Logo with glitch on hover */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--t1);
  margin-right: auto;
  flex-shrink: 0;
  position: relative;
}
.nav-logo span { position: relative; z-index: 1; }
.nav-logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--t3);
  margin-left: 1px;
  font-size: 15px;
}
/* Glitch layers */
.nav-logo::before,
.nav-logo::after {
  content: attr(data-glitch);
  position: absolute;
  left: 36px;
  top: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.nav-logo:hover::before {
  opacity: .7;
  color: #ff4444;
  clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%);
  transform: translateX(-2px);
  animation: glitch-a .25s step-end infinite;
}
.nav-logo:hover::after {
  opacity: .7;
  color: #4488ff;
  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
  transform: translateX(2px);
  animation: glitch-b .25s step-end infinite;
}
@keyframes glitch-a {
  0%,100% { clip-path: polygon(0 20%,100% 20%,100% 35%,0 35%); transform: translateX(-2px); }
  33%     { clip-path: polygon(0 50%,100% 50%,100% 65%,0 65%); transform: translateX(3px); }
  66%     { clip-path: polygon(0 10%,100% 10%,100% 22%,0 22%); transform: translateX(-3px); }
}
@keyframes glitch-b {
  0%,100% { clip-path: polygon(0 60%,100% 60%,100% 75%,0 75%); transform: translateX(2px); }
  33%     { clip-path: polygon(0 35%,100% 35%,100% 50%,0 50%); transform: translateX(-2px); }
  66%     { clip-path: polygon(0 75%,100% 75%,100% 88%,0 88%); transform: translateX(3px); }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 450;
  color: var(--t3);
  transition: color var(--t);
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--t1); }

.nav-cta {
  padding: 8px 20px;
  background: var(--acc-d);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 4px 16px rgba(144,97,249,.28);
  flex-shrink: 0;
  display: inline-block;
}

/* ══════════════════════════════════════════
   GLASS BUTTON — clean, sem spinning border
   ══════════════════════════════════════════ */
.btn-mag-wrap {
  display: inline-block;
  position: relative;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}

.btn-mag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(124,58,237,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  border-radius: var(--r-lg);
  border: 1px solid rgba(168,85,247,.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 4px 20px rgba(124,58,237,.3);
  transition: background .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Shine sweep animation */
.btn-mag::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  animation: btn-shine 3.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 35% { left: -120%; }
  65%, 100% { left: 160%; }
}
.btn-mag-wrap:hover .btn-mag {
  background: rgba(139,70,239,.98);
  border-color: rgba(168,85,247,.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 8px 28px rgba(124,58,237,.42);
}
.btn-mag-wrap:active .btn-mag { transform: scale(.98); }
.btn-mag-full { width: 100%; }
.btn-mag-lg   { padding: 16px 40px; font-size: 16px; }

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--t3);
  transition: color var(--t), gap var(--t);
}
.link-ghost:hover { color: var(--t1); gap: 11px; }

.link-discord { color: rgba(114,137,218,.75); }
.link-discord:hover { color: rgba(114,137,218,1); }

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--acc);
  transition: gap var(--t);
}
.link-accent:hover { gap: 10px; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 110px 40px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('fundo.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* Dark overlay — heavier on left so text is readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.97) 0%,
    rgba(0,0,0,.92) 40%,
    rgba(0,0,0,.55) 65%,
    rgba(0,0,0,.1)  100%
  );
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero left */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(144,97,249,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(144,97,249,.8);
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
  animation: fade-up .7s ease .1s both;
}
.htag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 8px var(--acc);
  animation: dot-p 2.5s ease-in-out infinite;
}
@keyframes dot-p {
  0%,100% { box-shadow: 0 0 4px var(--acc); }
  50%     { box-shadow: 0 0 12px var(--acc), 0 0 24px rgba(144,97,249,.3); }
}
.htag-sep { color: var(--t4); }

.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.hl-row {
  display: block;
  color: var(--t1);
  letter-spacing: -.05em;
  line-height: 1.0;
  font-weight: 800;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up .8s cubic-bezier(.4,0,.2,1) forwards;
}
.hl-sm   { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; color: var(--t2); animation-delay: .2s; }
.hl-game {
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, #fff 0%, var(--acc) 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: .3s;
  line-height: .9;
}
.hl-md   { font-size: clamp(28px, 3.5vw, 42px); animation-delay: .45s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--t3);
  max-width: 440px;
  margin-bottom: 36px;
  animation: fade-up .8s ease .6s both;
}
.hero-sub strong { color: var(--t2); font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fade-up .8s ease .7s both;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fade-up .8s ease .8s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--t4);
  letter-spacing: .02em;
}

/* ─ Hero Video ─ */
.hero-right {
  position: relative;
  animation: fade-up .9s ease .5s both;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: relative;
  width: 100%;
}

.video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(144,97,249,.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(144,97,249,.08),
    0 0 60px rgba(144,97,249,.2),
    0 40px 80px rgba(0,0,0,.7);
}
.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t4);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: dot-p 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.video-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 80px;
  background: radial-gradient(ellipse, rgba(144,97,249,.3) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

/* ── Unmute overlay ── */
.video-unmute {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10;
  cursor: pointer;
  border-radius: inherit;
  transition: background .25s, opacity .3s;
}
.video-unmute:hover { background: rgba(0,0,0,.28); }
.video-unmute.hidden { opacity: 0; pointer-events: none; }

.vu-ring {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(144,97,249,.6);
  animation: vu-ring 2.2s ease-out infinite;
}
@keyframes vu-ring {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.vu-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(144,97,249,.18);
  border: 1px solid rgba(144,97,249,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(144,97,249,.3);
}

.video-unmute span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  position: relative;
  z-index: 1;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--t4);
}
.hs-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--acc));
  animation: hs-pulse 2.2s ease-in-out infinite;
}
@keyframes hs-pulse {
  0%,100% { opacity: .3; }
  50%     { opacity: 1; }
}

/* ══════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════ */
.strip {
  position: relative;
  padding: 18px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  overflow: hidden;
  background: rgba(144,97,249,.025);
}
.strip-fade-l, .strip-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.strip-fade-l { left:0; background: linear-gradient(to right, var(--bg), transparent); }
.strip-fade-r { right:0; background: linear-gradient(to left, var(--bg), transparent); }
/* 3 sets em linha → move 1 set (-33.33%) → loop perfeito sem vazio */
.strip-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.strip-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.strip-set span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--t4);
}
.strip-set b { color: var(--acc); opacity: .4; font-weight: 400; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ══════════════════════════════════════════
   SKEW SECTIONS
   ══════════════════════════════════════════ */
.skew-section {
  position: relative;
  z-index: 0;
}
.skew-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  transform: skewY(-2.5deg);
  z-index: -1;
}
.skew-inner { padding: 100px 0; position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   PROBLEM — editorial rows
   ══════════════════════════════════════════ */
.problem {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.problem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 360px;
  background: radial-gradient(ellipse, rgba(255,69,58,.032) 0%, transparent 65%);
  pointer-events: none;
}

.problem .s-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t1);
  line-height: 1.15;
}

/* Lista editorial */
.pain-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--b);
  margin-top: 56px;
  margin-bottom: 56px;
}

.pain-item {
  display: grid;
  grid-template-columns: 180px 1fr 40px;
  align-items: center;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--b);
  position: relative;
  cursor: default;
}

.pain-item::before {
  content: '';
  position: absolute;
  left: -40px; right: -40px; top: 0; bottom: 0;
  background: rgba(255,69,58,.022);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pain-item:hover::before { opacity: 1; }

.pain-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-idx {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--t4);
}

.pain-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,69,58,.07);
  border: 1px solid rgba(255,69,58,.14);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,100,88,.7);
  width: fit-content;
}

.pain-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-center h3 {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.035em;
  line-height: 1.2;
}

.pain-center p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.75;
  max-width: 500px;
}

.pain-accent {
  width: 2px;
  height: 28px;
  background: rgba(255,69,58,.25);
  border-radius: 2px;
  justify-self: end;
  transition: height .35s ease, background .35s ease;
}
.pain-item:hover .pain-accent {
  height: 56px;
  background: rgba(255,80,68,.55);
}

/* Bridge */
.problem-bridge {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pb-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--b)); }
.pb-line:last-child { background: linear-gradient(to left, transparent, var(--b)); }
.problem-bridge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════
   HORIZONTAL SCROLL — 1 card por vez
   ══════════════════════════════════════════ */

/* 5 slides: intro + 4 cards. Cada um recebe ~100vh de scroll */
.h-pin { height: 550vh; }

.h-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Barra de progresso */
.h-progress-bar {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  z-index: 10;
}
.h-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--acc-d), var(--acc));
  border-radius: 100px;
  width: 0%;
  transition: width .12s ease;
}

/* Dots de navegação */
.h-dots {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.h-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background .3s, width .3s;
}
.h-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--acc);
}

.h-track {
  display: flex;
  align-items: center;
  gap: 48px;
  will-change: transform;
  padding: 0;
  width: max-content;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

/* Intro slide */
.h-intro {
  width: calc(min(100vw - 120px, 640px));
  flex-shrink: 0;
  position: relative;
  opacity: .3;
  transform: scale(.96);
  transition: opacity .5s ease, transform .5s ease;
}
.h-intro.h-active {
  opacity: 1;
  transform: scale(1);
}
.h-intro h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t1);
  line-height: 1.1;
  margin-bottom: 16px;
}
.h-intro-sub { font-size: 15px; color: var(--t3); line-height: 1.65; margin-bottom: 28px; }
.h-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: arrow-pulse 1.8s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%,100% { transform: translateX(0); opacity: .6; }
  50%     { transform: translateX(8px); opacity: 1; }
}

/* Feature cards */
.h-card {
  width: calc(min(100vw - 120px, 640px));
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  border: 1px solid var(--b);
  border-radius: 24px;
  padding: 52px 56px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 30px 80px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
  opacity: .3;
  transform: scale(.94) translateY(12px);
  transition: opacity .5s ease, transform .5s ease, border-color .3s;
}
.h-card.h-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: rgba(144,97,249,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 60px rgba(144,97,249,.1),
    0 30px 80px rgba(0,0,0,.5);
}
.hc-num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  letter-spacing: -.06em;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 20px;
}
.hc-icon {
  width: 52px; height: 52px;
  background: rgba(144,97,249,.1);
  border: 1px solid rgba(144,97,249,.18);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  margin-bottom: 20px;
}
.h-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.h-card p { font-size: 16px; color: var(--t3); line-height: 1.7; margin-bottom: 28px; }

.hc-compare {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--b);
  border-radius: var(--r);
}
.hc-label { font-size: 10px; letter-spacing: .06em; color: var(--t4); margin-bottom: 4px; }
.hc-val { font-size: 16px; font-weight: 800; display: block; }
.hc-val.red { color: rgba(255,69,58,.6); }
.hc-val.green { color: var(--green); }
.hc-arrow { color: var(--t4); font-size: 14px; }

.hc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hc-tags span {
  padding: 4px 10px;
  background: rgba(144,97,249,.08);
  border: 1px solid rgba(144,97,249,.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--acc);
}

.hc-games { display: flex; flex-wrap: wrap; gap: 6px; }
.hg-val {
  padding: 4px 10px;
  background: var(--g2);
  border: 1px solid var(--b);
  border-radius: 100px;
  font-size: 11px;
  color: var(--t2);
}
.hg-more { color: var(--t4); font-size: 11px; padding: 4px 6px; }

.hc-lifetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--t3);
}
.hc-lifetime strong { color: var(--acc); }

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats-section { padding: 64px 0; overflow: hidden; }
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.stat-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(20px, 3.5vw, 52px);
  flex: 1;
  min-width: 0;
}
.sb-num {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--t1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sb-label {
  font-size: clamp(10px, 1.1vw, 12px);
  color: var(--t4);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--b);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CLASSES
   ══════════════════════════════════════════ */
.classes { padding: 120px 0; position: relative; overflow: hidden; }
.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cl-left {
  position: sticky;
  top: 100px;
}
.cl-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t1);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cl-sub { font-size: 15px; color: var(--t3); line-height: 1.65; margin-bottom: 28px; }

.cl-right { display: flex; flex-direction: column; gap: 0; }

.cl-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--b);
  transition: background var(--t);
}
.cl-item:last-of-type { border-bottom: none; }
.cl-item:hover { background: rgba(255,255,255,.01); }

.cli-num {
  font-size: 32px;
  font-weight: 900;
  color: rgba(144,97,249,.18);
  letter-spacing: -.05em;
  line-height: 1;
  width: 40px;
  flex-shrink: 0;
  padding-top: 2px;
}
.cli-content { flex: 1; }
.cli-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.cli-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.02em;
}
.cli-time {
  padding: 2px 8px;
  background: rgba(144,97,249,.08);
  border: 1px solid rgba(144,97,249,.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--acc);
  white-space: nowrap;
  flex-shrink: 0;
}
.cl-item p { font-size: 13.5px; color: var(--t3); line-height: 1.6; }

.cl-access {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(144,97,249,.05);
  border: 1px solid rgba(144,97,249,.18);
  border-radius: var(--r-lg);
  box-shadow: 0 0 40px rgba(144,97,249,.08);
  position: relative;
}
.cla-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--acc-d);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.cla-icon {
  width: 40px; height: 40px;
  background: rgba(144,97,249,.1);
  border: 1px solid rgba(144,97,249,.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  flex-shrink: 0;
}
.cl-access strong { display: block; font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
.cl-access p { font-size: 12px; color: var(--t3); }
.cla-tag {
  margin-left: auto;
  padding: 4px 12px;
  background: rgba(48,209,88,.1);
  border: 1px solid rgba(48,209,88,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testi-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #120830 0%, #0e0624 55%, #080319 100%);
  border-radius: 32px;
  margin: 0 24px;
  z-index: 2;
}
.testi-inner {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
@keyframes testi-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.testi-section .s-head h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  min-height: 1.2em;
}
#testiType {
  background: linear-gradient(90deg, #fff 20%, #c084fc 45%, #9061f9 55%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: testi-shimmer 5s linear infinite;
}
.testi-cursor {
  display: inline-block;
  color: #9061f9;
  -webkit-text-fill-color: #9061f9;
  font-weight: 200;
  margin-left: 2px;
  animation: cursor-blink .7s step-end infinite;
}
.testi-discord {
  display: flex;
  justify-content: center;
  padding: 20px 0 8px;
}
.testi-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5865F2;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 32px rgba(88,101,242,.45);
}
.testi-discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(88,101,242,.6);
}

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Glow ambiente roxo atrás do número */
.pricing-glow {
  position: absolute;
  top: 50%; left: 25%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(144,97,249,.1) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--b);
  padding-top: 72px;
}

/* ── Esquerda ── */
.pl-left { display: flex; flex-direction: column; }

/* Badge social proof */
.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(144,97,249,.08);
  border: 1px solid rgba(144,97,249,.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(144,97,249,.85);
  letter-spacing: .02em;
  margin-bottom: 32px;
  width: fit-content;
}
.pl-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 8px var(--acc);
  animation: dot-p 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.pl-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 12px;
}

/* Comparativo */
.pl-compare {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--t4);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pl-compare-val {
  color: rgba(255,69,58,.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255,69,58,.4);
}
.pl-compare svg { color: var(--t4); flex-shrink: 0; }

/* Preço gigante */
.pl-price-block { position: relative; }
.pl-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 0;
}
.pl-cur {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--t3);
  margin-top: .18em;
  letter-spacing: -.02em;
}
.pl-val {
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(160deg, #ffffff 30%, rgba(180,140,255,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 32px;
}
.pl-was { font-size: 13px; color: var(--t4); }
.pl-was s { color: rgba(255,69,58,.5); }
.pl-sep  { color: var(--t4); }
.pl-period { font-size: 13px; color: var(--t3); font-weight: 500; }

/* Barra de economia */
.pl-savings-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pl-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--t4);
  letter-spacing: .02em;
}
.pl-bar-label strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.pl-bar-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: visible;
}
.pl-bar-fill {
  height: 100%;
  width: 46%; /* 37/80 ≈ 46% */
  background: linear-gradient(90deg, var(--acc-d), var(--acc));
  border-radius: 100px;
  position: relative;
}
.pl-bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translate(50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 10px var(--acc);
}
.pl-bar-marker {
  position: absolute;
  left: 46%;
  top: -28px;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: .04em;
  white-space: nowrap;
}
.pl-bar-ends {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--t4);
  letter-spacing: .04em;
}

/* ── Direita — glass card ── */
.pl-right { display: flex; flex-direction: column; }

.pl-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(60px) saturate(180%);
  -webkit-backdrop-filter: blur(60px) saturate(180%);
  border: 1px solid var(--b);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 20px 60px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
/* Linha de luz no topo do card */
.pl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144,97,249,.5), transparent);
}

.pl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pl-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pl-card-tag {
  padding: 4px 12px;
  background: rgba(48,209,88,.1);
  border: 1px solid rgba(48,209,88,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
}

.pl-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.pl-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--t2);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-weight: 400;
}
.pl-features li:last-child { border-bottom: none; }
.pl-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(144,97,249,.12);
  border: 1px solid rgba(144,97,249,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pl-cta { display: block; width: 100%; margin-bottom: 18px; }

.pl-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--t4);
  font-weight: 500;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pl-trust-sep { color: var(--b2); }

.pl-pays {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.pl-pays span {
  padding: 4px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t4);
  letter-spacing: .04em;
}

/* tilt card base */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

.cta-pays span {
  padding: 3px 10px;
  background: var(--g2);
  border: 1px solid var(--b);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--t4);
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════
   PRICING V2 — Apple minimal
   ══════════════════════════════════════════ */
.pc2-wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--b);
  padding-top: 80px;
}

.pc2-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(144,97,249,.18);
  border-radius: 32px;
  padding: 52px 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 40px 80px rgba(0,0,0,.5),
    0 0 80px rgba(144,97,249,.07);
  position: relative;
  overflow: hidden;
}

.pc2-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(144,97,249,.13) 0%, transparent 70%);
  pointer-events: none;
}

.pc2-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(144,97,249,.1);
  border: 1px solid rgba(144,97,249,.22);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pc2-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 6px var(--acc);
  animation: dot-p 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.pc2-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 28px;
}

.pc2-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.pc2-price {
  font-size: 84px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -.055em;
  line-height: 1;
}

.pc2-period {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pc2-btn {
  display: block;
  width: 100%;
  padding: 17px 24px;
  background: var(--acc);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: .01em;
  margin-bottom: 32px;
  box-shadow: 0 8px 28px rgba(144,97,249,.38);
  transition: opacity .2s ease, transform .18s ease, box-shadow .2s ease;
}

.pc2-btn:hover {
  opacity: .86;
  transform: scale(.988);
  box-shadow: 0 14px 40px rgba(144,97,249,.54);
}

.pc2-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--b);
  margin-bottom: 28px;
}

.pc2-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--t2);
  padding: 14px 0;
  border-bottom: 1px solid var(--b);
}

.pc2-check {
  width: 15px; height: 13px;
  color: var(--acc);
  flex-shrink: 0;
}

.pc2-note {
  font-size: 10.5px;
  color: var(--t4);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq { padding: 120px 0; position: relative; overflow: hidden; }
.faq .s-head h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t1);
  line-height: 1.15;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(144,97,249,.28); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--t1);
  text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--g); }
.fi {
  font-size: 22px;
  font-weight: 300;
  color: var(--acc);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item.open .fi { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--t3); line-height: 1.7; }

/* ══════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════ */
.cta-final {
  padding: 160px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(144,97,249,.14) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-breathe 7s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-50%,-50%) scale(1.2); }
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--t1);
  line-height: 1.05;
  margin-bottom: 16px;
}
.text-acc {
  background: linear-gradient(135deg, var(--acc), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub { font-size: 16px; color: var(--t3); margin-bottom: 44px; }
.cta-btn { margin-bottom: 20px; display: inline-block; }
.cta-pays { display: flex; justify-content: center; gap: 6px; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--b);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-brand { font-size: 13px; color: var(--t4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--t4); transition: color var(--t); }
.footer-links a:hover { color: var(--t2); }
.footer-disc { font-size: 11px; color: var(--t4); line-height: 1.65; max-width: 700px; }

/* ══════════════════════════════════════════
   SECTION COMMON HEADERS
   ══════════════════════════════════════════ */
.s-head {
  text-align: center;
  margin-bottom: 56px;
}
.s-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t1);
  line-height: 1.15;
}

/* ══════════════════════════════════════════
   SCROLLBAR + SELECTION
   ══════════════════════════════════════════ */
::selection { background: rgba(144,97,249,.28); color: var(--t1); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--b2); border-radius: 100px; }

/* ══════════════════════════════════════════
   RESPONSIVE — completo
   ══════════════════════════════════════════ */

/* ── Tablet ─────────────────────────── */
@media (max-width: 960px) {
  .nav-links      { display: none; }
  .container      { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }

  /* Hero */
  .hero           { padding: 100px 24px 64px; background-position: center top; }
  .hero::before   {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.85) 55%,
      rgba(0,0,0,.75) 100%
    );
  }
  .hero-inner     { grid-template-columns: 1fr; gap: 36px; }
  .hero-right     { width: 100%; }

  /* Pain */
  .pain-item      { grid-template-columns: 120px 1fr 28px; gap: 24px; padding: 32px 0; }

  /* Horizontal scroll — modo nativo no mobile */
  .h-pin          { height: auto !important; }
  .h-sticky       { position: static; height: auto; overflow: visible; padding: 60px 0 80px; }
  .h-track        {
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    transition: none;
  }
  .h-track::-webkit-scrollbar { height: 3px; }
  .h-track::-webkit-scrollbar-thumb { background: rgba(144,97,249,.3); border-radius: 100px; }
  .h-card         { width: calc(100vw - 64px); opacity: 1 !important; transform: none !important; scroll-snap-align: start; padding: 32px 28px; }
  .h-intro        { width: calc(100vw - 64px); opacity: 1 !important; transform: none !important; scroll-snap-align: start; }
  .h-dots         { bottom: 28px; }

  /* Classes */
  .classes-grid   { grid-template-columns: 1fr; gap: 40px; }
  .cl-left        { position: static; margin-bottom: 8px; }

  /* Stats */
  .stats-row      { flex-wrap: wrap; }
  .stat-big       { flex: none; width: 50%; padding: 20px 0; }
  .stat-divider   { display: none; }

  /* Testimonials */

  /* Pricing */
  .pricing-layout { grid-template-columns: 1fr; gap: 48px; padding-top: 56px; }
  .pl-val         { font-size: clamp(80px, 20vw, 140px); }
  .pricing-glow   { left: 50%; top: 30%; }

  /* Sections */
  .section        { padding: 80px 0; }
  .testi-inner    { padding: 100px 0; }

  /* Section numbers — hide on tablet to reduce noise */
  .sec-num        { display: none; }
}

/* ── Mobile ─────────────────────────── */
@media (max-width: 640px) {
  .container      { padding: 0 18px; }
  .container-narrow { padding: 0 18px; }

  /* Hero */
  .hero           { padding: 88px 18px 52px; min-height: auto; }
  .hero-tag       { font-size: 10px; padding: 6px 12px; flex-wrap: wrap; gap: 6px; }
  .hl-sm          { font-size: 16px; }
  .hl-game        { font-size: clamp(48px, 13vw, 72px); }
  .hl-md          { font-size: clamp(22px, 6vw, 32px); }
  .hero-sub       { font-size: 14px; }
  .hero-actions   { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-mag-wrap   { display: block; }
  .btn-mag        { justify-content: center; padding: 13px 20px; font-size: 14px; }
  .link-ghost     { justify-content: center; }
  .hero-trust     { gap: 12px; }
  .trust-item     { font-size: 11px; }
  .hero-scroll-hint { display: none; }

  /* Strip */
  .strip          { padding: 14px 0; }

  /* Problem */
  .problem        { padding: 80px 0 72px; }
  .s-head         { margin-bottom: 36px; }
  .s-head h2      { font-size: clamp(24px, 7vw, 36px); }
  .pain-item      { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .pain-left      { flex-direction: row; align-items: center; gap: 14px; }
  .pain-accent    { display: none; }

  /* H-scroll */
  .h-card         { padding: 28px 22px; }
  .h-intro h2     { font-size: clamp(24px, 7vw, 36px); }
  .hc-compare     { flex-wrap: wrap; gap: 8px; }

  /* Stats */
  .stat-big       { width: 50%; padding: 16px 0; }
  .sb-num         { font-size: clamp(32px, 9vw, 48px); }
  .sb-label       { font-size: 10px; }

  /* Classes */
  .classes        { padding: 72px 0; }
  .cl-left h2     { font-size: clamp(24px, 7vw, 36px); }
  .cl-item        { gap: 14px; }
  .cli-num        { font-size: 24px; width: 32px; }
  .cli-head       { flex-wrap: wrap; gap: 6px; }
  .cli-head h4    { font-size: 14px; }
  .cl-access      { flex-wrap: wrap; gap: 10px; padding: 16px; }

  /* Testimonials */
  .testi-section  { margin: 0 12px; border-radius: 20px; }
  .testi-section .s-head h2 { font-size: clamp(22px, 7vw, 36px); }

  /* Pricing */
  .pricing        { padding: 72px 0; }
  .pl-features li { font-size: 14px; padding: 12px 0; }
  .pc-trust       { font-size: 10px; gap: 6px; flex-wrap: wrap; justify-content: center; }

  /* FAQ */
  .faq            { padding: 72px 0; }
  .faq-q          { padding: 16px 18px; font-size: 14px; }
  .faq-a p        { padding: 0 18px 16px; font-size: 13.5px; }

  /* CTA */
  .cta-final      { padding: 88px 18px; }
  .cta-h2         { font-size: clamp(28px, 8vw, 48px); }
  .btn-mag-lg     { padding: 14px 28px; font-size: 15px; }
  .cta-sub        { font-size: 14px; }

  /* Footer */
  .footer-row     { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links   { gap: 16px; flex-wrap: wrap; }

  /* Sections generic */
  .section        { padding: 64px 0; }
}

/* ── Small phones ────────────────────── */
@media (max-width: 380px) {
  .hl-game        { font-size: 44px; }
  .stat-big       { width: 100%; text-align: center; padding: 12px 0; }
  .pain-center h3 { font-size: 18px; }
}
