/* ============================================================
   SHARK PRO TRADE — Sovereign Wall Street Desk v3
   design.md v1.2.0 · Pure black · Shark Blue · Profit Green
   Vastago Grotesk (proxy: Space Grotesk) · Manrope
   ============================================================ */

:root {
  --black: #000000;
  --graphite: #0b0c0d;
  --graphite-2: #101113;
  --white: #fefefe;
  --blue: #007aff;
  --green: #00ff5f;
  --mint: #29f3c1;
  --red: #fd0000;
  --text-2: rgba(254, 254, 254, 0.64);
  --text-3: rgba(254, 254, 254, 0.38);
  --line: rgba(254, 254, 254, 0.08);
  --line-strong: rgba(254, 254, 254, 0.14);
  --display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --glass: rgba(11, 12, 13, 0.6);
  --glow-blue: rgba(0, 122, 255, 0.25);
  --glow-green: rgba(0, 255, 95, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* overflow-x no html sozinho não é suficiente no Safari iOS (bug
     conhecido) — sem isso aqui também, o corpo ainda deixa "arrastar"
     a página pra lateral no iPhone mesmo sem conteúdo realmente vazando */
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }
.center { text-align: center; }

/* ---------- Grain (textura tátil ≤1.5%) ---------- */
body::after {
  content: "";
  position: fixed;
  /* top/left/right/bottom explícitos em vez de "inset" — mais compatível
     com Safari iOS mais antigo, e mais previsível pra não contar na
     largura scrollável da página */
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.014;
  pointer-events: none;
  z-index: 9999;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 2%); }
}

/* ---------- Tipografia ---------- */
.kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
.kicker.center-k { justify-content: center; }

.h-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-sub { color: var(--text-2); font-size: 16.5px; max-width: 620px; margin-top: 20px; }
.hl-green { color: var(--green); text-shadow: 0 0 50px rgba(0, 255, 95, 0.35); }

.section { padding: 120px 0; position: relative; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.btn-profit {
  background: var(--green);
  color: #001307;
  box-shadow: 0 0 24px var(--glow-green), 0 0 64px rgba(0, 255, 95, 0.12);
}
.btn-profit::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease infinite;
}
@keyframes shine { 0%, 55% { left: -80%; } 85%, 100% { left: 140%; } }
.btn-profit:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 34px rgba(0, 255, 95, 0.45), 0 0 90px rgba(0, 255, 95, 0.18); }

.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 0 24px var(--glow-blue); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 122, 255, 0.45); }

.btn-ghost { border-color: var(--line-strong); color: var(--white); background: rgba(254, 254, 254, 0.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(254, 254, 254, 0.3); background: rgba(254, 254, 254, 0.06); }

.btn-xl { padding: 20px 44px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 11px 20px; font-size: 12.5px; }
.btn-block { width: 100%; }

.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 80px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* "EM BREVE" — letreiro neon ligando (flicker) e pulsando */
.nav-links a.soon-on {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  animation: soonNeon 2.6s ease forwards;
}
.nav-links a.soon-on::after { width: 100%; background: var(--green); box-shadow: 0 0 10px var(--green); }
@keyframes soonNeon {
  /* liga falhando, como neon de rua */
  0%   { opacity: 0.2; text-shadow: none; }
  4%   { opacity: 1;   text-shadow: 0 0 12px rgba(0, 255, 95, 0.9), 0 0 34px rgba(0, 255, 95, 0.5); }
  8%   { opacity: 0.25; text-shadow: none; }
  12%  { opacity: 1;   text-shadow: 0 0 12px rgba(0, 255, 95, 0.9), 0 0 34px rgba(0, 255, 95, 0.5); }
  16%  { opacity: 0.4; text-shadow: 0 0 6px rgba(0, 255, 95, 0.4); }
  22%  { opacity: 1;   text-shadow: 0 0 14px rgba(0, 255, 95, 1), 0 0 44px rgba(0, 255, 95, 0.6); }
  /* aceso, respirando */
  55%  { opacity: 1;   text-shadow: 0 0 10px rgba(0, 255, 95, 0.8), 0 0 30px rgba(0, 255, 95, 0.45); }
  75%  { opacity: 1;   text-shadow: 0 0 16px rgba(0, 255, 95, 1), 0 0 50px rgba(0, 255, 95, 0.65); }
  /* apaga suave */
  100% { opacity: 1;   text-shadow: none; }
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 102; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.25s; }

/* ---------- HERO (com VSL integrada) ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 140px 0 0;
}
#dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  opacity: 0.9;
}
.hero-shark-watermark {
  position: absolute;
  right: -6%;
  top: 6%;
  width: min(48vw, 700px);
  opacity: 0.05;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
/* Tubarão nadando no hero (pedido do Lucas — igual ao do rodapé) */
.hero-shark-swim {
  position: absolute;
  top: 16%;
  left: -240px;
  width: clamp(110px, 12vw, 170px);
  opacity: 0.4;
  z-index: 1;
  animation: swim 34s linear infinite;
  animation-delay: 3s;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(0, 255, 95, 0.35));
}
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-22px) rotate(0.6deg); } }

