/* ==========================================================================
   PINHA CLUB — landing page
   Tokens
   ========================================================================== */
:root {
  --bg: #07090f;
  --bg-2: #0b0f18;
  --bg-3: #0e1320;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #f4f6fa;
  --muted: #a4adbd;
  --faint: #6b7484;
  --orange: #f29a1f;
  --red: #e8482b;
  --magenta: #a82a8f;
  --grad: linear-gradient(100deg, var(--orange) 0%, var(--red) 50%, var(--magenta) 100%);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1160px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { 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: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grão de filme — liga o vídeo ao resto da página */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 2%); }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

/* ==========================================================================
   Utilitários
   ========================================================================== */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 800px; }
.center { text-align: center; }

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

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow::after {
  content: "";
  align-self: center;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 154, 31, 0.7), transparent);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.section { padding: clamp(88px, 11vw, 150px) 0; position: relative; }
.section--alt {
  background:
    radial-gradient(1100px 520px at 85% -8%, rgba(168, 42, 143, 0.08), transparent 62%),
    radial-gradient(900px 480px at 8% 108%, rgba(242, 154, 31, 0.06), transparent 60%),
    var(--bg-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.section__lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
  text-wrap: pretty;
}

.prose p { color: var(--muted); font-size: 18px; text-wrap: pretty; }
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--text); }
.prose.center { margin-inline: auto; max-width: 640px; }

.punch {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.7vw, 30px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.015em;
  margin-top: 56px;
  text-wrap: balance;
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 10px 36px rgba(232, 72, 43, 0.32);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 16px 48px rgba(232, 72, 43, 0.45); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(242, 154, 31, 0.8); outline-offset: 3px; }
.btn--sm { padding: 11px 24px; font-size: 14px; box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 6px 22px rgba(232, 72, 43, 0.28); }
.btn--lg { padding: 20px 48px; font-size: 17px; }

/* ==========================================================================
   Nav — pill flutuante
   ========================================================================== */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav__pill {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(11, 14, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.is-solid .nav__pill {
  background: rgba(10, 13, 20, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 28px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }

/* ==========================================================================
   Hero — scroll-driven video
   ========================================================================== */
.scrolly {
  position: relative;
  height: 560vh; /* comprimento da "caminhada" da câmera */
}
.scrolly__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.scrolly__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0a0d14 url("../public/frames/poster.jpg") center / cover no-repeat;
}
.scrolly__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 7, 12, 0.55) 0%, rgba(5, 7, 12, 0.12) 34%, rgba(5, 7, 12, 0.22) 68%, #0b0f18 100%),
    radial-gradient(130% 75% at 50% 46%, transparent 52%, rgba(5, 7, 12, 0.42) 100%);
  pointer-events: none;
}
/* barra de progresso da caminhada */
.scrolly__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  z-index: 6;
}
.scrolly__progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

.scrolly__loader {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}
.scrolly__loader.is-done { opacity: 0; }
.scrolly__loader-bar {
  display: block;
  width: 120px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.scrolly__loader-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  transition: width 0.3s ease;
}

/* Capítulos sobre o vídeo */
.chapter {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 72px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.chapter.is-on { pointer-events: auto; }

.chapter__logo { height: 50px; width: auto; margin-bottom: 36px; filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5)); }

.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.028em;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.6);
  max-width: 1000px;
  text-wrap: balance;
}
.chapter__lead {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 29px);
  font-weight: 600;
  margin-top: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}
.chapter__lead strong {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chapter__sub {
  max-width: 540px;
  color: rgba(244, 246, 250, 0.82);
  margin: 20px 0 32px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}
.chapter__note { margin-top: 18px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244, 246, 250, 0.55); }

.chapter__cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 246, 250, 0.65);
}
.chapter__cue i {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
  overflow: hidden;
  position: relative;
}
.chapter__cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: translateY(-100%);
  animation: cue-drop 2s var(--ease) infinite;
}
@keyframes cue-drop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

