/* ============================================================
   ASCENSÃO — Landing page
   Design system: navy profundo + ouro + verde ascensão
   ============================================================ */

:root {
  --bg: #070b18;
  --bg-2: #0b1020;
  --bg-3: #0e1428;
  --card: #10172e;
  --card-2: #141c38;
  --line: rgba(148, 163, 210, 0.14);
  --line-strong: rgba(148, 163, 210, 0.26);
  --text: #ecf0fb;
  --muted: #93a0c2;
  --muted-2: #6b7699;
  --gold: #f5b72e;
  --gold-soft: #f8d477;
  --gold-deep: #c98d12;
  --green: #2dd4a7;
  --green-deep: #16a37e;
  --blue: #5b9cff;
  --red: #ff6b7a;
  --grad-gold: linear-gradient(115deg, #f8d477 0%, #f5b72e 45%, #e09c17 100%);
  --grad-green: linear-gradient(115deg, #4ce3b8 0%, #2dd4a7 60%, #16a37e 100%);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-card: 0 20px 60px rgba(2, 5, 14, 0.55);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: rgba(245, 183, 46, 0.35); color: #fff; }

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.015em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.green-text { color: var(--green); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity 0.55s ease, visibility 0.55s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .pre-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: 0.42em; text-indent: 0.42em;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
#preloader .pre-bar {
  width: min(240px, 60vw); height: 3px; border-radius: 3px;
  background: rgba(148, 163, 210, 0.15); overflow: hidden;
}
#preloader .pre-bar i {
  display: block; height: 100%; width: 0%;
  background: var(--grad-gold); border-radius: 3px;
  animation: preFill 1.1s ease-out forwards;
}
@keyframes preFill { to { width: 100%; } }

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-gold); z-index: 120;
}

/* ---------- Custom cursor (desktop) ---------- */
#cursor-dot, #cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  #cursor-dot {
    display: block; position: fixed; z-index: 150; pointer-events: none;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); top: 0; left: 0;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    display: block; position: fixed; z-index: 150; pointer-events: none;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(245, 183, 46, 0.5);
    top: 0; left: 0; transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s;
  }
  body.cursor-hover #cursor-ring {
    width: 54px; height: 54px; border-color: rgba(45, 212, 167, 0.75);
  }
}