.hero-inner { position: relative; z-index: 2; text-align: center; }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--white);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 22px;
  margin-bottom: 30px;
}
.badge-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.6s ease infinite;
}
/* Estado "ESTAMOS AO VIVO" (janela do pregão) */
.badge-live.is-live { border-color: rgba(253, 0, 0, 0.5); box-shadow: 0 0 26px rgba(253, 0, 0, 0.15); }
.badge-live .dot-red { background: var(--red); box-shadow: 0 0 14px var(--red); animation: pulse 1.1s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.hero h1 .l1, .hero h1 .l2 { display: block; overflow: hidden; }
.hero h1 .l1 span, .hero h1 .l2 span { display: inline-block; transform: translateY(110%); animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero h1 .l2 span { animation-delay: 0.14s; color: var(--green); text-shadow: 0 0 60px rgba(0, 255, 95, 0.45); }
@keyframes rise { to { transform: translateY(0); } }

/* VSL dentro do hero */
.hero-vsl {
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s ease 0.35s forwards;
}
.vsl-frame {
  position: relative;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.55), rgba(254, 254, 254, 0.08) 40%, rgba(0, 255, 95, 0.35));
  box-shadow: 0 0 80px rgba(0, 122, 255, 0.16), 0 40px 100px rgba(0, 0, 0, 0.8);
}
.vsl-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 17px;
  overflow: hidden;
  background: var(--graphite);
  cursor: pointer;
}
.vsl-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.9); transition: filter 0.3s ease, transform 0.5s ease; }
.vsl-player:hover .vsl-thumb { filter: brightness(0.7) saturate(1); transform: scale(1.02); }

.vsl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: #001307;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0, 255, 95, 0.5), 0 0 60px rgba(0, 255, 95, 0.35);
  animation: playPulse 2.2s ease infinite;
  transition: transform 0.2s ease;
}
@keyframes playPulse { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 95, 0.45), 0 0 60px rgba(0, 255, 95, 0.35); } 70% { box-shadow: 0 0 0 26px rgba(0, 255, 95, 0), 0 0 60px rgba(0, 255, 95, 0.35); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 95, 0), 0 0 60px rgba(0, 255, 95, 0.35); } }
.vsl-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.vsl-play svg { margin-left: 5px; }

.vsl-placeholder { cursor: default; display: flex; align-items: center; justify-content: center; }
.vsl-placeholder-inner { text-align: center; color: var(--text-3); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; line-height: 2.2; }
.vsl-placeholder-inner img { width: 120px; opacity: 0.25; margin: 0 auto 18px; }

.vsl-note { text-align: center; color: var(--text-3); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 16px; }

/* Badge de avaliação Whop (prova social sob a VSL) */
.whop-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px auto 0;
  padding: 10px 20px 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.hero-vsl { text-align: center; }