.chapter__num {
  font-family: var(--font-display);
  font-size: clamp(84px, 15vw, 176px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 44px rgba(0, 0, 0, 0.6));
}
.chapter__stat-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
  text-wrap: balance;
}
.chapter__stat-sub {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(244, 246, 250, 0.82);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}
.chapter__index {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 246, 250, 0.55);
  margin-bottom: 18px;
}
.chapter--final .btn { margin-top: 34px; }

/* ==========================================================================
   Statement — o calor do forno vaza do hero para cá
   ========================================================================== */
.section--statement {
  padding: clamp(120px, 15vw, 200px) 0;
  background:
    radial-gradient(1000px 480px at 50% -160px, rgba(242, 122, 31, 0.14), transparent 65%),
    radial-gradient(700px 380px at 82% 30%, rgba(168, 42, 143, 0.06), transparent 60%),
    var(--bg-2);
}
.statement {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  display: grid;
  gap: 18px;
}
.statement__line {
  display: block;
  font-size: clamp(26px, 4.1vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--muted);
}
.statement__line--grad {
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement--sm { font-size: clamp(20px, 3vw, 30px); margin: 44px 0; text-align: left; line-height: 1.35; letter-spacing: -0.015em; font-weight: 600; text-wrap: balance; }
.statement__sub {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  text-wrap: pretty;
}
.statement__sub strong { color: var(--text); }

/* ==========================================================================
   Marquee editorial
   ========================================================================== */
.marquee {
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}
.marquee span.is-fill {
  -webkit-text-stroke: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.marquee img { height: clamp(26px, 3.4vw, 40px); width: auto; opacity: 0.9; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Listas
   ========================================================================== */
.fade-list { list-style: none; margin-top: 38px; display: grid; }
.fade-list li {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px 0 16px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  color: var(--text);
}
.fade-list li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--grad);
  transition: height 0.5s var(--ease);
}
.fade-list li:hover::before { height: 70%; }

.check-list { list-style: none; margin-top: 32px; display: grid; gap: 15px; }
.check-list li {
  position: relative;
  padding-left: 38px;
  font-size: 17px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 12px no-repeat,
    linear-gradient(100deg, #f29a1f, #e8482b 55%, #a82a8f);
  box-shadow: 0 4px 14px rgba(232, 72, 43, 0.35);
}
.check-list--tight { gap: 12px; text-align: left; }

.x-list { list-style: none; margin-top: 32px; display: grid; gap: 16px; }
.x-list li {
  position: relative;
  padding: 18px 22px 18px 56px;
  font-size: 17px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.x-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 72, 43, 0.6);
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e8482b" stroke-width="3" stroke-linecap="round"><path d="M7 7l10 10M17 7L7 17"/></svg>') center / 10px no-repeat;
}

.finale-list { list-style: none; margin: 34px 0 0; }
.finale-list li {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 0;
  color: var(--muted);
}
.finale-list li strong { color: var(--text); font-weight: 600; }

/* ==========================================================================
   Grids e cards
   ========================================================================== */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 154, 31, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 154, 31, 0.08), 0 12px 50px rgba(232, 72, 43, 0.12);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p { color: var(--muted); font-size: 15.5px; text-wrap: pretty; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #ffb35c;
  background: linear-gradient(140deg, rgba(242, 154, 31, 0.16), rgba(168, 42, 143, 0.12));
  border: 1px solid rgba(242, 154, 31, 0.22);
}
.card__icon svg { width: 22px; height: 22px; }

.card--ghost { display: flex; align-items: center; gap: 16px; padding: 24px 26px; }
.card--ghost p { font-size: 16.5px; color: var(--muted); }
.card--ghost strong { color: var(--text); }
.card--ghost .card__dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(232, 72, 43, 0.55);
}

