/* ============================================================
   Recorrência Paralela — iLeveX × Mundo Automatik
   Design system: dark, sober, premium. iLeveX orange accent used
   sparingly. Mono eyebrows for a technical/dev feel.
   ============================================================ */

:root {
  /* Brand — iLeveX orange */
  --orange: #F15A24;
  --orange-300: #FFB07A;
  --orange-400: #FB7A3C;
  --orange-500: #F2611C;
  --orange-glow: rgba(241, 90, 36, 0.45);

  /* Accents */
  --emerald: #34D399;
  --emerald-dim: rgba(52, 211, 153, 0.14);

  /* Surface / background */
  --bg-0: #05060B;
  --bg-1: #080B14;
  --navy: #0B1124;
  --surface: #0E1322;
  --surface-2: #121829;
  --surface-3: #161D31;

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #ECEEF5;
  --text-dim: #A6AEC2;
  --text-faint: #6E7793;

  /* Type */
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --maxw: 1120px;
  --maxw-narrow: 820px;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

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

/* Deep ambient background: navy fading into black, faint orange glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(241, 90, 36, 0.20), transparent 60%),
    radial-gradient(900px 600px at 85% 12%, rgba(242, 97, 28, 0.10), transparent 55%),
    linear-gradient(180deg, #0A0F20 0%, #070A14 42%, #05060B 100%);
}

/* Faint grid texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--maxw-narrow); }

section { position: relative; }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-300);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow .num { color: var(--text-faint); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--orange-400), transparent);
}

/* ---------- Type scale ---------- */
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }

.h-hero {
  font-size: clamp(46px, 8.5vw, 104px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.h-section {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.h-q {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.accent { color: var(--orange-300); }
.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--text-dim);
  line-height: 1.65;
}
.body-lg { font-size: clamp(17px, 1.7vw, 19px); color: var(--text-dim); line-height: 1.7; }
.muted { color: var(--text-faint); }
strong, .em { color: var(--text); font-weight: 600; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 10, 20, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand .mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--orange-400), var(--orange));
  display: grid; place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 4px 18px var(--orange-glow);
}
.brand .brand-logo {
  height: 24px;
  width: auto;
  display: block;
}
.brand .x { color: var(--text-faint); font-weight: 400; margin: 0 2px; }
.brand .sub { color: var(--text-dim); font-weight: 500; }
@media (max-width: 560px) {
  .brand .sub, .brand .x { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-1px); }
.btn-header { padding: 11px 20px; font-size: 15px; }
.btn-lg { padding: 19px 38px; font-size: 18px; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--header-h) + clamp(50px, 9vw, 110px));
  padding-bottom: clamp(60px, 9vw, 120px);
  text-align: center;
}
.hero .wrap { display: flex; flex-direction: column; align-items: center; }
.hero-tag {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 34px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
}
.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(30px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.hero h1 .line2 {
  background: linear-gradient(120deg, var(--orange-300), var(--orange-400) 60%, var(--orange));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lead { max-width: 720px; margin: 0 auto 22px; }
.hero .hero-minor {
  max-width: 600px;
  color: var(--text-faint);
  font-size: clamp(15px, 1.7vw, 17px);
  margin-bottom: 40px;
}
.hero .hero-minor .em { color: var(--text-dim); font-style: italic; }
.hero-cta { margin-bottom: 38px; }

.seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
}
.seal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}
.seal svg { width: 16px; height: 16px; color: var(--orange-300); flex-shrink: 0; }

/* ============================================================
   PROSE / STORY BLOCKS
   ============================================================ */
.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }

