/* =============================================================
   MASTERCLASS ANTIGRAVITY — DARK + SPARO ORANGE
   Dark base · Laranja #FF5400 como accent da marca Sparo
   ============================================================= */

:root {
  /* Sparo brand accent */
  --orange: #ff5400;
  --orange-deep: #e64700;
  --orange-soft: #ff7a33;
  --orange-glow: #ff8a3d;
  --cream: #ffecd3;
  --cream-lo: #fbe3c0;

  /* Dark base palette */
  --bg-0: #06060b;
  --bg-1: #0a0a14;
  --bg-2: #0f0f1e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hi: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.14);
  --border-orange: rgba(255, 84, 0, 0.35);

  /* Ink (text) */
  --ink-0: #ffffff;
  --ink-1: #e7e7ef;
  --ink-2: #a8aabd;
  --ink-3: #6d6f85;

  /* Gradients */
  --g-orange: linear-gradient(135deg, #ff5400 0%, #ff7a33 100%);
  --g-orange-vibrant: linear-gradient(135deg, #ff3d00 0%, #ff5400 45%, #ffaa66 100%);
  --g-text: linear-gradient(135deg, #ffffff 0%, #ffd4b0 50%, #ff7a33 100%);
  --g-fade-orange: linear-gradient(135deg, rgba(255, 84, 0, 0.22), rgba(255, 122, 51, 0.06));

  /* Shadows — Sparo signature kept, darker mode */
  --shadow-btn: rgba(255, 84, 0, 0.5) -5px 6px 0 0, rgba(255, 255, 255, 0.15) 0 -2px 5px 0 inset;
  --shadow-btn-hover: rgba(255, 84, 0, 0.6) -7px 8px 0 0, rgba(255, 255, 255, 0.18) 0 -2px 5px 0 inset;
  --shadow-glow: 0 10px 40px -10px rgba(255, 84, 0, 0.55), 0 0 90px -20px rgba(255, 84, 0, 0.3);
  --shadow-card: 0 12px 40px -12px rgba(0, 0, 0, 0.6);
  --shadow-inset: inset 0 1px 0 0 rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display: "Geist", system-ui, sans-serif;
  --font-body: "Inter Display", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Radius + motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;

  --container: 1200px;
  --nav-h: 80px;
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--ink-1);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* =============================================================
   BACKGROUND FX
   ============================================================= */
.bg-fx {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
}
.bg-blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
}
.bg-blob.a { background: #ff5400; opacity: 0.28; top: -200px; left: -200px; animation: floatA 18s ease-in-out infinite; }
.bg-blob.b { background: #ff7a33; opacity: 0.18; top: 20%; right: -200px; animation: floatB 22s ease-in-out infinite; }
.bg-blob.c { background: #ffecd3; opacity: 0.08; bottom: -200px; left: 30%; animation: floatC 28s ease-in-out infinite; }

@keyframes floatA { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(120px,80px) scale(1.1);} }
@keyframes floatB { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-140px,100px) scale(0.9);} }
@keyframes floatC { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(80px,-60px) scale(1.15);} }

/* =============================================================
   UTILITIES
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 80px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.text-orange { color: var(--orange); }
.text-gradient-orange {
  background: var(--g-orange-vibrant);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient {
  background: var(--g-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-orange);
  background: rgba(255, 84, 0, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-soft);
  backdrop-filter: blur(12px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 84, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 84, 0, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 84, 0, 0.05); }
}
.kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink-0); line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.015em; }

/* =============================================================
   BUTTONS (Sparo signature shadow, dark-mode version)
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  letter-spacing: -0.01em;
}
.btn i, .btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translate(2px, -2px);
  box-shadow: var(--shadow-btn-hover);
  background: var(--orange-deep);
}
.btn-primary:active { transform: translate(-3px, 4px); box-shadow: rgba(255, 84, 0, 0.5) -1px 1px 0 0; }

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--ink-1);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--surface-hi); border-color: var(--orange-soft); }
.btn-block { width: 100%; }

.btn-shine::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-22deg);
  animation: shine 3.2s infinite;
}
@keyframes shine {
  0% { left: -80%; }
  60%, 100% { left: 140%; }
}

/* =============================================================
   GLASS
   ============================================================= */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card), var(--shadow-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =============================================================
   TOP BAR
   ============================================================= */
.top-bar {
  position: relative;
  background: linear-gradient(90deg, rgba(255,84,0,0.18), rgba(255,122,51,0.12), rgba(255,236,211,0.08));
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  z-index: 60;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.top-bar strong { color: var(--orange-soft); }
.countdown {
  display: inline-flex; gap: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.countdown .cd-block {
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 32px;
  text-align: center;
  border: 1px solid var(--border-orange);
}
.top-bar a {
  color: var(--orange-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================================
   NAVBAR
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #fff;
}
.logo-wordmark {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 560px) {
  .logo-wordmark { height: 48px; }
}
.logo-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--g-orange);
  display: grid; place-items: center;
  box-shadow: 0 4px 18px -4px rgba(255, 84, 0, 0.7);
  overflow: hidden;
}
.logo-mark img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-2); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav .btn { padding: 10px 20px; font-size: 14px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero-inner { text-align: center; max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 { margin-top: 28px; font-weight: 700; }
.hero h1 .line { display: block; }
.hero h1 .line-sm {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 18px auto 0;
  max-width: 720px;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
}
.hero h1 .highlight::before {
  content: "";
  position: absolute;
  inset: 12% -2% -6% -2%;
  background: var(--orange);
  transform: skew(-8deg);
  z-index: -1;
  box-shadow: 0 0 40px rgba(255, 84, 0, 0.55);
}

.hero-sub {
  margin: 28px auto 0;
  max-width: 680px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  line-height: 1.6;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta {
  display: flex; gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.hero-trust .stars { color: var(--orange); letter-spacing: 2px; }
.hero-faces { display: inline-flex; margin-right: 2px; }
.hero-faces span {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--bg-0);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.hero-faces span:first-child { margin-left: 0; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 72px auto 0;
  max-width: 860px;
}
.hero-stat {
  padding: 22px 14px;
  text-align: center;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--g-orange-vibrant);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  font-weight: 600;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity var(--dur), color var(--dur);
  letter-spacing: -0.02em;
}
.marquee-item:hover { color: #fff; opacity: 1; }
.marquee-item .chip {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--g-fade-orange);
  border: 1px solid var(--border);
  color: var(--orange-soft);
  font-size: 14px;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-1), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-1), transparent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   SECTION HEADER
   ============================================================= */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; margin-top: 18px; }

/* =============================================================
   PROBLEM
   ============================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.problem-text h2 { margin-bottom: 20px; }
.problem-text p { color: var(--ink-2); font-size: 1.05rem; }
.problem-text p + p { margin-top: 18px; }
.problem-text strong { color: #fff; font-weight: 600; }

.problem-split {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-card {
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.split-card .ic {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 10px;
}
.split-card.loser .ic { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.split-card.winner .ic { background: rgba(255, 84, 0, 0.15); color: var(--orange-soft); border: 1px solid var(--border-orange); }
.split-card h4 { font-size: 14px; color: #fff; margin-bottom: 4px; font-family: var(--font-display); letter-spacing: -0.01em; }
.split-card p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Terminal */
.terminal {
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #0b0b18, #060610);
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
}
.terminal-head {
  display: flex; align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.terminal-head .dot { width: 11px; height: 11px; border-radius: 50%; background: #333; }
.terminal-head .dot.r { background: #ff5f57; }
.terminal-head .dot.y { background: #febc2e; }
.terminal-head .dot.g { background: #28c840; }
.terminal-head .title { margin-left: 10px; color: var(--ink-3); font-size: 12px; }
.terminal-body { padding: 20px; }
.term-line { display: block; opacity: 0; animation: termLine 0.4s var(--ease) forwards; }
.term-line + .term-line { margin-top: 8px; }
.term-line .tag { color: var(--orange-soft); }
.term-line.ok .tag { color: #a3e635; }
.term-line.ok .val { color: #a3e635; }
.term-line.warn .tag { color: #fbbf24; }
.term-caret { display: inline-block; width: 8px; height: 14px; background: var(--orange); vertical-align: middle; margin-left: 4px; animation: blink 1s steps(1) infinite; }
@keyframes termLine { to { opacity: 1; } }
.term-line:nth-child(1) { animation-delay: 0.3s; }
.term-line:nth-child(2) { animation-delay: 0.9s; }
.term-line:nth-child(3) { animation-delay: 1.5s; }
.term-line:nth-child(4) { animation-delay: 2.1s; }
.term-line:nth-child(5) { animation-delay: 2.7s; }
.term-line:nth-child(6) { animation-delay: 3.3s; }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   MODULES — Cards brandados (dark blue + laranja neon) ficam nativos aqui
   ============================================================= */
.modules-section { position: relative; }
.modules-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255, 84, 0, 0.1), transparent 60%);
  pointer-events: none;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module-card {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  cursor: pointer;
  isolation: isolate;
}
.module-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px var(--bg-0);
}
.module-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(255, 84, 0, 0.35); }
.module-card:hover img { transform: scale(1.04); }
.module-card .num {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 12px;
  background: rgba(6, 6, 11, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-soft);
  z-index: 2;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .module-card .num { font-size: 10px; padding: 3px 9px; top: 10px; right: 10px; }
}

/* =============================================================
   BENTO
   ============================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}
.bento-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--g-orange);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur);
  pointer-events: none;
}
.bento-card:hover::before { opacity: 0.7; }
.bento-card:hover { transform: translateY(-4px); }
.bento-card .ic-lg {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--g-fade-orange);
  border: 1px solid var(--border-orange);
  color: var(--orange-soft);
  margin-bottom: 18px;
}
.bento-card .ic-lg svg, .bento-card .ic-lg i { width: 22px; height: 22px; }
.bento-card h3 { margin-bottom: 8px; }
.bento-card p { color: var(--ink-2); font-size: 0.95rem; }
.bento-card.b-feature { grid-column: span 3; grid-row: span 2; padding: 36px; }
.bento-card.b-feature { background:
    radial-gradient(circle at 80% 0%, rgba(255, 84, 0, 0.3), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.bento-card.b-wide { grid-column: span 3; }
.bento-card.b-default { grid-column: span 2; }
.bento-card.b-feature h3 { font-size: 1.65rem; }
.bento-card.b-feature .tag {
  display: inline-flex; gap: 6px; align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid var(--border-orange);
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.bento-illus {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--r-md);
  background: rgba(0,0,0,0.3);
  border: 1px dashed var(--border-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.8;
}
.bento-illus .k { color: var(--orange-soft); }
.bento-illus .s { color: #a3e635; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-card.b-feature, .bento-card.b-wide, .bento-card.b-default { grid-column: span 2; grid-row: auto; }
}

/* =============================================================
   TARGET
   ============================================================= */
.target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.target-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--dur), transform var(--dur);
}
.target-card:hover { border-color: var(--border-orange); transform: translateY(-4px); }
.target-card .ic-lg {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--g-fade-orange); border: 1px solid var(--border-orange);
  color: var(--orange-soft);
  margin-bottom: 20px;
}
.target-card .ic-lg svg { width: 22px; height: 22px; }
.target-card h3 { margin-bottom: 10px; }
.target-card ul { margin-top: 18px; display: grid; gap: 10px; }
.target-card li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.target-card li svg { color: var(--orange-soft); flex: none; margin-top: 3px; width: 16px; height: 16px; }
@media (max-width: 860px) { .target-grid { grid-template-columns: 1fr; } }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  gap: 16px;
  transition: border-color var(--dur), transform var(--dur);
}
.testimonial:hover { border-color: var(--orange-soft); transform: translateY(-3px); }
.testimonial .stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.testimonial blockquote { color: var(--ink-1); font-size: 0.98rem; line-height: 1.6; }
.testimonial blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); line-height: 0; position: relative; top: 12px; margin-right: 4px; opacity: 0.6; }
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.avatar-photo {
  width: 42px; height: 42px; border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex: none;
  border: 2px solid var(--border-orange);
}
.who h5 { font-size: 14px; color: #fff; font-family: var(--font-display); letter-spacing: -0.01em; }
.who span { font-size: 12px; color: var(--ink-3); }
.testimonial.highlight {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 84, 0, 0.28), transparent 60%),
    var(--surface-hi);
  border-color: var(--orange);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.testimonial.highlight h3 { font-size: 1.4rem; }
