/* ============================================================
   PATREZE MENTOR — v2
   Identidade Primezys: azul elétrico + atmosfera cinematográfica
   Semântica de mercado: verde = ganho · vermelho = perda · ouro = elite
   Fontes: Space Grotesk (display) / Inter (texto) / JetBrains Mono (dados)
   ============================================================ */

:root {
  --bg: #060912;
  --bg-2: #0a0f1c;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef2f8;
  --muted: #8b99b0;

  --blue: #2f8bff;
  --blue-bright: #56a4ff;
  --cyan: #38e1ff;
  --blue-soft: rgba(47, 139, 255, 0.12);
  --blue-glow: rgba(47, 139, 255, 0.42);
  --grad: linear-gradient(135deg, #2f8bff, #38e1ff);

  --green: #2bd57e;
  --green-glow: rgba(43, 213, 126, 0.35);
  --red: #ff5468;
  --gold: #f5c451;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #04070d; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.mono { font-family: var(--font-mono); font-size: 0.78em; letter-spacing: 0.04em; text-transform: uppercase; }
.blue { color: var(--blue-bright); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--blue); color: #04070d;
  padding: 0.7rem 1.2rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============ BACKGROUND FX ============ */

.bgfx { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bgfx__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 95% 75% at 50% 0%, #000 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 0%, #000 28%, transparent 78%);
}
.bgfx__orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.55; will-change: transform; transition: transform 1.2s var(--ease); }
.bgfx__orb--1 { width: 560px; height: 560px; top: -200px; right: -140px; background: radial-gradient(circle, rgba(47, 139, 255, 0.22), transparent 65%); }
.bgfx__orb--2 { width: 520px; height: 520px; top: 42%; left: -220px; background: radial-gradient(circle, rgba(56, 225, 255, 0.12), transparent 65%); }
.bgfx__orb--3 { width: 440px; height: 440px; bottom: -160px; right: 8%; background: radial-gradient(circle, rgba(47, 139, 255, 0.1), transparent 65%); }
.bgfx__noise {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ============ PRELOADER ============ */

.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; position: relative; animation: intro-pop 0.8s var(--ease) both; }
.loader__halo {
  position: absolute; inset: -90px -130px; z-index: -1;
  background: radial-gradient(closest-side, rgba(47, 139, 255, 0.28), rgba(56, 225, 255, 0.08) 55%, transparent 75%);
  filter: blur(18px);
  animation: glow-breathe 2.2s ease-in-out infinite alternate;
}
.loader__badge {
  width: 96px; height: 96px; border-radius: 24px;
  margin-inline: auto; object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 6px rgba(47, 139, 255, 0.08), 0 14px 50px rgba(47, 139, 255, 0.4);
}
.loader__name {
  font-family: var(--font-display); font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em; margin-top: 1.1rem;
}
.loader__name span { color: var(--blue-bright); }
.loader__tag { color: var(--muted); font-size: 0.62rem; margin-top: 0.45rem; }
.loader__bar {
  width: 180px; height: 3px; margin: 1.1rem auto 0;
  border-radius: 99px; background: var(--surface-2); overflow: hidden;
}
.loader__bar i { display: block; height: 100%; width: 40%; border-radius: 99px; background: var(--grad); animation: load-sweep 1.5s var(--ease) infinite; }
@keyframes load-sweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }
@keyframes glow-breathe { from { opacity: 0.7; transform: scale(0.94); } to { opacity: 1; transform: scale(1.06); } }
@keyframes intro-pop { from { opacity: 0; transform: scale(0.88) translateY(10px); } to { opacity: 1; transform: none; } }

/* ============ CURSOR GLOW ============ */