.pullquote {
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 44px 0 8px;
  text-wrap: balance;
}
.pullquote .accent {
  background: linear-gradient(120deg, var(--orange-300), var(--orange-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Two-column story (text + aside) */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Victory ladder ---------- */
.ladder { display: flex; flex-direction: column; gap: 14px; }
.ladder-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.ladder-step:nth-child(1) { margin-left: 0; }
.ladder-step:nth-child(2) { margin-left: clamp(0px, 3vw, 28px); }
.ladder-step:nth-child(3) { margin-left: clamp(0px, 6vw, 56px); }
.ladder-step:nth-child(4) {
  margin-left: clamp(0px, 9vw, 84px);
  background: linear-gradient(135deg, rgba(241,90,36,0.18), rgba(241,90,36,0.04));
  border-color: rgba(251, 122, 60, 0.4);
}
.ladder-step .rung {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--orange-300);
  flex-shrink: 0;
  width: 22px;
}
.ladder-step .label { font-size: 16px; font-weight: 500; color: var(--text); }
.ladder-step .label b { color: var(--emerald); font-weight: 600; }

/* ============================================================
   CALLOUT (Desafio de Junho etc.)
   ============================================================ */
.callout {
  border: 1px solid rgba(251, 122, 60, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(241, 90, 36, 0.18), transparent 55%),
    var(--surface);
  padding: clamp(30px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.callout .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 122, 60, 0.4);
  background: rgba(241, 90, 36, 0.12);
  margin-bottom: 22px;
}
.callout .value-pill {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--emerald);
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--emerald-dim);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

/* ============================================================
   CONVERSATIONAL OBJECTION CARDS
   ============================================================ */
.objections { display: flex; flex-direction: column; gap: 20px; }
.obj {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.obj:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateY(-2px); }
.obj-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(251,122,60,0.18), rgba(241,90,36,0.06));
  border: 1px solid rgba(251, 122, 60, 0.25);
  flex-shrink: 0;
}
.obj-icon svg { width: 26px; height: 26px; color: var(--orange-300); }
.obj-q {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.obj-q .quote { color: var(--text-faint); }
.obj-a { color: var(--text-dim); font-size: 17px; line-height: 1.65; }
.obj-a .em { color: var(--text); font-weight: 600; }
@media (max-width: 560px) {
  .obj { grid-template-columns: 1fr; gap: 16px; }
  .obj-icon { width: 48px; height: 48px; }
}

/* ============================================================
   AUTOMATION CARDS (stats)
   ============================================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 940px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.auto-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .25s ease, transform .25s ease;
}
.auto-card:hover { border-color: rgba(251,122,60,0.35); transform: translateY(-3px); }
.auto-card .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(251,122,60,0.12);
  border: 1px solid rgba(251,122,60,0.22);
  margin-bottom: 22px;
}
.auto-card .ic svg { width: 23px; height: 23px; color: var(--orange-300); }
.auto-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 650; }
.auto-card .stat {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--emerald);
  line-height: 1.5;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.price-card.featured {
  background:
    radial-gradient(130% 120% at 50% 0%, rgba(241,90,36,0.22), transparent 60%),
    var(--surface-2);
  border-color: rgba(251, 122, 60, 0.5);
  box-shadow: 0 20px 60px -20px var(--orange-glow);
}
@media (min-width: 921px) {
  .price-card.featured { transform: scale(1.045); z-index: 2; }
}
.price-card .tier {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.price-card.featured .tier { color: var(--orange-300); }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-tag .currency { font-size: 22px; font-weight: 600; color: var(--text-dim); }
.price-tag .amount { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.04em; }
.price-tag .per { font-size: 16px; color: var(--text-faint); }
.price-strike { text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.35); opacity: 0.55; }
.price-card .desc { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 18px 0 26px; flex-grow: 1; }
.featured-flag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange));
  box-shadow: 0 6px 20px -6px var(--orange-glow);
  white-space: nowrap;
}

.calc {
  margin: 44px auto 0;
  max-width: 600px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.calc-head { text-align: center; margin-bottom: 26px; }
.calc-title { font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
.calc-sub { margin: 10px auto 0; color: var(--text-dim); max-width: 540px; font-size: 15px; }

.calc-controls {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px 40px; margin-bottom: 26px;
}
.calc-field { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.calc-label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint);
}

.stepper {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 4px; background: var(--bg-1);
}
.step-btn {
  width: 38px; height: 38px; border-radius: 999px; border: none;
  background: var(--surface-3); color: var(--text); font-size: 22px;
  line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .15s, transform .1s;
}
.step-btn:hover { background: var(--orange); color: #fff; }
.step-btn:active { transform: scale(0.92); }
.step-val {
  min-width: 46px; text-align: center; font-family: var(--mono);
  font-size: 22px; font-weight: 600;
}

.seg {
  display: inline-flex; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 4px; background: var(--bg-1); gap: 2px;
}
.seg-btn {
  padding: 9px 18px; border-radius: 999px; border: none; background: transparent;
  color: var(--text-dim); font-family: var(--mono); font-size: 15px;
  font-weight: 500; cursor: pointer; transition: background .15s, color .15s;
}
.seg-btn:hover { color: var(--text); }
.seg-btn.is-active { background: var(--orange); color: #fff; }

.calc-summary { text-align: center; margin-bottom: 24px; }
.cs-label { display: block; font-size: 14px; color: var(--text-faint); }
.cs-value {
  display: block; font-family: var(--mono); font-weight: 700; color: var(--emerald);
  font-size: clamp(34px, 7vw, 54px); letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px;
}
.cs-value small { font-size: 0.4em; color: var(--text-dim); font-weight: 500; }
.cs-meta { display: block; margin-top: 6px; font-size: 14px; color: var(--text-dim); }

.calc-table-wrap {
  max-width: 440px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.calc-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.calc-table th {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); font-weight: 500;
  padding: 9px 14px; text-align: left; background: var(--bg-1);
}
.calc-table th:nth-child(2), .calc-table td:nth-child(2) { text-align: center; }
.calc-table th:last-child, .calc-table td:last-child { text-align: right; }
.calc-table td { padding: 6px 14px; border-top: 1px solid var(--line); color: var(--text-dim); }
.calc-table td:first-child { font-family: var(--mono); color: var(--text-faint); }
.calc-table td b { font-family: var(--mono); color: var(--text); font-weight: 600; }
.calc-table tr.milestone td b { color: var(--emerald); }
.calc-table tr.m3 { background: rgba(52, 211, 153, 0.08); }
.calc-table tr.m6 { background: rgba(52, 211, 153, 0.14); }
.ms {
  display: inline-block; margin-left: 7px; font-family: var(--sans);
  font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 999px;
  vertical-align: middle; background: var(--emerald-dim); color: var(--emerald);
}

.calc-note {
  text-align: center; max-width: 560px; margin: 18px auto 0;
  font-size: 12.5px; color: var(--text-faint); line-height: 1.6;
}
.calc-note b { color: var(--text-dim); }

.price-note { text-align: center; max-width: 640px; margin: 28px auto 0; color: var(--text-dim); }

/* ============================================================
   REASONS (numbered)
   ============================================================ */
.reasons { display: flex; flex-direction: column; gap: 22px; margin-top: 12px; }
.reason {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
}
.reason .n {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--orange-300);
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(251,122,60,0.28);
  background: rgba(241,90,36,0.08);
}
.reason p { color: var(--text-dim); padding-top: 4px; }
.reason p .em { color: var(--text); font-weight: 600; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }
.guarantee-card {
  padding: 34px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.guarantee-card .shield {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--emerald-dim);
  border: 1px solid rgba(52,211,153,0.3);
  margin-bottom: 22px;
}
.guarantee-card .shield svg { width: 26px; height: 26px; color: var(--emerald); }
.guarantee-card h3 { font-size: 23px; margin-bottom: 12px; }
.guarantee-card p { color: var(--text-dim); }