.testimonial.highlight p { color: var(--ink-2); font-size: 14px; margin: 12px 0 20px; }
.testimonial.highlight a { color: var(--orange-soft); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =============================================================
   INSTRUCTOR
   ============================================================= */
.instructor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.instructor-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, rgba(255, 84, 0, 0.12), rgba(255, 236, 211, 0.05));
  border: 1px solid var(--border-orange);
}
.instructor-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  z-index: 0;
}
.instructor-card .float-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(6, 6, 11, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-orange);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-soft);
  z-index: 2;
  font-weight: 600;
}
.instructor-card .cap {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(6, 6, 11, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  z-index: 2;
}
.instructor-card .cap h4 { font-size: 1.1rem; font-family: var(--font-display); margin-bottom: 2px; color: #fff; }
.instructor-card .cap span { color: var(--ink-2); font-size: 13px; }

.instructor-text .kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin: 28px 0;
}
.kpi {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.kpi .n {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--g-orange-vibrant);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kpi .l { font-size: 12px; color: var(--ink-2); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

.check-list { display: grid; gap: 12px; margin-top: 26px; }
.check-list li {
  display: flex; gap: 12px;
  align-items: flex-start;
  color: var(--ink-1);
  font-size: 15px;
}
.check-list li svg, .check-list li i {
  color: var(--orange-soft); flex: none; margin-top: 3px;
  width: 18px; height: 18px;
}
@media (max-width: 880px) {
  .instructor-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .instructor-text { display: contents; }
  .instructor-text > .kicker { order: 1; margin-bottom: 16px; }
  .instructor-card {
    order: 2;
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 420px;
    min-height: 380px;
    margin: 0 auto 28px;
    display: block;
  }
  .instructor-text > h2 { order: 3; }
  .instructor-text > p { order: 4; }
  .instructor-text > .kpis { order: 5; margin: 22px 0; }
  .instructor-text > .check-list { order: 6; margin-bottom: 8px; }
  .instructor-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    z-index: 1;
  }
  .instructor-card .float-badge,
  .instructor-card .cap { z-index: 3; }
}

/* =============================================================
   OFFER
   ============================================================= */
.offer-wrap { position: relative; }
.offer-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 84, 0, 0.28), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}
.offer-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.offer-left { padding: 40px; }
.offer-left h3 { font-size: 1.6rem; margin-bottom: 8px; }
.offer-left p.sub { color: var(--ink-2); font-size: 0.98rem; margin-bottom: 28px; }
.offer-list { display: grid; gap: 0; }
.offer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px dashed var(--border);
  gap: 24px;
}
.offer-row:first-child { border-top: 0; }
.offer-row h4 { font-family: var(--font-display); font-size: 15px; color: #fff; letter-spacing: -0.01em; margin-bottom: 2px; }
.offer-row p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.offer-row .val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: line-through;
  white-space: nowrap;
  flex: none;
}
.offer-row.bonus .val { color: var(--orange-soft); text-decoration: none; font-weight: 600; }
.offer-row.bonus h4::before {
  content: "BÔNUS";
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 84, 0, 0.15);
  border: 1px solid var(--border-orange);
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  border-radius: var(--r-full);
  margin-right: 8px;
  vertical-align: 2px;
  font-weight: 700;
}
.offer-total {
  display: flex; justify-content: space-between;
  padding: 20px 0 0;
  margin-top: 14px;
  border-top: 2px solid var(--border-hi);
  color: var(--ink-2);
  font-size: 14px;
}
.offer-total .val { font-family: var(--font-mono); text-decoration: line-through; color: var(--ink-3); }