.whop-badge:hover { border-color: rgba(0, 255, 95, 0.4); box-shadow: 0 0 30px rgba(0, 255, 95, 0.1); transform: translateY(-2px); }
.wb-avatars { display: flex; }
.wb-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--graphite);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  object-fit: cover;
  position: relative;
}
.wb-av:first-child { margin-left: 0; }
.wb-av-0 { background: linear-gradient(135deg, #0a3d7a, var(--blue)); }
.wb-av-1 { background: linear-gradient(135deg, #084d2a, #00a03f); }
.wb-av-2 { background: linear-gradient(135deg, #232526, #414345); }
.wb-av-3 { background: linear-gradient(135deg, #1b3358, #2d6cdf); }
.wb-body { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; }
.wb-stars { color: #ffc531; font-size: 11px; letter-spacing: 2px; }
.wb-text { color: var(--text-2); font-size: 12.5px; }
.wb-text b { color: var(--white); }

.hero-sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.8vw, 17.5px);
  max-width: 680px;
  margin: 34px auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.scroll-hint {
  position: relative;
  z-index: 2;
  margin: 56px auto 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.scroll-hint .line { width: 1px; height: 44px; background: linear-gradient(var(--text-3), transparent); position: relative; overflow: hidden; }
.scroll-hint .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--green); animation: drip 1.8s ease infinite; }
@keyframes drip { to { top: 110%; } }

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-2);
  white-space: nowrap;
}
.ticker-item::after { content: "▲"; font-size: 8px; color: var(--green); }

/* ---------- STORY (slider: auto a cada 10s ou interação) ---------- */
.story { position: relative; overflow: hidden; }
.story-pin { display: flex; align-items: center; }
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}
/* Beats empilhados na MESMA célula do grid (sem absolute = sem bug de layout) */
.story-beats { display: grid; }
.story-beat {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.story-beat.active { opacity: 1; transform: none; pointer-events: auto; }
.story-beat.leaving { opacity: 0; transform: translateY(-26px); }
.story-beat h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.story-beat[data-beat="2"] h3 { color: var(--green); text-shadow: 0 0 60px rgba(0, 255, 95, 0.35); }
.story-beat p { color: var(--text-2); font-size: 16.5px; max-width: 480px; }

/* Navegação do slider — sinalizador evidente + seta */
.story-nav { display: flex; align-items: center; gap: 14px; margin-top: 46px; }
.story-dot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
}
.story-dot .sd-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}
.story-dot .sd-bar { width: 58px; height: 3px; background: var(--line-strong); border-radius: 3px; overflow: hidden; }
.story-dot .sd-bar i { display: block; height: 100%; width: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; }
.story-dot.active .sd-num { color: var(--white); }
.story-dot.active .sd-bar i { animation: sdFill var(--slide-ms, 10000ms) linear forwards; box-shadow: 0 0 12px rgba(0, 255, 95, 0.5); }
.story-dot:hover .sd-num { color: var(--green); }
@keyframes sdFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.story-arrow {
  margin-left: 10px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(254, 254, 254, 0.03);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.story-arrow:hover { border-color: var(--green); background: rgba(0, 255, 95, 0.08); color: var(--green); transform: translateX(3px); }

/* Visuais flutuantes por ato */
.story-visuals { position: relative; display: grid; min-height: 380px; }
.story-visual {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.story-visual.active { opacity: 1; transform: none; }
.sv-panel {
  width: min(340px, 88%);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}
.sv-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  border-radius: 100px;
  padding: 6px 13px;
}
.sv-red { color: #ff6b64; border: 1px solid rgba(253, 0, 0, 0.35); background: rgba(253, 0, 0, 0.08); }
.sv-blue { color: #57a9ff; border: 1px solid rgba(0, 122, 255, 0.4); background: rgba(0, 122, 255, 0.09); }
.sv-green { color: var(--green); border: 1px solid rgba(0, 255, 95, 0.35); background: rgba(0, 255, 95, 0.07); }
.sv-chip {
  position: absolute;
  right: 4%;
  top: 8%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--graphite-2);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.sv-float-1 { animation: svFloat 7s ease-in-out infinite; }
.sv-float-2 { animation: svFloat 8.5s ease-in-out infinite reverse; }
@keyframes svFloat { 0%, 100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-16px) rotate(0.6deg); } }

/* ---------- Marquee duplo (divisor de impacto) ---------- */
.marquee2 {
  position: relative;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--graphite);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 30px 0;
}
.m2-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.m2-track { display: flex; width: max-content; animation: ticker 44s linear infinite; }
.m2-b .m2-track { animation: tickerReverse 52s linear infinite; }
@keyframes tickerReverse { from { transform: translateX(-33.333%); } to { transform: translateX(0); } }
.m2-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 46px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--white);
}
.m2-item i { font-style: normal; font-size: 12px; color: var(--green); }
.m2-outline { color: transparent; -webkit-text-stroke: 1px rgba(0, 122, 255, 0.55); }
.m2-outline i { color: var(--blue); }

/* ---------- Como funciona (cards que empilham no scroll) ---------- */
.stack { margin-top: 64px; }
.stack-card {
  position: sticky;
  top: calc(108px + var(--i, 0) * 18px);
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--graphite-2), var(--graphite) 60%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 60px 64px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.55);
}
.stack-card:nth-child(2) { background: linear-gradient(155deg, #0a1220, var(--graphite) 70%); border-color: rgba(0, 122, 255, 0.25); }
.stack-card:nth-child(3) { background: linear-gradient(155deg, #061510, var(--graphite) 70%); border-color: rgba(0, 255, 95, 0.22); }
.stack-pattern {
  position: absolute;
  inset: 0;
  background: url("../img/brand/pattern-shark-2.png") repeat;
  background-size: 180px;
  opacity: 0.05;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 42%);
          mask-image: linear-gradient(to bottom, #000, transparent 42%);
  pointer-events: none;
}
.stack-body { position: relative; max-width: 520px; }
.stack-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--mint);
  border: 1px solid rgba(41, 243, 193, 0.3);
  background: rgba(41, 243, 193, 0.06);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 26px;
}
.stack-body h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}
.stack-body p { color: var(--text-2); font-size: 16px; }
/* Números gigantes em NEON (pedido do Lucas) */
.stack-num {
  position: absolute;
  right: 40px;
  bottom: -30px;
  font-family: var(--display);
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 255, 95, 0.75);
  filter: drop-shadow(0 0 14px rgba(0, 255, 95, 0.55)) drop-shadow(0 0 44px rgba(0, 255, 95, 0.25));
  pointer-events: none;
  animation: neonFlicker 4.5s ease-in-out infinite;
}
.stack-card:nth-child(2) .stack-num {
  -webkit-text-stroke-color: rgba(0, 122, 255, 0.8);
  filter: drop-shadow(0 0 14px rgba(0, 122, 255, 0.6)) drop-shadow(0 0 44px rgba(0, 122, 255, 0.28));
}
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  94% { opacity: 0.72; }
  96% { opacity: 1; }
  98% { opacity: 0.85; }
}

