/* ===================================================================
   Curso Cultura Organizacional na Prática — Solute RH
   Dark petróleo · energia em laranja · dot matrix
   Organizado: base → blocos na ordem da página.
   =================================================================== */

/* ===================================================================
   BASE / TOKENS
   =================================================================== */
:root {
  --brand: #f26a21;
  --brand-2: #ff9d52;
  --brand-soft: rgba(242, 106, 33, .14);
  --red: #f26a21;          /* alias p/ estilos inline */
  --red-dark: #d4541a;

  --bg: #0a181d;           /* petróleo profundo — base */
  --bg-2: #0f2127;         /* faixa elevada */
  --bg-3: #12262d;         /* faixa elevada (mais petróleo) */

  --card: rgba(255, 255, 255, .035);
  --card-2: rgba(255, 255, 255, .055);

  --ink: #f4f5f7;          /* texto primário */
  --ink-2: #c7cad2;        /* texto secundário */
  --muted: #888d99;        /* texto suave */
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);

  --grad: linear-gradient(95deg, #f26a21, #ff9d52);
  --radius: 18px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
  --glow: 0 0 0 1px rgba(242, 106, 33, .25), 0 20px 50px -16px rgba(242, 106, 33, .45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  overflow-x: hidden;
}

/* Glows de luz + dot matrix (mesma pegada da grade, sem ser quadriculado) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(680px 460px at 88% -60px, rgba(242, 106, 33, .22), transparent 60%),
    radial-gradient(620px 560px at -8% 12%, rgba(242, 106, 33, .08), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(38, 180, 190, .07), transparent 60%),
    radial-gradient(circle, rgba(190, 225, 232, .055) 1px, transparent 1.6px);
  background-size: auto, auto, auto, 23px 23px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}

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

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 800px; }

/* ===== Tipografia ===== */
h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5.6vw, 64px); }
h2 { font-size: clamp(28px, 3.9vw, 44px); }
h3 { font-size: 20px; letter-spacing: -.01em; }
p { color: var(--ink-2); }

.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--muted); font-weight: 400; }
.center { text-align: center; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.center .eyebrow { justify-content: center; }

/* ===== Seções (fluxo contínuo) ===== */
section { position: relative; padding: 104px 0; }
.bg-paper { background: var(--bg-2); }
.bg-soft  { background: var(--bg-3); }
.bg-white { background: transparent; }

/* hairline sutil no topo das faixas elevadas */
.bg-paper::before,
.bg-soft::before,
.price-wrap::before,
.final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  padding: 17px 38px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: var(--glow);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(242, 106, 33, .35), 0 26px 60px -16px rgba(242, 106, 33, .6);
}
.btn.dark { background: #fff; color: var(--brand); box-shadow: 0 18px 44px -16px rgba(0, 0, 0, .7); }
.btn.dark:hover { filter: none; background: #fff; }
.btn-sub { display: block; font-size: 13px; font-weight: 500; opacity: .9; margin-top: 6px; letter-spacing: 0; }
.btn-note { display: block; margin-top: 16px; color: var(--muted); font-size: 14px; }

/* ===== Cabeçalhos de seção ===== */
.sec-head { margin-bottom: 56px; }
.sec-head h2 { line-height: 1.08; }
.sec-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow { justify-content: center; }
.head-left { max-width: 760px; }
.idx {
  display: inline-block; margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}

/* ===== Nota de placeholder (apenas edição) ===== */
.ph-note {
  background: rgba(242, 106, 33, .14); border: 1px solid rgba(242, 106, 33, .4);
  color: var(--brand-2); border-radius: 4px; padding: 1px 7px;
  font-size: .92em; font-weight: 600; font-style: normal;
}

/* ===== Revelação ao rolar ===== */
html.js .bg-white,
html.js .bg-paper,
html.js .bg-soft,
html.js .price-wrap,
html.js .final {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1), transform .7s cubic-bezier(.16, .84, .44, 1);
  will-change: opacity, transform;
}
html.js .in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  html.js .bg-white, html.js .bg-paper, html.js .bg-soft, html.js .price-wrap, html.js .final {
    opacity: 1; transform: none; transition: none;
  }
}