/* ---------- Nav ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7, 11, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
#nav .nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.2em;
  font-size: 0.95rem;
}
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-brand .brand-name {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 0.92rem; font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  margin-left: 8px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 10px 20px; border-radius: 999px;
  background: var(--grad-gold); color: #17120a;
  box-shadow: 0 4px 22px rgba(245, 183, 46, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 183, 46, 0.42); }
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: var(--font-display); font-weight: 700;
  border-radius: 999px; cursor: pointer; border: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
  will-change: transform;
}
.btn-gold {
  background: var(--grad-gold); color: #17120a;
  padding: 17px 34px; font-size: 1.02rem;
  box-shadow: 0 6px 30px rgba(245, 183, 46, 0.32);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 42px rgba(245, 183, 46, 0.5); }
.btn-ghost {
  background: rgba(148, 163, 210, 0.08); color: var(--text);
  padding: 17px 30px; font-size: 1rem;
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(148, 163, 210, 0.14); }
.btn svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(45, 212, 167, 0.07), transparent 60%),
    radial-gradient(900px 600px at 12% 90%, rgba(245, 183, 46, 0.06), transparent 60%),
    linear-gradient(180deg, #0a1024 0%, var(--bg) 78%);
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--green); text-transform: uppercase;
  border: 1px solid rgba(45, 212, 167, 0.35);
  background: rgba(45, 212, 167, 0.07);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
#hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 800; margin-bottom: 24px;
}
#hero h1 .h1-line { display: block; overflow: hidden; }
#hero h1 .h1-line > span { display: block; }
.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--muted);
  max-width: 560px; margin-bottom: 34px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 18px; }
.hero-micro { font-size: 0.85rem; color: var(--muted-2); margin-bottom: 44px; }
.hero-micro b { color: var(--muted); font-weight: 600; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px 38px;
  border-top: 1px solid var(--line); padding-top: 26px; max-width: 620px;
}
.hero-stat .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .lbl { font-size: 0.8rem; color: var(--muted-2); letter-spacing: 0.03em; }

/* Phone mockup */
.phone {
  position: relative;
  width: min(310px, 78vw);
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #1d2748, #0c1226);
  border: 1px solid rgba(148, 163, 210, 0.22);
  box-shadow: 0 40px 90px rgba(2, 5, 14, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; background: #0c1226; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone img { border-radius: 32px; width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: cover; }
.phone-float {
  position: absolute; z-index: 4;
  background: rgba(13, 19, 40, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 10px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.phone-float.f1 { top: 16%; left: -21%; color: var(--green); }
.phone-float.f2 { bottom: 22%; right: -18%; color: var(--gold-soft); }
.phone-float.f3 { bottom: 6%; left: -13%; color: var(--text); }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; }
  .phone { width: min(240px, 66vw); }
  .phone-float.f1 { left: -6%; }
  .phone-float.f2 { right: -4%; }
  .phone-float.f3 { left: -2%; }
}

/* ---------- Marquee ---------- */
#marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; overflow: hidden; background: var(--bg-2);
  position: relative; z-index: 3;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 36s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-inner { display: flex; align-items: center; white-space: nowrap; }
.marquee-inner span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.14em; color: transparent;
  -webkit-text-stroke: 1px rgba(148, 163, 210, 0.4);
  padding: 0 18px;
}
.marquee-inner i {
  font-style: normal; color: var(--gold); font-size: 0.8rem;
}

/* ---------- Sections base ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.sec-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800;
  max-width: 720px; margin-bottom: 18px;
}
.sec-sub { color: var(--muted); max-width: 640px; font-size: 1.05rem; }

/* ---------- Problema ---------- */
#problema { background: var(--bg); }
.problem-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
}
.problem-card {
  background: linear-gradient(170deg, var(--card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.problem-card:hover { transform: translateY(-6px); border-color: rgba(255, 107, 122, 0.35); }
.problem-card .ico {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(255, 107, 122, 0.1); border: 1px solid rgba(255, 107, 122, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 22px;
}
.problem-card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 0.96rem; }
.problem-punch {
  margin-top: 54px; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem); max-width: 780px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) { .problem-cards { grid-template-columns: 1fr; } }

/* ---------- Loop horizontal ---------- */
#loop { background: var(--bg-2); overflow: hidden; }
.loop-head { padding: 110px 0 30px; }
.loop-track {
  display: flex; gap: 34px; padding: 30px 28px 120px;
  width: max-content;
}
.loop-panel {
  width: min(760px, 86vw);
  background: linear-gradient(165deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: 30px;
  padding: 46px; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 38px; align-items: center; flex-shrink: 0;
}
.loop-panel .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.2em; color: var(--green); margin-bottom: 16px;
}
.loop-panel h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 16px; }
.loop-panel p { color: var(--muted); font-size: 1rem; }
.loop-panel .phone { width: min(230px, 60vw); border-radius: 34px; padding: 9px; }
.loop-panel .phone::before { width: 74px; height: 17px; top: 9px; }
.loop-panel .phone img { border-radius: 26px; }
.loop-progress {
  display: flex; gap: 8px; margin-top: 26px;
}
.loop-progress i {
  width: 34px; height: 4px; border-radius: 4px; background: rgba(148, 163, 210, 0.18);
}
.loop-progress i.on { background: var(--grad-gold); }
@media (max-width: 860px) {
  .loop-track { flex-direction: column; width: auto; padding-bottom: 90px; }
  .loop-panel { width: auto; grid-template-columns: 1fr; }
  .loop-panel .phone { margin-top: 6px; }
}

/* ---------- Demo (mini-game) ---------- */
#demo {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(245, 183, 46, 0.06), transparent 60%),
    var(--bg);
}
.demo-shell {
  max-width: 760px; margin: 60px auto 0;
  background: linear-gradient(170deg, var(--card-2) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong); border-radius: 30px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.demo-hud {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 26px; border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 24, 0.5);
  flex-wrap: wrap;
}
.demo-hud .hud-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.demo-hud .hearts span { font-size: 1.1rem; transition: opacity 0.4s, transform 0.4s; }
.demo-hud .hearts span.lost { opacity: 0.18; transform: scale(0.8); }
.demo-hud .money { color: var(--gold-soft); }
.demo-hud .combo {
  color: var(--green); font-size: 0.85rem;
  border: 1px solid rgba(45, 212, 167, 0.4); border-radius: 999px; padding: 4px 12px;
  opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s;
}
.demo-hud .combo.on { opacity: 1; transform: scale(1); }
.demo-body { padding: 30px 26px 34px; position: relative; }
.demo-client {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.demo-client .avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-3); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.demo-client .who b { font-family: var(--font-display); font-size: 1.08rem; display: block; }
.demo-client .who small { color: var(--muted-2); font-size: 0.85rem; }
.demo-question {
  font-size: 1.06rem; font-weight: 500; margin-bottom: 24px; color: var(--text);
}
.demo-options { display: grid; gap: 12px; }
.demo-opt {
  text-align: left; background: rgba(148, 163, 210, 0.05);
  border: 1px solid var(--line); border-radius: 15px;
  padding: 15px 18px; color: var(--text); font-size: 0.97rem; font-family: var(--font-body);
  cursor: pointer; display: flex; gap: 13px; align-items: flex-start;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  line-height: 1.5;
}
.demo-opt:hover:not(:disabled) { border-color: var(--gold); background: rgba(245, 183, 46, 0.06); transform: translateX(4px); }
.demo-opt:disabled { cursor: default; }
.demo-opt .letter {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: rgba(148, 163, 210, 0.12); display: flex; align-items: center; justify-content: center;
}
.demo-opt.correct { border-color: var(--green); background: rgba(45, 212, 167, 0.1); }
.demo-opt.correct .letter { background: var(--green); color: #06281e; }
.demo-opt.wrong { border-color: var(--red); background: rgba(255, 107, 122, 0.09); }
.demo-opt.wrong .letter { background: var(--red); color: #33060b; }
.demo-opt.dim { opacity: 0.45; }
.demo-parecer {
  margin-top: 22px; border-radius: 16px; padding: 20px 22px;
  border: 1px solid; font-size: 0.95rem; display: none;
}
.demo-parecer.show { display: block; }
.demo-parecer.ok { border-color: rgba(45, 212, 167, 0.4); background: rgba(45, 212, 167, 0.07); }
.demo-parecer.err { border-color: rgba(255, 107, 122, 0.4); background: rgba(255, 107, 122, 0.06); }
.demo-parecer b { font-family: var(--font-display); display: block; margin-bottom: 8px; }
.demo-parecer.ok b { color: var(--green); }
.demo-parecer.err b { color: var(--red); }
.demo-parecer p { color: var(--muted); }
.demo-next {
  margin-top: 20px; width: 100%;
  background: var(--grad-gold); color: #17120a; border: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px; border-radius: 14px; cursor: pointer; display: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.demo-next.show { display: block; }
.demo-next:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(245, 183, 46, 0.35); }
.money-pop {
  position: absolute; top: 10px; right: 26px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  color: var(--gold-soft); opacity: 0; pointer-events: none;
  text-shadow: 0 2px 18px rgba(245, 183, 46, 0.5);
}
.demo-progressbar { display: flex; gap: 7px; margin-bottom: 24px; }
.demo-progressbar i {
  flex: 1; height: 5px; border-radius: 5px; background: rgba(148, 163, 210, 0.16);
  transition: background 0.4s;
}
.demo-progressbar i.done { background: var(--grad-gold); }
/* end screen */
.demo-end { text-align: center; padding: 14px 4px; }
.demo-end .end-emoji { font-size: 3rem; margin-bottom: 14px; }
.demo-end h3 { font-size: 1.6rem; margin-bottom: 10px; }
.demo-end .end-line { color: var(--muted); margin-bottom: 26px; }
.demo-end .end-line b { color: var(--gold-soft); }
.demo-end .end-stats {
  display: flex; justify-content: center; gap: 34px; margin-bottom: 30px; flex-wrap: wrap;
}
.demo-end .end-stats div b {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
}
.demo-end .end-stats div small { color: var(--muted-2); font-size: 0.8rem; }
.demo-end .end-note {
  font-size: 0.92rem; color: var(--muted); max-width: 480px; margin: 0 auto 28px;
}
.demo-end .end-note strong { color: var(--text); }
.demo-disclaimer {
  text-align: center; margin-top: 18px; font-size: 0.8rem; color: var(--muted-2);
}

/* ---------- Método ---------- */
#metodo { background: var(--bg-2); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.method-card {
  background: linear-gradient(170deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.method-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 167, 0.4); }
.method-card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(45, 212, 167, 0.35); border-radius: 999px;
  padding: 5px 12px; margin-bottom: 20px;
}
.method-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.method-card p { color: var(--muted); font-size: 0.95rem; }
.spaced-viz {
  display: flex; align-items: center; gap: 6px; margin-top: 24px; flex-wrap: wrap;
}
.spaced-viz .day {
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  border: 1px solid rgba(245, 183, 46, 0.45); color: var(--gold-soft);
  border-radius: 10px; padding: 7px 12px;
}
.spaced-viz .arrow { color: var(--muted-2); font-size: 0.8rem; }
.weak-viz { margin-top: 24px; display: grid; gap: 9px; }
.weak-viz .bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--muted-2); }
.weak-viz .bar-row .bar {
  height: 8px; border-radius: 6px; background: rgba(148, 163, 210, 0.15);
  flex: 1; overflow: hidden;
}
.weak-viz .bar-row .bar i {
  display: block; height: 100%; border-radius: 6px; width: 0;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.weak-viz .bar-row .bar i.g { background: var(--grad-green); }
.weak-viz .bar-row .bar i.r { background: linear-gradient(90deg, #ff8a95, var(--red)); }
.method-quote {
  margin-top: 54px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto;
  color: var(--muted); font-size: 1.05rem;
}
.method-quote strong { color: var(--text); }
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }

/* ---------- A prova (mapa) ---------- */
#prova { background: var(--bg); }
.exam-facts {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 44px 0 54px;
}
.exam-facts .fact {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 11px 20px; font-size: 0.9rem; color: var(--muted);
  background: rgba(148, 163, 210, 0.05);
}
.exam-facts .fact b { color: var(--gold-soft); font-family: var(--font-display); }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 80px; }
.module-card {
  background: linear-gradient(170deg, var(--card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
}
.module-card .mnum {
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  color: var(--green); letter-spacing: 0.16em; margin-bottom: 12px;
}
.module-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.module-card p { font-size: 0.85rem; color: var(--muted-2); }
@media (max-width: 980px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modules-grid { grid-template-columns: 1fr; } }

.concepts-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 12px; }
.concepts-sub { color: var(--muted); margin-bottom: 40px; max-width: 620px; }
.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flip-card { perspective: 1200px; min-height: 210px; cursor: pointer; }
.flip-inner {
  position: relative; width: 100%; height: 100%; min-height: 210px;
  transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: center;
}
.flip-front {
  background: linear-gradient(170deg, var(--card-2) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  align-items: flex-start; gap: 12px;
}
.flip-front .cico { font-size: 1.7rem; }
.flip-front h4 { font-size: 1.2rem; }
.flip-front small { color: var(--muted-2); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }
.flip-back {
  background: linear-gradient(170deg, rgba(245, 183, 46, 0.13) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(245, 183, 46, 0.4);
  transform: rotateY(180deg);
}
.flip-back p { font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.flip-back p b { color: var(--gold-soft); }
.concepts-note { margin-top: 40px; color: var(--muted); font-size: 0.98rem; text-align: center; }
.concepts-note strong { color: var(--text); }
@media (max-width: 900px) { .flip-grid { grid-template-columns: 1fr; } .flip-card { min-height: 185px; } .flip-inner { min-height: 185px; } }

/* ---------- Bento features ---------- */
#features { background: var(--bg-2); }
.bento {
  display: grid; gap: 20px; margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "big big rev"
    "big big off"
    "esc fire off";
}
.bento-card {
  background: linear-gradient(170deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; overflow: hidden; position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.bento-card:hover { transform: translateY(-5px); border-color: rgba(245, 183, 46, 0.4); }
.bento-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.bento-card p { color: var(--muted); font-size: 0.93rem; }
.bento-card .bico { font-size: 1.6rem; margin-bottom: 14px; }
.bento-big { grid-area: big; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.bento-big .phone { width: min(220px, 58vw); border-radius: 32px; padding: 9px; }
.bento-big .phone::before { width: 70px; height: 16px; top: 9px; }
.bento-big .phone img { border-radius: 24px; }
.bento-rev { grid-area: rev; }
.bento-esc { grid-area: esc; }
.bento-off { grid-area: off; }
.bento-fire { grid-area: fire; }
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; grid-template-areas: "big" "rev" "esc" "off" "fire"; }
  .bento-big { grid-template-columns: 1fr; }
  .bento-big .phone { margin-top: 10px; }
}

/* ---------- Preço ---------- */
#preco {
  background:
    radial-gradient(800px 480px at 50% 0%, rgba(245, 183, 46, 0.07), transparent 65%),
    var(--bg);
}
.price-compare {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 860px; margin: 52px auto 34px;
}
.pc-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; background: rgba(148, 163, 210, 0.04);
}
.pc-item small { display: block; color: var(--muted-2); font-size: 0.8rem; margin-bottom: 8px; }
.pc-item b { font-family: var(--font-display); font-size: 1.25rem; color: var(--muted); }
.pc-item.hl { border-color: rgba(245, 183, 46, 0.55); background: rgba(245, 183, 46, 0.06); }
.pc-item.hl b {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 760px) { .price-compare { grid-template-columns: 1fr; } }
.price-card {
  max-width: 620px; margin: 0 auto; position: relative;
  background: linear-gradient(170deg, var(--card-2) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(245, 183, 46, 0.45); border-radius: 32px;
  padding: 48px 44px; text-align: center;
  box-shadow: 0 30px 80px rgba(2, 5, 14, 0.6), 0 0 60px rgba(245, 183, 46, 0.08);
}
.price-card .pc-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #17120a;
  font-family: var(--font-display); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 22px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.price-card .pc-sub { color: var(--muted); margin-bottom: 30px; }
.price-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.2rem);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.price-value small { font-size: 0.32em; letter-spacing: 0.06em; }
.price-once { color: var(--green); font-weight: 600; margin: 8px 0 30px; font-size: 0.95rem; }
.price-feats {
  list-style: none; text-align: left; max-width: 420px; margin: 0 auto 34px;
  display: grid; gap: 11px;
}
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.price-feats li b { color: var(--text); font-weight: 600; }
.price-feats li .chk { color: var(--green); font-weight: 800; flex-shrink: 0; }
.price-fine { margin-top: 18px; font-size: 0.8rem; color: var(--muted-2); }

/* ---------- FAQ ---------- */
#faq { background: var(--bg-2); }
.faq-list { max-width: 800px; margin: 50px auto 0; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card) 0%, var(--bg-3) 100%);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; color: var(--text);
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); transition: transform 0.35s, background 0.35s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(245, 183, 46, 0.12); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 0.96rem; }
.faq-a-inner a { color: var(--green); }

/* ---------- CTA final ---------- */
#cta-final {
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(245, 183, 46, 0.12), transparent 65%),
    var(--bg);
  text-align: center;
}
#cta-final .sec-title { margin-left: auto; margin-right: auto; }
#cta-final .sec-sub { margin: 0 auto 40px; }
.cta-final-micro { margin-top: 20px; font-size: 0.85rem; color: var(--muted-2); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line); background: var(--bg-2);
  padding: 60px 0 40px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.foot-brand { max-width: 340px; }
.foot-brand .nav-brand { margin-bottom: 14px; }
.foot-brand p { color: var(--muted-2); font-size: 0.88rem; }
.foot-col h4 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted-2); text-decoration: none; font-size: 0.92rem; margin-bottom: 10px; transition: color 0.25s; }
.foot-col a:hover { color: var(--gold-soft); }
.foot-disclaimer {
  border-top: 1px solid var(--line); padding-top: 26px;
  font-size: 0.78rem; color: var(--muted-2); line-height: 1.7;
}
.foot-copy { margin-top: 14px; font-size: 0.78rem; color: var(--muted-2); }

/* ---------- Reveal helpers ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); }
html.no-js [data-reveal], html.reduced [data-reveal] { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  #preloader { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
}