/* ============================================================
   SCARCITY
   ============================================================ */
.scarcity .wrap { text-align: center; }
.scarcity-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(241,90,36,0.12), transparent 60%),
    var(--surface);
}
.scarcity-box .h-q { margin-bottom: 18px; }
.scarcity-box p { color: var(--text-dim); font-size: clamp(17px, 2vw, 20px); }
.scarcity-box .price-steps {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 26px;
  font-family: var(--mono); font-size: 15px;
}
.scarcity-box .ps { padding: 8px 14px; border-radius: 9px; border: 1px solid var(--line); color: var(--text-dim); }
.scarcity-box .ps.now { color: var(--emerald); border-color: rgba(52,211,153,0.3); background: var(--emerald-dim); }
.scarcity-box .arrow { color: var(--text-faint); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  padding: clamp(80px, 12vw, 150px) 0;
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(241,90,36,0.22), transparent 65%);
}
/* Moved mid-page: glow must fade within the section, not at the cut edge */
#recebe {
  background:
    radial-gradient(820px 520px at 50% 42%, rgba(241,90,36,0.18), transparent 60%);
}
.final h2 { margin-bottom: 16px; }
.final .lead { max-width: 640px; margin: 0 auto 40px; }
.recap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: left;
}
@media (max-width: 640px) { .recap { grid-template-columns: 1fr; } }
.recap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dim);
}
.recap-item svg { width: 20px; height: 20px; color: var(--orange-300); flex-shrink: 0; margin-top: 2px; }
.recap-item b { color: var(--text); font-weight: 600; }
.final .microcopy { margin-top: 20px; color: var(--text-faint); font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 64px;
  background: var(--bg-0);
}
.footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 36px; }
.logo-ph {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.logo-ph .dot { color: var(--text-faint); font-weight: 400; }
.footer-meta { color: var(--text-faint); font-size: 14px; line-height: 1.7; }
.footer-meta a { color: var(--text-dim); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.footer-meta a:hover { color: var(--text); }

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Section header helper ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: 20px; }

.cta-row { margin-top: clamp(36px, 5vw, 52px); display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }

/* ============================================================
   HERO PILLARS (Sistema · Processo · Comunidade · Resultados)
   ============================================================ */
.hero-pillars {
  font-family: var(--mono);
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin: 0 0 26px;
}
.hero-pillars span { color: var(--text-faint); margin: 0 8px; }

/* ============================================================
   MENTORS / DIRECTORS (circular photos)
   ============================================================ */
.mentors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
}
.mentor { text-align: center; max-width: 240px; }
.mentor-photo {
  width: clamp(140px, 20vw, 180px);
  height: clamp(140px, 20vw, 180px);
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(251, 122, 60, 0.4);
  background: var(--surface-2);
  box-shadow: 0 16px 50px -16px var(--orange-glow), inset 0 0 0 4px rgba(255,255,255,0.03);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mentor figcaption h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.mentor .role {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--orange-300);
}