.cursor-glow {
  position: fixed; left: 0; top: 0; z-index: 2; pointer-events: none;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 139, 255, 0.1), transparent 65%);
  mix-blend-mode: screen; opacity: 0; transition: opacity 0.5s ease; will-change: transform;
}
body.glow-on .cursor-glow { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ============ BOTÕES ============ */

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.95rem; border-radius: 99px; padding: 0.85rem 1.7rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform; white-space: nowrap;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn svg { flex-shrink: 0; }

.btn--primary { background: var(--grad); color: #04070d; box-shadow: 0 0 0 rgba(47, 139, 255, 0); }
.btn--primary:hover { box-shadow: 0 10px 44px var(--blue-glow); transform: translateY(-2px); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--text); background: var(--surface); backdrop-filter: blur(10px); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-bright); transform: translateY(-2px); }

.btn--glass { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(14px); }
.btn--glass:hover { border-color: var(--blue); transform: translateY(-2px); }

.btn--gold { background: linear-gradient(135deg, #f5c451, #e0a429); color: #1a1304; }
.btn--gold:hover { box-shadow: 0 10px 40px rgba(245, 196, 81, 0.35); transform: translateY(-2px); }

.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateY(3px); }

/* ============ NAV ============ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0; border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  padding: 0.65rem 0; background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; display: flex; align-items: center; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand__mark {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px;
  background: var(--grad); color: #04070d; font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 0 26px rgba(47, 139, 255, 0.4);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); box-shadow: 0 0 38px rgba(47, 139, 255, 0.65); }
.brand__text em { font-style: normal; color: var(--muted); font-weight: 500; font-size: 0.82em; }

.nav__links { display: flex; gap: 0.3rem; margin-left: auto; }
.nav__link {
  position: relative; padding: 0.45rem 0.9rem; font-size: 0.88rem; font-weight: 500;
  color: var(--muted); border-radius: 99px; transition: color 0.25s, background 0.25s;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); background: var(--surface-2); }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 0.6rem; margin-left: auto; z-index: 102; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */

.mmenu {
  position: fixed; inset: 0; z-index: 101;
  background: rgba(6, 9, 18, 0.94); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; gap: 0.3rem; }
.mmenu__link {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-size: clamp(1.9rem, 8.5vw, 2.8rem); font-weight: 600;
  padding: 0.45rem 0; opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s;
}
.mmenu.is-open .mmenu__link { opacity: 1; transform: translateY(0); }
.mmenu.is-open .mmenu__link:nth-child(1) { transition-delay: 0.06s; }
.mmenu.is-open .mmenu__link:nth-child(2) { transition-delay: 0.12s; }
.mmenu.is-open .mmenu__link:nth-child(3) { transition-delay: 0.18s; }
.mmenu.is-open .mmenu__link:nth-child(4) { transition-delay: 0.24s; }
.mmenu.is-open .mmenu__link:nth-child(5) { transition-delay: 0.30s; }
.mmenu.is-open .mmenu__link:nth-child(6) { transition-delay: 0.36s; }
.mmenu__link:hover, .mmenu__link:active { color: var(--blue-bright); }
.mmenu__link .mono { color: var(--blue-bright); font-size: 0.8rem; }
.mmenu__cta { margin-top: 2rem; }
.mmenu__foot { position: absolute; bottom: 2rem; left: 2rem; color: var(--muted); font-size: 0.7rem; }

/* ============ EYEBROW + SECTION HEAD ============ */

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright);
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blue); opacity: 0.7; }

.section { padding: 7.5rem 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(10, 15, 28, 0.6), transparent); }

.shead { max-width: 720px; margin-bottom: 3.2rem; }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .eyebrow::before { display: none; }
.shead__index { font-family: var(--font-mono); color: var(--blue-bright); font-size: 0.78rem; display: block; margin-bottom: 0.8rem; }
.shead__title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin-top: 0.9rem;
}
.shead__sub { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }

/* ============ HERO ============ */

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 8.5rem 0 4rem; overflow: hidden; }
.hero__bgvideo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: saturate(1.1) contrast(1.05); z-index: -1;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 70% 20%, rgba(47, 139, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(6, 9, 18, 0.55), rgba(6, 9, 18, 0.88) 70%, var(--bg));
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 1rem;
  border: 1px solid var(--line); border-radius: 99px; background: var(--surface);
  backdrop-filter: blur(10px); color: var(--muted); margin-bottom: 1.8rem; font-size: 0.82rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 var(--green-glow); animation: pulse 2s infinite; flex-shrink: 0; }