.card--stat { padding: 36px 30px; }
.card--stat .card__num {
  font-family: var(--font-display);
  display: block;
  font-size: clamp(44px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 18px;
}

.card--bonus .card__index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

/* ==========================================================================
   Chips
   ========================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips--center { justify-content: center; }
.chip {
  padding: 11px 21px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 15px;
  color: var(--muted);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  cursor: default;
}
.chip:hover { border-color: rgba(242, 154, 31, 0.45); color: var(--text); transform: translateY(-2px); background: var(--surface-2); }
.chip--solid {
  background: var(--surface-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  padding: 14px 28px;
  border-color: var(--border-2);
}

/* ==========================================================================
   Comparação
   ========================================================================== */
.compare { display: grid; grid-template-columns: 1fr 1.18fr; gap: 24px; align-items: stretch; margin-top: 16px; }
.compare__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
}
.compare__col > h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--muted);
}
.compare__col h3 img { height: 34px; width: auto; }
.compare__col ul { list-style: none; display: grid; gap: 14px; }
.compare__col li { position: relative; padding-left: 28px; color: var(--muted); font-size: 16px; }
.compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.compare__col--club {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 14, 22, 0.92), rgba(11, 15, 24, 0.96)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 30px 90px rgba(232, 72, 43, 0.16);
}
.compare__col--club::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px 220px at 85% 0%, rgba(242, 154, 31, 0.12), transparent 65%);
  pointer-events: none;
}
.compare__col--club li { color: var(--text); }
.compare__col--club li::before { background: var(--grad); box-shadow: 0 0 10px rgba(232, 72, 43, 0.5); }

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.quote {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.55;
}
.quote blockquote {
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(244, 246, 250, 0.92);
  padding-top: 34px;
  text-wrap: pretty;
}
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.quote figcaption::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(242, 154, 31, 0.35), rgba(168, 42, 143, 0.35));
  border: 1px solid var(--border-2);
  flex: 0 0 auto;
}
.quote figcaption div { display: flex; flex-direction: column; }
.quote figcaption strong { font-family: var(--font-display); font-size: 15px; }
.quote figcaption span { color: var(--faint); font-size: 13.5px; }

/* ==========================================================================
   Prints (WhatsApp)
   ========================================================================== */