/* ---------- Drag carousel ---------- */
.drag-zone { position: relative; margin-top: 60px; }
/* Fade nas bordas via overlays (mais confiável que mask em scroll container) */
.drag-zone::before, .drag-zone::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 9vw, 130px);
  z-index: 5;
  pointer-events: none;
}
.drag-zone::before { left: -24px; background: linear-gradient(90deg, var(--black) 12%, transparent); }
.drag-zone::after { right: -24px; background: linear-gradient(-90deg, var(--black) 12%, transparent); }
.drag-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 30px 24px 44px;
  margin: -30px -24px -20px;
}
.drag-track::-webkit-scrollbar { display: none; }
.drag-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.drag-track > * { scroll-snap-align: start; flex-shrink: 0; }

.drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.34em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.drag-hint::before, .drag-hint::after { content: "⟵"; color: var(--green); letter-spacing: 0; }
.drag-hint::after { content: "⟶"; }

/* Cards do Shark Club */
.club-card {
  width: 340px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px 38px;
  position: relative;
  overflow: hidden;
  transform: rotate(var(--tilt, 0deg)) skewX(calc(var(--vel, 0) * -2.4deg));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}
.club-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  border-color: rgba(0, 122, 255, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 122, 255, 0.1);
}
.club-card .pattern {
  position: absolute;
  inset: 0;
  background: url("../img/brand/pattern-shark-2.png") repeat;
  background-size: 150px;
  opacity: 0.025;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 34%);
          mask-image: linear-gradient(to bottom, #000, transparent 34%);
  pointer-events: none;
}
.club-icon i { font-size: 17px; }
/* Tag verde com mais destaque (pedido do Lucas) */
.club-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: var(--green);
  border: 1px solid rgba(0, 255, 95, 0.5);
  background: rgba(0, 255, 95, 0.1);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 22px;
  box-shadow: 0 0 16px rgba(0, 255, 95, 0.18), inset 0 0 10px rgba(0, 255, 95, 0.06);
  text-shadow: 0 0 10px rgba(0, 255, 95, 0.5);
}
.club-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(0, 122, 255, 0.1); border: 1px solid rgba(0, 122, 255, 0.3); margin-bottom: 20px; font-size: 16px; color: var(--blue); }
.club-icon[data-icon="live"] { color: var(--green); background: rgba(0, 255, 95, 0.07); border-color: rgba(0, 255, 95, 0.3); }
.club-card h3 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.club-card p { color: var(--text-2); font-size: 14px; }

/* ---------- Prop firms ---------- */
.prop { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--graphite); }
#dither-prop { position: absolute; inset: 0; width: 100%; height: 100%; image-rendering: pixelated; opacity: 0.55; }
.prop-inner { position: relative; z-index: 2; }

.accounts {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 56px 0 20px;
}
/* Sequência orquestrada pelo JS: .on liga, .flash pisca em glow */
.account-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 22px;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.account-chip.on { opacity: 1; transform: none; }
.account-chip.flash { animation: chipFlash 0.7s ease; border-color: rgba(0, 255, 95, 0.6); box-shadow: 0 0 26px rgba(0, 255, 95, 0.16); }
@keyframes chipFlash {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 95, 0.55); }
  50% { box-shadow: 0 0 40px 8px rgba(0, 255, 95, 0.45); filter: brightness(1.35); }
  100% { box-shadow: 0 0 26px rgba(0, 255, 95, 0.16); }
}
.chip-label { font-size: 10px; font-weight: 800; letter-spacing: 0.24em; color: var(--text-3); }
.chip-value { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--green); }

#prop-mult.pulse { animation: multPulse 0.8s ease; }
@keyframes multPulse { 0% { transform: scale(1); } 40% { transform: scale(1.35); text-shadow: 0 0 60px rgba(254, 254, 254, 0.8); } 100% { transform: scale(1); } }
#prop-result-box.reveal { animation: resultGlow 1.1s ease; }
@keyframes resultGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 95, 0.5); }
  50% { box-shadow: 0 0 90px 14px rgba(0, 255, 95, 0.35); }
  100% { box-shadow: 0 0 60px rgba(0, 255, 95, 0.1); }
}

.prop-math {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 36px 0 44px;
}
.prop-box {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 42px 52px;
  text-align: center;
  min-width: 270px;
  position: relative;
  overflow: hidden;
}
.prop-box.result { border-color: rgba(0, 255, 95, 0.4); box-shadow: 0 0 60px rgba(0, 255, 95, 0.1); }
.prop-value { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -0.02em; }
.prop-box.result .prop-value { color: var(--green); text-shadow: 0 0 40px rgba(0, 255, 95, 0.4); }
.prop-label { color: var(--text-3); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 12px; display: block; }
.prop-op { font-family: var(--display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); align-self: center; text-shadow: 0 0 26px rgba(254, 254, 254, 0.3); }
.prop-text { color: var(--text-2); max-width: 700px; margin: 0 auto 40px; text-align: center; font-size: 15.5px; }
.micro-disclaimer { color: var(--text-3); font-size: 11px; text-align: center; margin-top: 30px; letter-spacing: 0.06em; }