.pulse-dot--sm { width: 6px; height: 6px; }
.pulse-dot--blue { background: var(--blue); box-shadow: 0 0 0 0 var(--blue-glow); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--green-glow); } 70% { box-shadow: 0 0 0 9px rgba(43, 213, 126, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 213, 126, 0); } }

.hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; }
.hero__title .rotator-wrap { display: inline-grid; vertical-align: bottom; overflow: hidden; }
.hero__title .rotator { display: grid; }
.hero__title .rotator span {
  grid-area: 1 / 1; opacity: 0; transform: translateY(110%);
  transition: transform 0.65s var(--ease), opacity 0.5s; white-space: nowrap;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__title .rotator span.is-active { opacity: 1; transform: translateY(0); }
.hero__title .rotator span.is-leaving { opacity: 0; transform: translateY(-110%); }

.hero__lead { max-width: 540px; color: var(--muted); font-size: 1.08rem; margin-top: 1.6rem; }
.hero__lead strong { color: var(--text); font-weight: 600; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero__metrics { display: flex; align-items: center; gap: 1.6rem; margin-top: 3rem; flex-wrap: wrap; }
.hero__metric { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__metric strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.hero__metric strong em { font-style: normal; color: var(--blue-bright); font-size: 0.85rem; }
.hero__metric span { font-size: 0.78rem; color: var(--muted); }
.hero__metric-sep { width: 1px; height: 38px; background: var(--line); }

/* — visual: foto + painel de mercado — */
.hero__visual { position: relative; }
.hero__photo-frame { position: relative; border-radius: var(--radius-lg); max-width: 430px; margin-inline: auto; will-change: transform; }
.hero__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%;
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 70px rgba(47, 139, 255, 0.1);
}
.hero__photo-corners i { position: absolute; width: 22px; height: 22px; border: 2px solid var(--blue); z-index: 2; }
.hero__photo-corners i:nth-child(1) { top: -7px; left: -7px; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.hero__photo-corners i:nth-child(2) { top: -7px; right: -7px; border-left: 0; border-bottom: 0; border-radius: 0 8px 0 0; }
.hero__photo-corners i:nth-child(3) { bottom: -7px; left: -7px; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
.hero__photo-corners i:nth-child(4) { bottom: -7px; right: -7px; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }

/* painel "conta real" flutuante */
.market {
  position: absolute; bottom: -8%; left: -14%; width: 270px; z-index: 4;
  padding: 1.1rem 1.2rem; border-radius: 16px; border: 1px solid var(--line-strong);
  background: rgba(8, 12, 22, 0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); animation: floaty 6s ease-in-out infinite;
}
.market__top { display: flex; align-items: center; gap: 0.5rem; font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.market__top strong { margin-left: auto; color: var(--green); font-family: var(--font-mono); font-size: 0.62rem; }
.market__value { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.01em; margin-top: 0.55rem; }
.market__gain { color: var(--green); font-size: 0.8rem; font-weight: 600; margin-top: 0.1rem; }
.candles { display: flex; align-items: flex-end; gap: 4px; height: 52px; margin: 0.85rem 0 0.6rem; }
.candles i { flex: 1; height: var(--h); background: var(--c); border-radius: 2px; opacity: 0.85; transform-origin: bottom; animation: candle-rise 0.7s var(--ease) backwards; }
@keyframes candle-rise { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); } }
.market__gain span { color: var(--muted); font-weight: 500; }
.market__meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.6rem; color: var(--muted); padding-top: 0.6rem; border-top: 1px solid var(--line); }
.market__actions { display: flex; gap: 0.5rem; margin-top: 0.7rem; }
.market__btn { flex: 1; text-align: center; padding: 0.5rem 0; border-radius: 9px; font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.market__btn--buy { background: rgba(43, 213, 126, 0.16); color: var(--green); border: 1px solid rgba(43, 213, 126, 0.4); }
.market__btn--sell { background: rgba(255, 84, 104, 0.14); color: var(--red); border: 1px solid rgba(255, 84, 104, 0.38); }

.chip {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; border-radius: 13px; border: 1px solid var(--line-strong);
  background: rgba(10, 14, 24, 0.84); backdrop-filter: blur(14px);
  font-size: 0.74rem; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45); z-index: 3; animation: floaty 7s ease-in-out infinite;
}
.chip strong { font-family: var(--font-display); }
.chip--1 { top: 6%; right: -8%; animation-delay: -2s; }
.chip--1 strong { color: var(--blue-bright); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.62rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollLine 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ TICKER / MARQUEE ============ */

.ticker-band { border-block: 1px solid var(--line); padding: 1.2rem 0; background: var(--surface); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee__track i { font-style: normal; color: var(--blue-bright); margin: 0 1.2rem; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ PROOF BAR ============ */

.proofbar { padding: 2.6rem 0; border-bottom: 1px solid var(--line); }
.proofbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.proofbar__item { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.4rem 0.2rem; }
.proofbar__item strong { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; }
.proofbar__item span { color: var(--muted); font-size: 0.82rem; }

/* ============ MÉTODO ============ */

.method__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 3.5rem; }
.pillar {
  position: relative; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s; will-change: transform;
}
.pillar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(47, 139, 255, 0.08), transparent 45%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.pillar:hover::before { opacity: 1; }
.pillar:hover { border-color: rgba(47, 139, 255, 0.5); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.pillar__num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-bright); }
.pillar__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); border: 1px solid rgba(47, 139, 255, 0.3); margin: 0.9rem 0 1rem; color: var(--blue-bright); }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
.pillar p { color: var(--muted); font-size: 0.94rem; }

.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.ladder__step {
  position: relative; padding: 1.6rem 1.5rem 1.6rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(47, 139, 255, 0.05), var(--surface) 60%);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.ladder__step:hover { border-color: rgba(47, 139, 255, 0.4); transform: translateY(-4px); }
.ladder__tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); }
.ladder__step h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 0.5rem 0 0.4rem; }
.ladder__step p { color: var(--muted); font-size: 0.9rem; }
.ladder__connector { position: absolute; top: 50%; right: -0.85rem; width: 1.1rem; height: 1px; background: var(--line-strong); z-index: 2; }
.ladder__connector::after { content: '›'; position: absolute; right: -4px; top: -10px; color: var(--blue-bright); font-size: 1rem; }