/* ===================================================================
   BLOCO 1 — HERO
   =================================================================== */
.hero { position: relative; padding: 72px 0 96px; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(242, 106, 33, .26), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.08fr .92fr;
  grid-template-areas: "main art" "stats art";
  column-gap: 50px; row-gap: 8px;
  align-items: center; position: relative; z-index: 2;
}
.hero-main { grid-area: main; }
.hero-art  { grid-area: art; position: relative; }
.hero-stats { grid-area: stats; display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }

.hero h1 { color: #fff; font-size: clamp(40px, 6vw, 70px); }
.hero .lead { color: #cfd2da; margin-top: 22px; max-width: 560px; }

.hero-stats div { position: relative; padding-left: 16px; }
.hero-stats div::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; border-radius: 2px; background: var(--grad); }
.hero-stats b { font-family: 'Space Grotesk', sans-serif; font-size: 22px; color: #fff; display: block; line-height: 1.1; }
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-art::before { content: ""; position: absolute; inset: -12%; background: radial-gradient(circle at 60% 42%, rgba(242, 106, 33, .22), transparent 60%); filter: blur(22px); pointer-events: none; }
.hero-art svg { position: relative; width: 100%; height: auto; max-width: 470px; margin: 0 auto; display: block; }

@media (max-width: 920px) {
  .hero-wrap { grid-template-columns: 1fr; grid-template-areas: "main" "art" "stats"; gap: 30px; }
  .hero-art svg { max-width: 380px; }
  .hero-stats { margin-top: 0; justify-content: center; }
}

/* ---- Árvore do hero (SVG) ---- */
.tr-soil   { stroke: rgba(255, 255, 255, .16); stroke-width: 2; stroke-linecap: round; }
.tr-trunk  { fill: none; stroke: #7a5536; stroke-width: 9; stroke-linecap: round; }
.tr-root   { fill: none; stroke: var(--brand); stroke-width: 2.5; stroke-linecap: round; opacity: .9; }
.tr-branch { fill: none; stroke: #7a5536; stroke-width: 4.5; stroke-linecap: round; }
.tr-leaf {
  fill: url(#leafgrad); transform-box: fill-box; transform-origin: center;
  animation: trGrow 4.5s ease-out infinite both;
}
.tr-leaf.l2 { animation-delay: .25s; }
.tr-leaf.l3 { animation-delay: .5s; }
.tr-leaf.l4 { animation-delay: .75s; }
.tr-leaf.l5 { animation-delay: 1s; }
.tr-pulse { fill: var(--brand-2); filter: drop-shadow(0 0 5px rgba(242, 106, 33, .9)); animation: trRise 4.5s cubic-bezier(.5, 0, .5, 1) infinite; }
.tr-lbl  { fill: var(--ink-2); font: 600 12px 'Inter', sans-serif; }
.tr-zone { fill: var(--muted); font: 700 10px 'Inter', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.cr-fork { fill: var(--brand); }
@keyframes trGrow {
  0%, 50% { transform: scale(.4); opacity: .25; }
  72% { transform: scale(1.06); opacity: 1; }
  90% { transform: scale(1); opacity: 1; }
  100% { transform: scale(.4); opacity: .25; }
}
@keyframes trRise {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  80% { transform: translateY(-150px); opacity: 1; }
  100% { transform: translateY(-150px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tr-leaf, .tr-pulse { animation: none; }
  .tr-leaf { transform: scale(1); opacity: 1; }
  .tr-pulse { opacity: 0; }
}


/* ===================================================================
   BLOCO 2 — ANTES × DEPOIS
   =================================================================== */
.ba { max-width: 940px; margin: 0 auto; display: grid; gap: 14px; }
.ba-head, .ba-row { display: grid; grid-template-columns: 1fr 48px 1fr; align-items: center; gap: 14px; }
.ba-h { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ba-h-antes { color: var(--muted); }
.ba-h-depois { color: var(--brand-2); }
.ba-antes, .ba-depois { border-radius: 14px; padding: 18px 20px; font-size: 15.5px; line-height: 1.4; }
.ba-antes { background: rgba(255, 255, 255, .02); border: 1px solid var(--line); color: var(--muted); }
.ba-depois {
  background: linear-gradient(180deg, rgba(242, 106, 33, .1), rgba(255, 255, 255, .02));
  border: 1px solid rgba(242, 106, 33, .3); border-left: 3px solid var(--brand);
  color: var(--ink); font-weight: 600;
}
.ba-arrow { text-align: center; color: var(--brand); font-size: 20px; font-weight: 800; }
@media (max-width: 760px) {
  .ba-head { display: none; }
  .ba-row { grid-template-columns: 1fr; gap: 8px; }
  .ba-arrow { transform: rotate(90deg); }
}


/* ===================================================================
   BLOCO 3 — FILIAÇÃO (statement fixo + lista numerada)
   =================================================================== */
.split-sticky { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: start; }
.sticky-head { position: sticky; top: 100px; }
.sticky-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.num-list { list-style: none; }
.num-list .row {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 26px 4px; border-top: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.num-list .row:last-child { border-bottom: 1px solid var(--line); }
.num-list .row:hover { padding-left: 12px; }
.num-list .n {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.num-list h3 { margin-bottom: 6px; }
.num-list p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 860px) {
  .split-sticky { grid-template-columns: 1fr; gap: 32px; }
  .sticky-head { position: static; }
}


/* ===================================================================
   BLOCO 4 — O CAMINHO (escada ascendente)
   =================================================================== */
.stairs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.stair {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.stair:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--card-2); }
.stair.s1 { margin-top: 50px; }
.stair.s2 { margin-top: 25px; }
.stair.s3 { margin-top: 0; border-color: rgba(242, 106, 33, .4); background: linear-gradient(180deg, rgba(242, 106, 33, .1), rgba(255, 255, 255, .02)); }
.snum { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 40px; line-height: 1; margin-bottom: 14px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stair h3 { margin-bottom: 8px; }
.stair p { color: var(--muted); font-size: 15px; }
@media (max-width: 760px) {
  .stairs { grid-template-columns: 1fr; gap: 16px; }
  .stair.s1, .stair.s2, .stair.s3 { margin-top: 0; }
}


/* ===================================================================
   BLOCO 5 — CONTEÚDO (grid bento)
   =================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(150px, auto); gap: 18px; }
.tile {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tile:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--card-2); }
.tile .t-art {
  height: 110px; border-radius: 12px; overflow: hidden;
  background: radial-gradient(120% 120% at 30% 0%, rgba(242, 106, 33, .12), rgba(255, 255, 255, .02));
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.tile .t-art svg { width: 100%; height: 100%; display: block; }
.tile .kicker { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-2); }
.tile h3 { margin: 7px 0 8px; }
.tile p { color: var(--muted); font-size: 14.5px; }
.tile.feature {
  grid-column: span 2; grid-row: span 2;
  border-color: rgba(242, 106, 33, .4);
  background: linear-gradient(180deg, rgba(242, 106, 33, .1), rgba(255, 255, 255, .02));
  box-shadow: 0 0 0 1px rgba(242, 106, 33, .12), 0 24px 60px -30px rgba(242, 106, 33, .5);
}
.tile.feature .t-art { height: auto; flex: 1; min-height: 200px; }
.tile.feature h3 { font-size: 26px; }
.tile.feature p { font-size: 15.5px; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .tile.feature { grid-column: span 2; grid-row: auto; }
  .tile.feature .t-art { min-height: 150px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .tile.feature { grid-column: auto; }
}

/* ---- Ícones SVG dos tiles ---- */
.ct-cell { fill: rgba(255, 255, 255, .04); stroke: rgba(255, 255, 255, .12); stroke-width: 1.5; }
.ct-cell.on { fill: rgba(242, 106, 33, .18); stroke: rgba(242, 106, 33, .5); }
.ct-lbl { fill: var(--ink-2); font: 600 11px 'Inter', sans-serif; text-anchor: middle; }
.ct-lbl.on { fill: var(--brand-2); font-weight: 700; }
.ct-arrow { fill: none; stroke: var(--brand-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sv-sheet { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .14); stroke-width: 1.5; }
.sv-tab { fill: var(--brand); }
.sv-title { fill: #fff; opacity: .85; }
.sv-div { stroke: rgba(255, 255, 255, .14); stroke-width: 1.5; }
.sv-label { fill: var(--muted); }
.sv-line { fill: rgba(255, 255, 255, .12); }
.im-rail { stroke: rgba(255, 255, 255, .16); stroke-width: 3; }
.im-check { fill: var(--brand); }
.im-tick { fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.im-lbl { fill: var(--ink-2); font: 600 12px 'Inter', sans-serif; }
.dg-disc { fill: none; stroke: rgba(255, 255, 255, .14); stroke-width: 1.5; }
.dg-slice { fill: rgba(242, 106, 33, .32); stroke: var(--brand); stroke-width: 1.5; }
.dg-glass { fill: none; stroke: var(--brand-2); stroke-width: 3; }
.dg-handle { stroke: var(--brand-2); stroke-width: 4; stroke-linecap: round; }


/* ===================================================================
   BLOCO 6 — BÔNUS (cards presente)
   =================================================================== */
.bonus-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.bcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.bcard:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--card-2); }
.bribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}
.bnum {
  display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 46px;
  line-height: 1; color: rgba(255, 255, 255, .08); margin-bottom: 12px;
}
.bcard h3 { margin-bottom: 8px; }
.bcard p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px) { .bonus-cards { grid-template-columns: 1fr; } }


/* ===================================================================
   BLOCO 7 — FEITO PARA O RH (painel persona)
   =================================================================== */
.forwho { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 48px; }
.forwho-head { margin-bottom: 32px; max-width: 700px; }
.forwho-head h2 { line-height: 1.08; }
.fw-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; }
.fw-list li { position: relative; padding-left: 34px; color: var(--ink-2); font-size: 15.5px; }
.fw-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--grad); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.fw-not { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.fw-not b { color: var(--ink-2); }
@media (max-width: 680px) { .fw-list { grid-template-columns: 1fr; } .forwho { padding: 34px 26px; } }


/* ===================================================================
   BLOCO 8 — RECAPITULANDO (números + checklist + mockup do canto)
   =================================================================== */
.recap-section { z-index: 3; }
.recap-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.rs { text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px 14px; }
.rs b { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(34px, 4vw, 48px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rs span { display: block; margin-top: 8px; color: var(--muted); font-size: 13.5px; }
.recap-check { max-width: 680px; margin: 0 auto; }
ul.check { list-style: none; display: grid; gap: 16px; }
ul.check li { position: relative; padding-left: 38px; font-size: 16px; color: var(--ink-2); }
ul.check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 7px; background: var(--grad);
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mock-corner {
  position: absolute; right: 6%; bottom: -205px; width: 300px; height: auto;
  z-index: 4; pointer-events: none;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .6));
}
@media (max-width: 640px) { .recap-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .mock-corner { display: none; } }


/* ===================================================================
   BLOCO 9 — VALOR / PREÇO
   =================================================================== */
.price-wrap { background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); position: relative; overflow: hidden; }
.price-wrap::after {
  content: ""; position: absolute; width: 600px; height: 600px; left: 50%; top: -260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(242, 106, 33, .2), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.price-box {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line-2); border-radius: 24px;
  margin: 0 auto; box-shadow: var(--shadow);
}
.price-box .ribbon {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 8px 22px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(242, 106, 33, .7);
}
.price-box .old { color: var(--muted); font-size: 16px; margin-top: 8px; }
.price-box .big {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 7vw, 56px);
  font-weight: 700; color: #fff; line-height: 1; margin: 8px 0;
}
.price-box .big small { display: block; font-family: 'Inter'; font-size: 16px; font-weight: 600; color: var(--muted); margin-top: 10px; }
.price-box .pix { color: var(--muted); font-size: 14px; margin-top: 6px; }
.guarantee {
  display: inline-flex; gap: 10px; align-items: center;
  background: rgba(255, 255, 255, .05); color: var(--ink-2);
  padding: 11px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; margin-top: 24px;
  border: 1px solid var(--line);
}

/* card de preço em 2 colunas (valor | ação) */
.price-box.split {
  max-width: 1000px; text-align: left; padding: 56px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.price-box.split .big { text-align: left; margin-top: 6px; }
.price-box.split .price-right { border-left: 1px solid var(--line); padding-left: 36px; display: flex; flex-direction: column; align-items: stretch; }
.price-box.split .price-right .btn { width: 100%; text-align: center; }
.price-box.split .price-right .btn-note { margin-top: 14px; text-align: center; }
.price-box.split .price-right .guarantee { margin-top: 16px; align-self: center; }

/* bandeiras / formas de pagamento */
.price-box .pay {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 6px; padding-top: 22px; border-top: 1px solid var(--line);
}
.price-box .pay img { width: 46px; height: 30px; object-fit: contain; background: #fff; border-radius: 6px; padding: 4px; }

@media (max-width: 640px) {
  .price-box.split { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .price-box.split .big { text-align: center; }
  .price-box.split .price-right { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}


/* ===================================================================
   BLOCO 10 — DO CLIQUE À PRÁTICA (stepper)
   =================================================================== */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; position: relative; }
.stepper::before { content: ""; position: absolute; top: 24px; left: 16.6%; right: 16.6%; height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); z-index: 0; }
.stp { text-align: center; position: relative; }
.stp-dot {
  width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  position: relative; z-index: 2; box-shadow: 0 12px 26px -10px rgba(242, 106, 33, .6);
}
.stp-time { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 8px; }
.stp b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.stp-desc { color: var(--muted); font-size: 14px; }
@media (max-width: 680px) { .stepper { grid-template-columns: 1fr; gap: 28px; } .stepper::before { display: none; } }


/* ===================================================================
   BLOCO 11 — QUEM VAI TE ENSINAR (autor editorial)
   =================================================================== */
.mentor { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-areas: "eyebrow photo" "body photo"; column-gap: 50px; align-items: center; }
.mentor-eyebrow { grid-area: eyebrow; align-self: end; margin-bottom: 16px; }
.mentor-body { grid-area: body; align-self: start; }
.mentor-name { font-size: clamp(40px, 5.5vw, 66px); line-height: .98; margin: 0 0 22px; }
.mentor-stats { display: flex; gap: 30px; margin-bottom: 24px; flex-wrap: wrap; }
.mentor-stats div { position: relative; padding-left: 16px; }
.mentor-stats div::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 2px; border-radius: 2px; background: var(--grad); }
.mentor-stats b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--ink); }
.mentor-stats span { font-size: 13px; color: var(--muted); }
.mentor-body p { color: var(--ink-2); font-size: 16px; }
.mentor-body blockquote { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-style: italic; color: var(--ink); border-left: 3px solid var(--brand); padding-left: 20px; margin-top: 22px; line-height: 1.4; }
.mentor-photo { grid-area: photo; position: relative; width: 370px; max-width: 100%; aspect-ratio: 2 / 3; border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); justify-self: center; }
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: none; }
.mentor-photo::after {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-2), transparent);
  box-shadow: 0 0 14px 1px rgba(242, 106, 33, .75);
}
.mentor-photo.ph-photo { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #14262d, #0e1c22); }
.mentor-photo.ph-photo::after { content: "⟬ FOTO DA ROSE ⟭"; color: var(--muted); font: 700 13px 'Inter', sans-serif; letter-spacing: .08em; }
@media (max-width: 820px) {
  .mentor { grid-template-columns: 1fr; grid-template-areas: "eyebrow" "photo" "body"; gap: 22px; }
  .mentor-eyebrow { justify-self: center; align-self: auto; margin-bottom: 0; }
  .mentor-photo { width: 270px; margin: 0 auto; }
}


/* ===================================================================
   BLOCO 12 — CONVERSA SÉRIA (manifesto + duas opções)
   =================================================================== */
.manifesto { max-width: 860px; margin: 0 auto; }
.note-quote { position: relative; margin-top: 22px; padding-left: 32px; }
.note-quote::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: var(--grad); }
.note-quote p { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.3; color: var(--ink); }
.note-quote p + p { font-family: 'Inter', sans-serif; font-weight: 400; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-2); margin-top: 18px; line-height: 1.6; }
.signoff { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.signoff img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; object-position: top center; border: 1px solid var(--line-2); }
.signoff b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--ink); }
.signoff span { color: var(--muted); font-size: 13.5px; }