/* ---------- Sobre ---------- */
.sobre { overflow: hidden; padding-bottom: 0; }
.sobre-giant {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 340px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(254, 254, 254, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.sobre-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.sobre-media { position: relative; }
.sobre-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(0, 122, 255, 0.5), transparent 40%, rgba(0, 255, 95, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.sobre-media { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform; transform-style: preserve-3d; }
.sobre-media img, .sobre-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(0.9) contrast(1.08) brightness(0.96);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.sobre-media:hover img { filter: saturate(0.9) contrast(1.1) brightness(1.05); transform: scale(1.025); }
.sobre-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 122, 255, 0.14), transparent 55%), var(--graphite);
}
.sobre-photo-placeholder img.mark { width: 55%; opacity: 0.3; filter: none; aspect-ratio: auto; }
.sobre-sub { color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 18px 0 22px; }
.sobre-bio { color: var(--text-2); margin-bottom: 42px; font-size: 15.5px; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 36px; }
.credential { border-left: 2px solid rgba(0, 122, 255, 0.5); padding-left: 18px; }
.credential dt { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -0.01em; }
.credential dt .fx { color: var(--blue); }
.credential dd { color: var(--text-3); font-size: 12.5px; margin-top: 4px; letter-spacing: 0.04em; }

.sobre-marquee {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--graphite);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sobre-marquee-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.sobre-marquee-track span {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 34px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  white-space: nowrap;
}
.sobre-marquee-track span i { font-style: normal; font-family: var(--body); font-weight: 600; font-size: 12px; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Depoimentos (vídeos verticais) ---------- */
.depo-card {
  width: 250px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--graphite-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transform: rotate(var(--tilt, 0deg)) skewX(calc(var(--vel, 0) * -2.4deg));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}
.depo-card:hover { transform: translateY(-10px) rotate(0deg) !important; border-color: rgba(0, 255, 95, 0.4); box-shadow: 0 26px 70px rgba(0, 0, 0, 0.75), 0 0 44px rgba(0, 255, 95, 0.08); }
.depo-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.depo-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.depo-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.depo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  background: linear-gradient(transparent 55%, rgba(0, 0, 0, 0.85));
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.depo-name { font-family: var(--display); font-weight: 700; font-size: 16px; }
.depo-caption { color: var(--text-3); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
.depo-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(254, 254, 254, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.3s ease;
}
.depo-card:hover .depo-play { background: var(--green); color: #001307; border-color: transparent; transform: translate(-50%, -50%) scale(1.12); }

/* ---------- Modo cinema da VSL ---------- */
.vsl-cinema { position: fixed; inset: 0; z-index: 320; display: flex; align-items: center; justify-content: center; }
.vsl-cinema[hidden] { display: none; }
.vc-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.93); backdrop-filter: blur(10px); }
/* A "luz do vídeo" vazando: dois feixes coloridos borrados respirando atrás do palco */
.vc-glow { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.vc-glow i {
  position: absolute;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.32;
}
.vc-glow i:first-child {
  background: var(--blue);
  top: 4%; left: 6%;
  animation: vcBreathe 9s ease-in-out infinite;
}
.vc-glow i:last-child {
  background: var(--green);
  bottom: 2%; right: 4%;
  animation: vcBreathe 11s ease-in-out infinite reverse;
}
@keyframes vcBreathe {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.26; }
  50% { transform: translate(4vw, -3vh) scale(1.18); opacity: 0.4; }
}
.vc-stage {
  position: relative;
  width: min(1100px, 94vw);
  animation: vcIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes vcIn { from { opacity: 0; transform: scale(0.92) translateY(24px); } to { opacity: 1; transform: none; } }
.vc-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(254, 254, 254, 0.14);
  box-shadow:
    0 0 90px rgba(0, 122, 255, 0.28),
    0 0 160px rgba(0, 255, 95, 0.16),
    0 50px 120px rgba(0, 0, 0, 0.85);
}
.vc-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Escudo: bloqueia qualquer clique no player — o vídeo só roda; sair = fechar */
.vc-frame::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.vc-close {
  position: absolute;
  top: -18px; right: -18px;
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--graphite-2);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vc-close:hover { background: var(--red); transform: rotate(90deg); }
.vc-caption { text-align: center; color: var(--text-3); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 16px; }
@media (max-width: 680px) {
  .vc-close { top: -54px; right: 0; }
}

/* Lightbox de vídeo (depoimentos) */
.video-lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; }
.video-lightbox[hidden] { display: none; }
.vl-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(8px); }
.vl-stage { position: relative; width: min(420px, 86vw); animation: vlIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes vlIn { from { opacity: 0; transform: translateY(26px) scale(0.95); } to { opacity: 1; transform: none; } }
.vl-stage video {
  width: 100%;
  max-height: 82vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 18px;
  background: var(--black);
  border: 1px solid rgba(0, 255, 95, 0.3);
  box-shadow: 0 0 90px rgba(0, 255, 95, 0.12), 0 40px 100px rgba(0, 0, 0, 0.8);
}
.vl-close {
  position: absolute;
  top: -16px; right: -16px;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--graphite-2);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vl-close:hover { background: var(--red); transform: rotate(90deg); }
.vl-caption { text-align: center; color: var(--text-3); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 14px; }

.depo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: var(--graphite-2);
}
.depo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/brand/pattern-shark-2.png") repeat;
  background-size: 150px;
  opacity: 0.05;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 45%);
          mask-image: linear-gradient(to bottom, #000, transparent 45%);
}
.depo-placeholder .mark { width: 76px; opacity: 0.2; }
.depo-placeholder span { color: var(--text-3); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; }