.prints { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.print { display: flex; flex-direction: column; gap: 12px; }
.print__bubble {
  position: relative;
  background: linear-gradient(180deg, #14402a, #0f3320);
  border: 1px solid rgba(72, 187, 120, 0.22);
  border-radius: 18px 18px 18px 5px;
  padding: 20px 22px;
  font-size: 15.5px;
  color: #e6f4ea;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
.print__bubble::after {
  content: "12:47 ✓✓";
  display: block;
  text-align: right;
  font-size: 11px;
  color: rgba(230, 244, 234, 0.45);
  margin-top: 10px;
}
.print__meta { font-size: 12px; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; }

/* ==========================================================================
   Passos
   ========================================================================== */
.steps { list-style: none; margin-top: 30px; display: grid; }
.step {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 30px 0 30px 0;
}
.step::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 82px;
  bottom: -2px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(242, 154, 31, 0.4), rgba(255, 255, 255, 0.07));
}
.step:last-child::before { display: none; }
.step__n {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 24px rgba(232, 72, 43, 0.18);
}
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); max-width: 560px; text-wrap: pretty; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.section--pricing {
  background:
    radial-gradient(1000px 520px at 50% -60px, rgba(232, 72, 43, 0.11), transparent 65%),
    var(--bg);
}
.pricing {
  position: relative;
  margin-top: 30px;
  background:
    linear-gradient(180deg, rgba(18, 13, 22, 0.95), rgba(11, 15, 24, 0.98)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  border-radius: 30px;
  padding: clamp(40px, 5.5vw, 64px);
  box-shadow: 0 50px 140px rgba(232, 72, 43, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 300px at 50% -80px, rgba(242, 154, 31, 0.14), transparent 65%);
  pointer-events: none;
}
.pricing__badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 154, 31, 0.35);
  background: rgba(242, 154, 31, 0.08);
  color: #ffb35c;
}
.pricing__logo { height: 42px; width: auto; }
.pricing__price { display: flex; align-items: baseline; gap: 10px; }
.pricing__currency { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--muted); }
.pricing__value {
  font-family: var(--font-display);
  font-size: clamp(68px, 9.5vw, 104px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing__period { font-family: var(--font-display); font-size: 23px; color: var(--muted); }
.pricing__plan { color: var(--muted); max-width: 430px; text-align: center; text-wrap: balance; }
.pricing__note { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* ==========================================================================
   Objeções / FAQ
   ========================================================================== */
.objections { display: grid; gap: 18px; margin-top: 12px; }
.objection {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.objection h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.01em;
}
.objection p { color: var(--muted); text-wrap: pretty; }
.objection strong { color: var(--text); }

.faq { display: grid; gap: 12px; margin-top: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__item:hover { border-color: var(--border-2); }
.faq__item[open] { border-color: rgba(242, 154, 31, 0.38); background: var(--surface-2); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 60px 21px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq__item p { padding: 0 26px 24px; color: var(--muted); text-wrap: pretty; }

/* ==========================================================================
   Final
   ========================================================================== */
.section--final {
  background:
    radial-gradient(1100px 640px at 50% 108%, rgba(168, 42, 143, 0.14), transparent 64%),
    radial-gradient(800px 420px at 12% 12%, rgba(242, 154, 31, 0.05), transparent 60%),
    var(--bg-2);
}
.final-cta {
  margin-top: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--border);
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.5px;
  background: var(--grad);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 260px at 50% 0%, rgba(232, 72, 43, 0.1), transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta__logo { height: 58px; width: auto; }
.final-cta p { color: var(--muted); max-width: 540px; text-wrap: balance; }
.final-cta__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin: 12px 0 18px;
  color: var(--faint);
  font-size: 14.5px;
}
.final-cta__stats strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  padding: 64px 0 40px;
  background: var(--bg);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 154, 31, 0.4), rgba(168, 42, 143, 0.4), transparent);
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer__inner img { height: 28px; width: auto; opacity: 0.92; }
.footer__inner p { color: var(--muted); font-size: 14.5px; }
.footer__copy { font-size: 12.5px; color: var(--faint); letter-spacing: 0.04em; }

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c15e;
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 32px rgba(34, 193, 94, 0.38);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 18px 44px rgba(34, 193, 94, 0.48); }

/* ==========================================================================
   Solução — marca
   ========================================================================== */
.section--solution { overflow: hidden; }
.section--solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 50% 30%, rgba(232, 72, 43, 0.07), transparent 65%);
  pointer-events: none;
}
.solution__mark {
  height: 96px;
  width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 44px rgba(232, 72, 43, 0.4));
}
.section--solution .btn { margin-top: 38px; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}

@media (max-width: 760px) {
  .br-lg { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .prints { grid-template-columns: 1fr; }
  .scrolly { height: 460vh; }
  .chapter { padding: 92px 20px 60px; }
  .chapter__logo { height: 40px; margin-bottom: 26px; }
  .chapter__cue { bottom: 26px; }
  .chapter__cue i { height: 28px; }
  .step { gap: 18px; }
  .step::before { left: 22px; top: 74px; }
  .step__n { width: 46px; height: 46px; font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .nav { top: 10px; }
  .nav__pill { padding: 8px 8px 8px 18px; }
  .quote { padding: 32px 26px 28px; }
  .x-list li { padding: 16px 18px 16px 52px; }
}

/* ==========================================================================
   Acessibilidade — reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .scrolly { height: auto; }
  .scrolly__sticky { position: relative; }
  .chapter { position: relative; inset: auto; opacity: 1 !important; transform: none !important; pointer-events: auto; padding: 64px 24px; }
  .chapter--stat { background: rgba(7, 9, 15, 0.6); }
  .chapter__cue i::after { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scrolly__loader, .scrolly__progress { display: none; }
}