/* ============ SALA VIP ============ */

.vip__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.vip__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); will-change: transform; }
.vip__media video { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; display: block; }
.vip__badge {
  position: absolute; bottom: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.95rem; border-radius: 12px; background: rgba(6, 9, 18, 0.82);
  backdrop-filter: blur(12px); border: 1px solid var(--line-strong); font-size: 0.72rem; font-weight: 600;
}
.vip__badge img { width: 26px; height: 26px; border-radius: 7px; }
.vip__copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin: 0.9rem 0 1.1rem; }
.vip__copy > p { color: var(--muted); margin-bottom: 1.4rem; max-width: 52ch; }
.checklist { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.85rem 1.1rem; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); transition: border-color 0.3s, transform 0.3s var(--ease); }
.checklist li:hover { border-color: rgba(43, 213, 126, 0.4); transform: translateX(6px); }
.checklist li svg { width: 19px; height: 19px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.checklist li span { font-size: 0.95rem; }

/* ============ MÓDULOS ============ */

.tabs { display: inline-flex; gap: 0.3rem; padding: 0.35rem; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); margin: 0 auto 2.6rem; }
.tabs button { padding: 0.55rem 1.2rem; font-size: 0.85rem; font-weight: 500; color: var(--muted); border-radius: 99px; transition: color 0.3s, background 0.3s; }
.tabs button.is-active { color: #04070d; background: var(--grad); font-weight: 600; }

.mgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.mcard {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: border-color 0.35s, transform 0.4s var(--ease), box-shadow 0.4s; will-change: transform;
}
.mcard:hover { border-color: rgba(47, 139, 255, 0.5); transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5); }
.mcard__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.mcard__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.86) contrast(1.05); transition: transform 0.7s var(--ease), filter 0.5s; }
.mcard:hover .mcard__media img { transform: scale(1.06); filter: brightness(1) contrast(1.05); }
.mcard__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 9, 18, 0.92) 6%, rgba(6, 9, 18, 0.25) 42%, transparent 65%); }
.mcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85);
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(47, 139, 255, 0.16); border: 1px solid var(--blue); backdrop-filter: blur(6px);
  color: var(--blue-bright); opacity: 0; transition: opacity 0.35s, transform 0.35s var(--ease); z-index: 2;
}
.mcard:hover .mcard__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.mcard__body { position: absolute; inset: auto 0 0 0; padding: 1.1rem 1.1rem 1.15rem; z-index: 2; }
.mcard__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.24rem 0.6rem; border-radius: 99px; margin-bottom: 0.55rem;
}
.mcard__tag--free { color: var(--green); border: 1px solid rgba(43, 213, 126, 0.4); background: rgba(43, 213, 126, 0.1); }
.mcard__tag--pro { color: var(--blue-bright); border: 1px solid rgba(47, 139, 255, 0.4); background: rgba(47, 139, 255, 0.1); }
.mcard__tag--mc { color: var(--gold); border: 1px solid rgba(245, 196, 81, 0.4); background: rgba(245, 196, 81, 0.1); }
.mcard__body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.2; }
.mcard__body p { color: var(--muted); font-size: 0.82rem; margin-top: 0.3rem; }
.mcard[hidden] { display: none; }
.modules__note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 2.4rem; }