.statement {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.15; color: var(--ink);
  text-align: center; max-width: 820px; margin: 56px auto;
}

.choices { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; align-items: stretch; }
.choice { border-radius: 20px; padding: 32px; border: 1px solid var(--line); }
.choice b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 20px; color: var(--ink); margin: 12px 0; }
.choice .cx, .choice .cc { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; font-size: 18px; font-weight: 800; color: #fff; }
.choice .cx { background: #3a3f49; }
.choice .cc { background: var(--grad); }
.choice.bad { background: rgba(255, 255, 255, .02); align-self: center; }
.choice.bad p { color: var(--muted); font-size: 15.5px; }
.choice.good { background: linear-gradient(180deg, rgba(242, 106, 33, .12), rgba(255, 255, 255, .02)); border-color: rgba(242, 106, 33, .4); box-shadow: 0 0 0 1px rgba(242, 106, 33, .12), 0 24px 60px -30px rgba(242, 106, 33, .5); }
.choice.good ul { list-style: none; display: grid; gap: 12px; margin-bottom: 24px; }
.choice.good li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 15.5px; }
.choice.good li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800; }
@media (max-width: 760px) { .choices { grid-template-columns: 1fr; } }


/* ===================================================================
   BLOCO 13 — CTA FINAL
   =================================================================== */
.final {
  background:
    radial-gradient(700px 400px at 50% -40%, rgba(242, 106, 33, .35), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg));
  text-align: center;
}
.final h2 { color: #fff; font-size: clamp(34px, 5vw, 60px); }
.final .lead { color: var(--ink-2); }


/* ===================================================================
   BLOCO 14 — FAQ (duas colunas)
   =================================================================== */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-grid .sec-head { position: sticky; top: 100px; }
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 26px; margin-bottom: 14px; transition: border-color .18s ease, background .18s ease;
}
details[open] { border-color: var(--line-2); background: var(--card-2); }
details summary {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: 17px; color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--brand); font-size: 26px; line-height: 1; margin-left: 16px; }
details[open] summary::after { content: "–"; }
details p { margin-top: 14px; color: var(--muted); font-size: 16px; }
@media (max-width: 820px) {
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-grid .sec-head { position: static; }
}


/* ===================================================================
   RODAPÉ
   =================================================================== */
footer { padding: 60px 0 44px; text-align: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 13.5px; }
.footer-logo { height: 38px; width: auto; margin: 0 auto 18px; display: block; }
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--brand-2); }
footer .legal { max-width: 780px; margin: 16px auto 0; line-height: 1.8; color: #6b7079; }