/* ---------- Planos ---------- */
.planos { border-top: 1px solid var(--line); position: relative; overflow: hidden; background: var(--graphite); }
#dither-planos { position: absolute; inset: 0; width: 100%; height: 100%; image-rendering: pixelated; opacity: 0.5; }
.planos-inner { position: relative; z-index: 2; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 64px; }
.plan {
  position: relative;
  background: rgba(11, 12, 13, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 34px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-8px); border-color: var(--line-strong); }
.plan-highlight {
  border-color: rgba(0, 255, 95, 0.45);
  box-shadow: 0 0 70px rgba(0, 255, 95, 0.12), 0 30px 80px rgba(0, 0, 0, 0.6);
  background: linear-gradient(180deg, rgba(0, 255, 95, 0.05), rgba(11, 12, 13, 0.82) 40%);
}
.plan-highlight:hover { border-color: rgba(0, 255, 95, 0.7); box-shadow: 0 0 90px rgba(0, 255, 95, 0.2), 0 30px 80px rgba(0, 0, 0, 0.6); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  background: var(--green);
  color: #001307;
  border-radius: 100px;
  padding: 7px 18px;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(0, 255, 95, 0.4);
}
/* Hierarquia: o plano e os benefícios são o centro — o valor é coadjuvante */
.plan-name { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin-bottom: 6px; }
.plan-note { color: var(--text-3); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 26px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; justify-content: flex-start; margin-bottom: 8px; }
/* Valor total cobrado — visível de propósito perto do CTA (transparência anti-chargeback) */
.plan-charge { color: var(--text-2); font-size: 12.5px; letter-spacing: 0.04em; margin-bottom: 16px; }
.plan-price-value { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; line-height: 1; color: var(--text-2); }
.plan-highlight .plan-price-value { color: rgba(0, 255, 95, 0.75); }
.plan-period { color: var(--text-3); font-size: 13px; }
.plan-features { list-style: none; margin-bottom: 26px; flex: 1; }
.plan-features li { color: var(--text-2); font-size: 14px; padding: 10px 0 10px 28px; border-bottom: 1px dashed var(--line); position: relative; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
/* Benefício especial em destaque (ex: assessoria com o Lucas no Anual) */
.plan-features li.feat-special {
  color: var(--green);
  font-weight: 700;
  background: rgba(0, 255, 95, 0.06);
  border: 1px solid rgba(0, 255, 95, 0.3);
  border-radius: 8px;
  padding: 10px 12px 10px 30px;
  margin: 6px 0;
  box-shadow: 0 0 18px rgba(0, 255, 95, 0.1);
}
.plan-features li.feat-special::before { content: "★"; left: 10px; text-shadow: 0 0 10px rgba(0, 255, 95, 0.6); }
.plans-trial-note { text-align: center; color: var(--text-3); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 38px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 56px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  transition: color 0.15s ease, padding-left 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); padding-left: 10px; }
.faq-chevron { width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; flex-shrink: 0; position: relative; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.faq-chevron::before, .faq-chevron::after { content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; transition: transform 0.25s ease; }
.faq-chevron::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-chevron::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-chevron { transform: rotate(45deg); border-color: var(--green); background: rgba(0, 255, 95, 0.08); color: var(--green); }
.faq-body { overflow: hidden; }
.faq-body p { color: var(--text-2); font-size: 15px; padding: 0 4px 28px; max-width: 740px; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
#dither-cta { position: absolute; inset: 0; width: 100%; height: 100%; image-rendering: pixelated; opacity: 0.75; }
.cta-final-inner { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-final h2 .l2 { color: var(--green); text-shadow: 0 0 60px rgba(0, 255, 95, 0.4); }
.cta-urgency { color: var(--green); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 30px; font-weight: 700; }
.cta-final .section-sub { margin: 0 auto 48px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--graphite); padding: 90px 0 0; position: relative; overflow: hidden; }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-cta-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; position: relative; }
.footer-logo img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-about { color: var(--text-3); font-size: 13.5px; max-width: 420px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-2); font-size: 13.5px; transition: color 0.15s ease, padding-left 0.15s ease; }
.footer-links a:hover { color: var(--green); padding-left: 6px; }
.footer-disclaimer { color: var(--text-3); font-size: 11px; line-height: 1.8; border-top: 1px solid var(--line); padding-top: 30px; margin-bottom: 22px; position: relative; }
.footer-copy { color: var(--text-3); font-size: 12px; letter-spacing: 0.08em; position: relative; }