/* ============ RESULTADOS ============ */

.results__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.4rem; }
.results__controls { display: flex; gap: 0.6rem; }
.icon-btn {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); font-size: 1.3rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.icon-btn:hover { background: var(--grad); color: #04070d; border-color: transparent; transform: translateY(-2px); }
.icon-btn[disabled] { opacity: 0.35; pointer-events: none; }

.rtrack {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0.4rem 0 1.2rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab;
}
.rtrack::-webkit-scrollbar { display: none; }
.rtrack.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.rtrack.is-dragging .rcard { pointer-events: none; }
.rcard {
  flex: 0 0 auto; width: clamp(240px, 26vw, 300px); scroll-snap-align: center;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface);
  transition: border-color 0.35s, transform 0.45s var(--ease), box-shadow 0.45s;
}
.rcard:hover { border-color: rgba(47, 139, 255, 0.45); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5); }
.rcard video, .rcard img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: #04070d; }

/* ============ MENTOR ============ */

.mentor__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: center; }
.mentor__media { position: relative; }
.mentor__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%;
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); filter: contrast(1.05);
}
.mentor__tag {
  position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 11px; background: rgba(6, 9, 18, 0.78); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.mentor__copy h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; margin: 0.9rem 0 1.2rem; }
.mentor__copy > p { color: var(--muted); margin-bottom: 1.4rem; max-width: 56ch; }
.mentor__copy blockquote {
  position: relative; padding: 1.2rem 1.4rem 1.2rem 1.7rem; border-radius: 14px;
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  background: var(--surface); font-size: 1.02rem; font-style: italic; color: var(--text); margin-bottom: 1.8rem;
}
.mentor__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mentor__facts > div { padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease); }
.mentor__facts > div:hover { border-color: rgba(47, 139, 255, 0.45); background: var(--blue-soft); transform: translateY(-4px); }
.mentor__facts strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.mentor__facts span { color: var(--muted); font-size: 0.8rem; }

/* ============ TIME ============ */

.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 940px; margin-inline: auto; }
.pcard {
  display: flex; gap: 1.5rem; align-items: center; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.pcard:hover { border-color: rgba(47, 139, 255, 0.45); transform: translateY(-5px); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45); }