.offer-right {
  padding: 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 84, 0, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(255,84,0,0.06), rgba(255,122,51,0.02));
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  justify-content: center;
}
.save-pill {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px -8px rgba(255, 84, 0, 0.6);
}
.save-pill b { color: #fff; }
.price-label { font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.price {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); color: #fff;
  margin: 8px 0 6px;
}
.price .sm { font-size: 18px; color: var(--ink-2); font-weight: 500; }
.price .big { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.04em; color: var(--orange-soft); }
.price-sub { font-size: 14px; color: var(--ink-2); }
.price-cash { color: #fff; font-weight: 700; }
.offer-right .btn { margin-top: 28px; }
.pay-row {
  margin-top: 20px;
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  flex-wrap: wrap;
  font-weight: 600;
}
.trust-mini {
  margin-top: 18px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.trust-mini span { display: inline-flex; gap: 6px; align-items: center; }
.trust-mini svg { color: var(--orange-soft); width: 16px; height: 16px; }

@media (max-width: 900px) {
  .offer-card { grid-template-columns: 1fr; }
  .offer-right { border-left: 0; border-top: 1px solid var(--border); }
  .offer-left, .offer-right { padding: 28px; }
}

/* =============================================================
   GUARANTEE
   ============================================================= */
.guarantee {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 84, 0, 0.18), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-hi);
  text-align: center;
}
.shield {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--g-fade-orange);
  border: 1px solid var(--border-orange);
  color: var(--orange-soft);
  box-shadow: 0 0 40px rgba(255, 84, 0, 0.25);
}
.shield svg { width: 40px; height: 40px; }
.guarantee h2 { margin-bottom: 14px; }
.guarantee p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; max-width: 640px; margin: 0 auto; }
.guarantee-laurel {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin-top: 28px;
  opacity: 0.55;
}
.guarantee-laurel img { width: 36px; height: 36px; filter: invert(1) opacity(0.8); }
.guarantee-laurel .txt {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  gap: 20px;
  transition: color var(--dur);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--orange-soft); }