/* Wordmark colossal cortado na base (speedster-style)
   Altura com folga no topo: o tubarão nada por cima do texto SEM ter a
   barbatana cortada pela borda do container */
.footer-giant {
  position: relative;
  margin-top: 40px;
  height: clamp(150px, 19vw, 300px);
  overflow: hidden;
}
.footer-giant-text {
  position: absolute;
  left: 50%;
  bottom: -12%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(100px, 15.5vw, 240px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(254, 254, 254, 0.16), rgba(254, 254, 254, 0.015) 85%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  transition: background 0.4s ease;
  user-select: none;
}
.footer-giant:hover .footer-giant-text {
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.55), rgba(0, 122, 255, 0.05) 90%);
  -webkit-background-clip: text;
          background-clip: text;
}
.footer-giant-shark {
  position: absolute;
  top: 6%;
  left: -220px;
  width: clamp(120px, 13vw, 180px);
  opacity: 0.5;
  z-index: 2;
  animation: swim 26s linear infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(0, 122, 255, 0.35));
}
@keyframes swim {
  0% { left: -220px; transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-14px) rotate(-2deg); }
  50% { transform: translateY(4px) rotate(1.5deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
  100% { left: calc(100% + 60px); transform: translateY(0) rotate(0deg); }
}

/* ---------- ESTAMOS AO VIVO (pill + popups) ---------- */
.live-pill {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(253, 0, 0, 0.45);
  border-radius: 100px;
  padding: 11px 20px;
  box-shadow: 0 0 30px rgba(253, 0, 0, 0.18);
  animation: pillIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-pill[hidden] { display: none; }
@keyframes pillIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.live-pill .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation: pulse 1.2s ease infinite;
}

.live-toasts {
  position: fixed;
  left: 20px;
  bottom: 74px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: min(360px, calc(100vw - 40px));
}
.live-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  animation: toastIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-toast.saindo { animation: toastOut 0.45s ease forwards; }
.live-toast.t-loss { border-left-color: var(--red); }
.live-toast.t-info { border-left-color: var(--blue); }
.live-toast .lt-ic {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: rgba(0, 255, 95, 0.1);
  color: var(--green);
}
.live-toast.t-loss .lt-ic { background: rgba(253, 0, 0, 0.1); color: #ff6b64; }
.live-toast.t-info .lt-ic { background: rgba(0, 122, 255, 0.12); color: var(--blue); }
@keyframes toastIn { from { opacity: 0; transform: translateX(-30px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(-24px) scale(0.96); } }

@media (max-width: 680px) {
  .live-toasts { bottom: 70px; }
  .live-pill { left: 12px; bottom: 12px; }
}

/* ---------- Modal de lead ---------- */
.lead-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.lead-modal[hidden] { display: none; }
.lead-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(6px); }
.lead-modal-box { position: relative; background: var(--graphite); border: 1px solid rgba(0, 255, 95, 0.3); border-radius: 18px; padding: 44px 38px; width: min(460px, calc(100vw - 40px)); max-height: 88vh; overflow-y: auto; box-shadow: 0 0 80px rgba(0, 255, 95, 0.08); }
.lead-modal-box h3 { font-family: var(--display); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.lead-modal-box > p { color: var(--text-2); font-size: 14px; margin-bottom: 26px; }
.lead-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-3); font-size: 26px; cursor: pointer; }
.lead-modal label { display: block; font-size: 12.5px; color: var(--text-2); margin-bottom: 16px; letter-spacing: 0.04em; }
.lead-modal input:not(.hp) { width: 100%; margin-top: 7px; background: var(--black); border: 1px solid var(--line-strong); border-radius: 8px; color: var(--white); padding: 13px 15px; font-size: 15px; font-family: var(--body); }
.lead-modal input:focus { outline: none; border-color: var(--green); }
.hp { position: absolute; left: -9999px; }
.lead-embed { margin-top: 6px; }
.lead-embed iframe { width: 100% !important; min-height: 440px; border: 0; border-radius: 10px; background: var(--black); }
.lead-feedback { font-size: 13.5px; margin-top: 14px; color: var(--green); min-height: 18px; }
.lead-feedback.error { color: var(--red); }

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .plan-highlight { order: -1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 44px; }
  .sobre-media { max-width: 340px; }
  .stack-card { padding: 48px 40px; }
  .stack-num { right: 16px; bottom: -18px; }
  .story-layout { grid-template-columns: 1fr; gap: 30px; align-content: center; }
  .story-visuals { min-height: 240px; }
  .sv-panel { width: min(300px, 82%); }
}