.pcard img {
  width: clamp(132px, 17vw, 168px); aspect-ratio: 3 / 4; height: auto;
  border-radius: 16px; object-fit: cover; object-position: 50% 20%;
  flex-shrink: 0; border: 1px solid var(--line-strong); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.pcard__role { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-bright); }
.pcard h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 0.3rem 0 0.4rem; }
.pcard p { color: var(--muted); font-size: 0.86rem; }

/* ============ PLANOS ============ */

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 1.9rem 1.7rem; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--surface); overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.plan:hover { border-color: rgba(47, 139, 255, 0.5); transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5); }
.plan__label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.plan__price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; margin: 0.7rem 0 0.1rem; line-height: 1; }
.plan__per { color: var(--muted); font-size: 0.82rem; margin-bottom: 1.3rem; }
.plan ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; flex-grow: 1; }
.plan ul li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.plan ul li svg { width: 16px; height: 16px; color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; }

.plan--featured { border-color: rgba(47, 139, 255, 0.5); background: linear-gradient(170deg, rgba(47, 139, 255, 0.1), var(--surface) 55%); box-shadow: 0 0 0 1px rgba(47, 139, 255, 0.2), 0 30px 70px rgba(0, 0, 0, 0.5); }
.plan--featured::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.5; pointer-events: none; }
.plan__badge { position: absolute; top: 0; right: 1.5rem; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; padding: 0.35rem 0.8rem 0.4rem; background: var(--grad); color: #04070d; border-radius: 0 0 9px 9px; }
.plan--gold { border-color: rgba(245, 196, 81, 0.35); background: linear-gradient(170deg, rgba(245, 196, 81, 0.08), var(--surface) 55%); }
.plan--gold .plan__price, .plan--gold .plan ul li svg { color: var(--gold); }
.plan--gold:hover { border-color: rgba(245, 196, 81, 0.6); }
.pricing__note { text-align: center; color: var(--muted); font-size: 0.86rem; max-width: 64ch; margin: 2.6rem auto 0; }

/* ============ FAQ ============ */

.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq-item.is-open { border-color: rgba(47, 139, 255, 0.4); }
.faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.2rem 1.3rem; font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; }
.faq-item button::after { content: '+'; font-size: 1.4rem; color: var(--blue-bright); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.is-open button::after { transform: rotate(45deg); }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item__panel p { padding: 0 1.3rem 1.3rem; color: var(--muted); font-size: 0.95rem; }

/* ============ FINAL CTA ============ */

.finalcta { padding: 6rem 0 7rem; }
.finalcta__card {
  position: relative; text-align: center; padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)); overflow: hidden;
}
.finalcta__glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 600px; height: 320px; background: radial-gradient(ellipse, rgba(47, 139, 255, 0.2), transparent 65%); filter: blur(40px); pointer-events: none; }
.finalcta__card h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.025em; margin: 1rem 0 1rem; position: relative; }
.finalcta__card p { color: var(--muted); max-width: 54ch; margin-inline: auto; font-size: 1.05rem; position: relative; }
.finalcta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.4rem; position: relative; }

/* ============ FOOTER ============ */