/* ============================================================
   AGENCY CTA (below pricing)
   ============================================================ */
.agency-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 28px auto 0;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  text-decoration: none;
  font-size: clamp(13px, 1.4vw, 15px);
  text-align: center;
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.agency-cta:hover {
  border-color: rgba(251, 122, 60, 0.5);
  background: rgba(241, 90, 36, 0.08);
  transform: translateY(-2px);
}
.agency-cta b { color: var(--orange-300); font-weight: 600; }
.agency-cta svg { width: 18px; height: 18px; color: var(--orange-300); flex-shrink: 0; }

/* ============================================================
   COUNTDOWN (scarcity)
   ============================================================ */
.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: clamp(8px, 1.6vw, 16px);
  margin: 30px auto 14px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(58px, 10vw, 76px);
  padding: 14px 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.cd-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 8px;
}
.cd-sep {
  font-family: var(--mono);
  font-size: clamp(22px, 4vw, 32px);
  color: var(--text-faint);
  align-self: center;
  margin-top: -8px;
}
.countdown.ended .cd-num { color: var(--text-faint); }
.countdown-note { font-size: 14px; color: var(--text-faint); margin-top: 6px; }
.countdown-note b { color: var(--text-dim); font-family: var(--mono); }

/* ============================================================
   PARABÉNS / THANK-YOU PAGE (/parabens-rp)
   ============================================================ */
.thanks {
  min-height: 100vh;
  padding: calc(var(--header-h) + 64px) 0 96px;
  display: flex;
  align-items: center;
  text-align: center;
}
.thanks .wrap.narrow { text-align: center; }

.thanks-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--emerald);
  background: var(--emerald-dim);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.06), 0 0 48px rgba(52, 211, 153, 0.18);
}
.thanks-check svg { width: 42px; height: 42px; }

.thanks .hero-tag { margin: 0 auto 22px; }

.thanks-title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.thanks-title .line2 {
  background: linear-gradient(100deg, var(--orange-300), var(--orange-400) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks .lead { max-width: 680px; margin: 0 auto 22px; }
.thanks-next {
  max-width: 620px;
  margin: 0 auto 38px;
  color: var(--text-dim);
  font-size: 17px;
}

.wa-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}
.wa-btn { gap: 12px; }
.wa-btn svg { width: 24px; height: 24px; }

.qr-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.qr-label {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 220px;
}
.qr-frame {
  width: 188px;
  height: 188px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 0 32px rgba(241, 90, 36, 0.22), 0 10px 30px rgba(0, 0, 0, 0.45);
}
.qr-frame img, .qr-frame canvas { display: block; width: 100% !important; height: 100% !important; }
.qr-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.thanks-foot {
  font-size: 16px;
  color: var(--text-faint);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   BUNDLE IMAGE (final CTA)
   ============================================================ */
.bundle {
  position: relative;
  max-width: 660px;
  margin: 0 auto 40px;
}
/* Soft radial glow behind the image — fades smoothly, so there is no
   square edge tracing the PNG canvas (unlike an alpha-following shadow). */
.bundle::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  z-index: -1;
  background: radial-gradient(
    ellipse 60% 60% at 50% 48%,
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0.12) 42%,
    transparent 72%
  );
  filter: blur(22px);
  pointer-events: none;
}
.bundle img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

/* ============================================================
   GHL SECTION — logo + dashboard GIF
   ============================================================ */
.ghl-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 6px auto 30px;
}
.ghl-logo img {
  width: clamp(170px, 26vw, 250px);
  height: auto;
  display: block;
}
.ghl-logo figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.ghl-media {
  position: relative;
  max-width: 780px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.ghl-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   MODAL — Plano Agência
   ============================================================ */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 38px 32px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.modal-close:hover { color: var(--text); border-color: var(--line-strong); }
.modal-close svg { width: 16px; height: 16px; }
.modal-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  background: rgba(241, 90, 36, 0.12);
  border: 1px solid rgba(241, 90, 36, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
}
.modal-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 16px 0 14px;
}
.modal-text {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 20px;
}
.modal-text b { color: var(--orange-300); font-weight: 600; }
.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 28px;
}
.modal-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-dim);
}
.modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--orange-300);
  font-weight: 700;
}
.modal-list b { color: var(--text); font-weight: 600; }