@media (max-width: 680px) {
  .section { padding: 84px 0; }
  .hero { padding-top: 110px; }
  .hero-ctas .btn { width: 100%; }
  .credentials { grid-template-columns: 1fr; }
  .club-card { width: 290px; }
  .depo-card { width: 220px; }
  .prop-math { flex-direction: column; align-items: stretch; }
  .prop-op { text-align: center; }
  .vsl-play { width: 68px; height: 68px; }
  /* .story não é mais scroll-pinado (virou slider) — height:240vh daqui era
     resquício da versão antiga e deixava um vão gigante no mobile */
  .manifesto { font-size: clamp(22px, 6.4vw, 30px); }
  .stack-card { min-height: 340px; padding: 38px 26px; }
  .stack-body h3 { font-size: 24px; }
  .accounts { gap: 8px; }
  .account-chip { padding: 12px 14px; }
  .footer-cta { flex-direction: column; align-items: flex-start; }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 26px 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: auto; }
  .nav-burger { display: block; }
  .nav-logo img { height: 38px; }
}

/* ---------- Preview do painel (heatmap): página congelada ---------- */
body.is-preview *, body.is-preview *::before, body.is-preview *::after {
  animation: none !important;
  transition: none !important;
}
body.is-preview::after { display: none; } /* grain off */
body.is-preview #dither-canvas, body.is-preview #dither-prop,
body.is-preview #dither-planos, body.is-preview #dither-cta,
body.is-preview .hero-shark-swim, body.is-preview .footer-giant-shark,
body.is-preview .live-pill, body.is-preview .live-toasts { display: none !important; }
body.is-preview [data-reveal] { opacity: 1 !important; transform: none !important; }
body.is-preview .hero h1 span { transform: none; }
body.is-preview .hero-sub, body.is-preview .hero-ctas,
body.is-preview .hero-vsl, body.is-preview .scroll-hint { opacity: 1; }
body.is-preview .story-beat { opacity: 1; transform: none; position: relative; margin-bottom: 40px; }
body.is-preview .story-visual { opacity: 1; transform: none; position: relative; }
body.is-preview .account-chip { opacity: 1; transform: none; }
body.is-preview .stack-card { position: relative; top: auto; }

/* ---------- Acessibilidade / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero h1 span { transform: none; }
  .hero-sub, .hero-ctas, .hero-vsl, .scroll-hint { opacity: 1; }
  #dither-canvas, #dither-cta, #dither-prop, #dither-planos { display: none; }
  .story { height: auto; }
  .story-pin { position: static; height: auto; padding: 80px 0; }
  .story-beat { opacity: 1; transform: none; position: relative; margin-bottom: 48px; }
  .story-visual { opacity: 1; transform: none; position: relative; margin-bottom: 32px; }
  .stack-card { position: relative; top: auto; }
  .account-chip { opacity: 1; transform: none; border-color: rgba(0, 255, 95, 0.5); }
  .m2-track { animation: none !important; }
}

/* ---------- Performance mobile: dither desligado (JS também não inicia <768px) ---------- */
@media (max-width: 767px) {
  #dither-canvas, #dither-cta, #dither-prop, #dither-planos { display: none; }
}

/* ---------- PROMO / CUPOM (seção ativável pelo painel) ---------- */
.promo { padding-top: 44px; padding-bottom: 16px; }
@media (max-width: 767px) { .promo { padding-top: 32px; padding-bottom: 12px; } }
.promo-ticket {
  max-width: 520px; margin: 42px auto 0; border: 2px dashed rgba(0, 255, 95, 0.45);
  border-radius: 18px; background: rgba(0, 255, 95, 0.035); overflow: hidden; position: relative;
}
.promo-ticket-top { padding: 34px 30px 26px; }
.promo-discount {
  display: block; font-family: var(--display); font-size: clamp(40px, 8vw, 64px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1; color: var(--green); text-shadow: 0 0 28px rgba(0, 255, 95, 0.35);
}
.promo-desc { color: var(--text-2); font-size: 15px; margin-top: 12px; }
.promo-ticket-divider { border-top: 2px dashed rgba(0, 255, 95, 0.3); margin: 0 18px; position: relative; }
.promo-ticket-divider::before, .promo-ticket-divider::after {
  content: ''; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%; background: var(--black);
}
.promo-ticket-divider::before { left: -30px; }
.promo-ticket-divider::after { right: -30px; }
.promo-ticket-bottom { padding: 24px 30px 32px; }
.promo-code-label { color: var(--text-3); font-size: 11px; letter-spacing: 0.2em; margin-bottom: 10px; }
.promo-code {
  font-family: var(--display); font-size: clamp(22px, 5vw, 30px); font-weight: 700; letter-spacing: 0.12em;
  color: var(--white); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 22px; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative;
}
.promo-code:hover { border-color: rgba(0, 255, 95, 0.5); }
.promo-code.copied { border-color: var(--green); background: rgba(0, 255, 95, 0.08); }
.promo-copy-hint { display: block; font-family: var(--body); font-size: 10px; font-weight: 400; letter-spacing: 0.18em; color: var(--text-3); text-transform: uppercase; margin-top: 4px; }
.promo-code.copied .promo-copy-hint { color: var(--green); }
.promo-expiry { color: var(--text-3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; }
.promo-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