.footer { border-top: 1px solid var(--line); padding: 2.4rem 0 2.6rem; }
.footer__inner { display: flex; align-items: center; gap: 1.4rem 2rem; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-inline: auto; }
.footer__nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.25s; }
.footer__nav a:hover { color: var(--blue-bright); }
.footer__top { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); flex-shrink: 0; transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), border-color 0.3s; }
.footer__top:hover { background: var(--grad); border-color: transparent; color: #04070d; transform: translateY(-4px); }
.footer__bottom { margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer__disclaimer { color: var(--muted); font-size: 0.72rem; max-width: 64ch; margin-inline: auto; text-align: center; }

/* ============ AÇÕES FLUTUANTES (WhatsApp + trilha) ============ */

.fab-stack {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem;
}

.fab {
  position: relative; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.fab--wa { background: #25d366; color: #04250f; box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42); }
.fab--wa svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.fab--wa:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 42px rgba(37, 211, 102, 0.6); }
.fab--wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: pulse-wa 2.6s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sound-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 0.95rem; border-radius: 99px;
  border: 1px solid var(--line-strong); background: rgba(10, 14, 24, 0.8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--muted); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.sound-toggle:hover { color: var(--text); border-color: var(--blue); transform: translateY(-2px); }
.sound-toggle.is-playing { color: var(--blue-bright); border-color: rgba(47, 139, 255, 0.5); }
.sound-toggle__eq { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.sound-toggle__eq i { width: 3px; height: 4px; background: currentColor; border-radius: 2px; transition: height 0.2s; }
.sound-toggle.is-playing .sound-toggle__eq i { animation: eq 0.9s ease-in-out infinite; }
.sound-toggle.is-playing .sound-toggle__eq i:nth-child(2) { animation-delay: 0.15s; }
.sound-toggle.is-playing .sound-toggle__eq i:nth-child(3) { animation-delay: 0.3s; }
.sound-toggle.is-playing .sound-toggle__eq i:nth-child(4) { animation-delay: 0.45s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 14px; } }
.sound-toggle__label { font-size: 0.6rem; }
@media (max-width: 560px) {
  .fab-stack { bottom: 1rem; right: 1rem; gap: 0.6rem; }
  .fab { width: 52px; height: 52px; }
  .fab--wa svg { width: 27px; height: 27px; }
  .sound-toggle { padding: 0.55rem 0.7rem; }
  .sound-toggle__label { display: none; }
}

/* ============ REVEAL ============ */

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.85s var(--ease) var(--d, 0s), transform 0.85s var(--ease) var(--d, 0s); }
.reveal.is-inview { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVO ============ */

@media (max-width: 1024px) {
  .hero__grid { gap: 2.5rem; }
  .method__pillars, .mgrid { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .proofbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}

@media (max-width: 880px) {
  .nav__links, .nav__actions .btn { display: none; }
  .burger { display: flex; }

  .hero { padding-top: 7rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__photo-frame { max-width: 340px; }
  .market { position: static; width: 100%; margin: 0.9rem auto 0; animation: none; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); }
  .chip--1 { top: 0.8rem; right: 0.8rem; }
  .hero__title { font-size: clamp(2.1rem, 8.5vw, 3rem); }
  .hero__scroll { display: none; }

  .section { padding: 5rem 0; }

  .ladder { grid-template-columns: 1fr; }
  .ladder__connector { display: none; }

  .vip__grid, .mentor__grid, .faq__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mentor__media { max-width: 380px; margin-inline: auto; }
  .team__grid { grid-template-columns: 1fr; }

  .footer { padding-bottom: 7.5rem; }
  .footer__inner { flex-direction: column; gap: 1.3rem; text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__disclaimer { max-width: 42ch; }
}

@media (max-width: 560px) {
  .method__pillars, .mgrid, .pgrid { grid-template-columns: 1fr; }
  .proofbar__grid { grid-template-columns: 1fr 1fr; }
  .mentor__facts { grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; }
  .mentor__facts > div { padding: 0.9rem 0.7rem; }
  .mentor__facts strong { font-size: 1.3rem; }

  .hero__metrics { flex-direction: column; align-items: stretch; gap: 0; margin-top: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
  .hero__metric { flex-direction: row; align-items: baseline; justify-content: flex-start; gap: 0.9rem; padding: 0.95rem 1.2rem; }
  .hero__metric strong { font-size: 1.3rem; min-width: 5.4rem; }
  .hero__metric span { font-size: 0.84rem; text-align: left; }
  .hero__metric-sep { display: none; }
  .hero__metric + .hero__metric { border-top: 1px solid var(--line); }

  .btn--lg { width: 100%; justify-content: center; }
  .hero__ctas { flex-direction: column; }
  .finalcta__actions .btn { width: 100%; }
  .tabs { display: flex; width: 100%; }
  .tabs button { flex: 1; padding: 0.55rem 0.4rem; font-size: 0.78rem; }
  .results__head { flex-direction: column; align-items: flex-start; }
}

/* ============ ACESSIBILIDADE ============ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