.faq-q .pm {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--orange-soft);
  transition: transform var(--dur), background var(--dur);
}
.faq-q .pm svg { width: 16px; height: 16px; transition: transform var(--dur); }
.faq-item.open .faq-q .pm { background: var(--orange); border-color: transparent; color: #fff; }
.faq-item.open .faq-q .pm svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq-a-inner { padding: 0 26px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* =============================================================
   FINAL CTA
   ============================================================= */
.final-cta {
  padding: 110px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 84, 0, 0.3), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 51, 0.15), transparent 60%);
  z-index: -1;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 800px; margin: 0 auto 24px; }
.final-cta p { color: var(--ink-2); max-width: 540px; margin: 0 auto 32px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner p { font-size: 13px; color: var(--ink-3); }
.footer-inner .footer-nav { display: flex; gap: 22px; font-size: 13px; }
.footer-inner .footer-nav a { color: var(--ink-2); transition: color var(--dur); }
.footer-inner .footer-nav a:hover { color: var(--orange-soft); }

/* =============================================================
   REVEAL ON SCROLL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 40px; }
  .btn-large { padding: 16px 26px; font-size: 15px; }
  .section-head { margin-bottom: 44px; }
  .offer-left, .offer-right, .guarantee { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bg-blob, .marquee-track { animation: none; }
}
