/* =========================================================================
   Litis — landing page (marketing). Tokens herdados do produto (frontend/
   styles.css): Vollkorn + Barlow, navy primary, accent ambar, grao SVG.
   Standalone: nao depende de nada do app.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  /* cores (oklch, espelhando o produto) */
  --primary: oklch(38% 0.09 255);
  --primary-hover: oklch(31% 0.09 255);
  --primary-light: oklch(93% 0.025 255);
  --primary-dark: oklch(24% 0.05 255);
  --accent: oklch(66% 0.16 60);
  --accent-hover: oklch(60% 0.16 60);
  --accent-light: oklch(96% 0.04 62);
  --success: oklch(52% 0.13 162);
  --success-light: oklch(95% 0.04 162);
  --warning: oklch(65% 0.12 65);

  --bg: oklch(96.5% 0.002 90);
  --card: oklch(100% 0 0);
  --text: oklch(16% 0.004 90);
  --text-secondary: oklch(36% 0.004 90);
  --text-faint: oklch(46% 0.004 90);
  --border: oklch(83% 0.004 90);
  --border-soft: oklch(89% 0.003 90);

  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Vollkorn', Georgia, 'Times New Roman', serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 35px -8px rgba(0,0,0,.16), 0 8px 12px -6px rgba(0,0,0,.08);

  --maxw: 1120px;
}

/* dark mode: tema resolvido em data-theme (um script inline define antes
   do paint a partir de localStorage ou do prefers-color-scheme do sistema;
   o toggle sobrescreve). Mesmos hues do app, lightness invertida.
   ponytail: só sobrescreve tokens + as poucas superfícies com oklch
   hardcoded; o resto já usa var(). */
:root[data-theme="dark"] {
  --primary: oklch(64% 0.11 255);
  --primary-hover: oklch(72% 0.10 255);
  --primary-light: oklch(30% 0.045 255);
  --primary-dark: oklch(16% 0.02 255);
  --accent: oklch(70% 0.15 60);
  --accent-hover: oklch(77% 0.14 60);
  --accent-light: oklch(32% 0.06 60);
  --success: oklch(64% 0.13 162);
  --success-light: oklch(30% 0.05 162);
  --warning: oklch(70% 0.12 65);

  --bg: oklch(20% 0.012 255);
  --card: oklch(24% 0.014 255);
  --text: oklch(94% 0.004 90);
  --text-secondary: oklch(76% 0.006 255);
  --text-faint: oklch(60% 0.008 255);
  --border: oklch(36% 0.012 255);
  --border-soft: oklch(30% 0.012 255);
}
[data-theme="dark"] body::before { opacity: .07; }
[data-theme="dark"] .site-header { background: oklch(20% 0.012 255 / .82); }
[data-theme="dark"] .window-bar { background: oklch(27% 0.012 255); }
[data-theme="dark"] .section--alt { background: linear-gradient(180deg, oklch(25% 0.02 255) 0%, var(--bg) 100%); }
[data-theme="dark"] .tr-foot, [data-theme="dark"] .pq-rail, [data-theme="dark"] .verba { background: oklch(22% 0.012 255); }
[data-theme="dark"] .tag--purpose { background: oklch(30% 0.012 255); }

/* toggle de tema */
.theme-toggle {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; padding: 0;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  cursor: pointer; transition: all .16s ease;
}
.theme-toggle:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-light); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .i-sun { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: block; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  position: relative;
}

/* grao procedural sutil, como no app */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; text-wrap: balance; }

a { color: inherit; text-decoration: none; }

/* foco visível por teclado (não aparece no clique de mouse) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
.btn:focus-visible, .theme-toggle:focus-visible { outline-offset: 3px; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-hover);
}

/* ---------- botoes ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 13px 22px; border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer; transition: all .16s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: #000; }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); background: var(--primary-light); }
.btn--lg { font-size: 18px; padding: 16px 30px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(96.5% 0.002 90 / .82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap { display: flex; align-items: center; gap: 8px; height: 70px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 27px; letter-spacing: -0.02em; color: var(--primary-dark); }
.brand .dot { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
/* mobile-first: CTA empurrado p/ a direita, agrupado com o toggle */
.site-header .nav-demo { margin-left: auto; padding: 10px 18px; color: #000; font-weight: 600; }
.site-header .nav-demo:hover { color: #000; }
.nav-demo .lbl-short { display: none; }
/* desktop: grid 3 colunas — marca à esquerda, CTA centralizado, ações à direita */
@media (min-width: 561px){
  .site-header .wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; }
  .site-header .brand { justify-self: start; }
  .site-header .nav-demo { justify-self: center; margin-left: 0; }
  .site-header .nav-actions { justify-self: end; }
}
.site-header .nav-access { padding: 10px 18px; }
.site-header .nav-access svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-access .acc-short { display: none; }
@media (max-width: 560px){
  .wrap { padding: 0 16px; }
  .brand { font-size: 22px; }
  .nav-actions { gap: 6px; }
  /* rótulo curto para o CTA caber junto do toggle + acesso até 320px */
  .site-header .nav-demo { padding: 10px 14px; font-size: 14px; }
  .nav-demo .lbl-full { display: none; }
  .nav-demo .lbl-short { display: inline; }
  /* alvos de toque ≥40px */
  .theme-toggle { width: 40px; height: 40px; }
  .theme-toggle svg { width: 18px; height: 18px; }
  /* "Acesso" compacto no mobile: só texto (sem ícone) p/ caber junto do CTA */
  .site-header .nav-access { padding: 9px 12px; font-size: 14px; }
  .site-header .nav-access svg { display: none; }
  .nav-access .acc-full { display: none; }
  .nav-access .acc-short { display: inline; }
}

/* ---------- hero ---------- */
.hero { position: relative; z-index: 1; padding: 80px 0 64px; }
.hero-inner { text-align: center; max-width: 800px; }
.hero h1 { font-size: 56px; line-height: 1.05; margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--accent-hover); }
.hero .lede { font-size: 21px; color: var(--text-secondary); line-height: 1.55; max-width: 58ch; margin: 0 auto; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.hero-trust { margin-top: 28px; font-size: 15px; color: var(--text-faint); display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.tick { color: var(--success); font-weight: 700; }
.hero-app { margin-top: 48px; }
@media (max-width: 560px){
  .hero h1 { font-size: 38px; }
  .hero { padding: 48px 0 36px; }
  .hero .lede { font-size: 18px; }
  /* CTAs em largura cheia: alvos maiores, menos "botão flutuante" */
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- frame do app real (iframe) ---------- */
.window--app { padding: 0; }
.window--app .window-bar { display: none; }   /* sem barra de endereço no embed */
.app-frame { display: block; width: 100%; height: 560px; border: 0; background: var(--bg); }

/* ---------- seção de demo: texto AO LADO do app ---------- */
.wrap--demo { max-width: 1260px; }
.demo-row { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 44px; align-items: center; }
/* invertida: app na coluna larga (esquerda), texto na estreita (direita) */
.demo-row--rev { grid-template-columns: minmax(0,1fr) 300px; }
.demo-row--rev .demo-text { order: 2; }
.demo-text h2 { font-size: 30px; line-height: 1.12; margin: 12px 0 14px; }
.demo-text p { font-size: 17px; color: var(--text-secondary); line-height: 1.55; }
.demo-text ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.demo-text li { font-size: 15px; color: var(--text-secondary); display: flex; gap: 9px; line-height: 1.4; }
.demo-text li::before { content: "—"; color: var(--accent); font-weight: 700; }
@media (max-width: 920px){
  .demo-row, .demo-row--rev { grid-template-columns: 1fr; gap: 24px; }
  .demo-row--rev .demo-text { order: 0; }
  .app-frame { height: 520px; }
}

/* ---------- janela de produto (frame) ---------- */
.window { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.window-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: oklch(98% 0.002 90); border-bottom: 1px solid var(--border-soft); }
.window-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border); display: inline-block; }
.window-bar i:nth-child(1){ background: oklch(72% 0.14 25); }
.window-bar i:nth-child(2){ background: oklch(80% 0.12 85); }
.window-bar i:nth-child(3){ background: oklch(72% 0.12 150); }
.window-bar .url { margin-left: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }

/* ---------- secoes ---------- */
section { position: relative; z-index: 1; }
.section { padding: 84px 0; }
@media (max-width: 560px){ .section { padding: 56px 0; } }
.section--flush-b { padding-bottom: 40px; }
.section--flush-t { padding-top: 40px; }

/* separador sutil entre seções coladas */
.seam { border: 0; height: 1px; max-width: 220px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--border) 50%, transparent); }
.section--alt { background: linear-gradient(180deg, oklch(94% 0.006 255) 0%, var(--bg) 100%); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
/* pivô: aqui a página vira de "problema" para "com a Litis" */
.section--turn { background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg) 45%); border-top: 2px solid var(--accent); }
.section--turn .eyebrow { display: inline-block; background: var(--accent); color: #000; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.08em; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: 38px; margin: 14px 0 16px; }
.section-head p { font-size: 19px; color: var(--text-secondary); }
@media (max-width: 560px){ .section-head h2 { font-size: 30px; } }

/* problema */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 22px; }
@media (max-width: 820px){ .problem-grid { grid-template-columns: 1fr; } }
.pain { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.pain .n { font-family: var(--font-display); font-size: 30px; color: var(--accent); font-weight: 700; }
.pain h3 { font-size: 20px; margin: 6px 0 8px; }
.pain p { font-size: 16px; color: var(--text-secondary); }

/* fluxo: captura ao vivo (sequencial) → entregas (paralelas) */
.flow { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.flow-stage { width: 100%; }
.flow-label { display: block; text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.flow-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }

.step { flex: 1 1 150px; max-width: 190px; text-align: center; padding: 8px 12px; position: relative; }
.step .ico { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: var(--radius-md); background: var(--primary-light); color: var(--primary); display: grid; place-items: center; font-size: 24px; }
.step .ico svg { width: 26px; height: 26px; }
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { font-size: 14px; color: var(--text-faint); }

/* setas só entre os passos sequenciais; as entregas paralelas não têm ordem */
.flow-row--seq .step:not(:last-child)::after { content: "→"; position: absolute; right: -8px; top: 30px; color: var(--border); font-size: 20px; }

/* bifurcação: uma linha desce e abre em três (1 entrada → 3 entregas) */
.flow-fork { position: relative; width: 100%; height: 40px; }
.flow-fork::before { content: ""; position: absolute; top: 0; left: 50%; width: 2px; height: 20px; background: var(--border); transform: translateX(-50%); }
.flow-fork span { position: absolute; top: 20px; left: 16.7%; right: 16.7%; height: 20px; border: 2px solid var(--border); border-bottom: 0; border-radius: 8px 8px 0 0; }

@media (max-width: 760px){
  .flow-row--seq .step::after { display: none; }
  .flow-fork { display: none; }
}

/* demo 2-col */
.demo { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.demo--rev { grid-template-columns: 1.1fr .9fr; }
.demo--rev .demo-copy { order: 2; }
@media (max-width: 940px){ .demo, .demo--rev { grid-template-columns: 1fr; gap: 28px; } .demo--rev .demo-copy { order: 0; } }
.demo-copy h2 { font-size: 32px; margin: 12px 0 16px; }
.demo-copy p { font-size: 18px; color: var(--text-secondary); margin-bottom: 14px; }
.demo-copy ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.demo-copy li { font-size: 16px; display: flex; gap: 10px; color: var(--text-secondary); }
.demo-copy li::before { content: "—"; color: var(--accent); font-weight: 700; }

/* ---- transcricao (demo enlatado) ---- */
.tr-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border-soft); }
.tr-head h4 { font-family: var(--font-display); font-size: 18px; }
.live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: oklch(50% 0.18 25); }
.live .rec { width: 9px; height: 9px; border-radius: 50%; background: oklch(58% 0.2 25); animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform: scale(1); } 50%{ opacity:.4; transform: scale(.8); } }
.tr-body { padding: 20px 20px 8px; min-height: 268px; }
.tr-line { display: flex; gap: 12px; margin-bottom: 15px; line-height: 1.55; }
.tr-line .who { flex: 0 0 78px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); padding-top: 3px; }
.tr-line .who.adv { color: var(--primary); }
.tr-line p { font-size: 16.5px; color: var(--text); }
.tr-line.partial p { font-style: italic; color: var(--text-faint); }
.caret { display: inline-block; width: 2px; height: 1em; background: var(--accent); vertical-align: -2px; margin-left: 1px; animation: blink 1s step-end infinite; }
@keyframes blink { 50%{ opacity: 0; } }
.tr-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid var(--border-soft); background: oklch(98% 0.002 90); }
.tr-foot small { font-size: 13px; color: var(--text-faint); }
.tr-foot .wc { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }
.btn-replay { font-size: 14px; font-weight: 600; color: var(--primary); background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; cursor: pointer; }
.btn-replay:hover { border-color: var(--primary); background: var(--primary-light); }

/* ---- perguntas (estatico, espelha o produto) ---- */
.pq { display: grid; grid-template-columns: 200px 1fr; min-height: 360px; }
@media (max-width: 520px){ .pq { grid-template-columns: 1fr; } .pq-rail { display: none; } }
.pq-rail { border-right: 1px solid var(--border-soft); padding: 12px; background: oklch(98.5% 0.002 90); display: flex; flex-direction: column; gap: 7px; }
.mod { text-align: left; border: 1px solid transparent; background: none; border-radius: var(--radius-sm); padding: 9px 10px; cursor: default; }
.mod .top { display: flex; align-items: center; justify-content: space-between; }
.mod .name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.mod .ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.mod .bar { height: 4px; border-radius: 2px; background: var(--border-soft); margin-top: 8px; overflow: hidden; }
.mod .bar i { display: block; height: 100%; background: var(--accent); }
.mod .count { font-size: 11px; color: var(--text-faint); margin-top: 4px; display: block; }
.mod.active { background: var(--accent-light); border-color: oklch(80% 0.08 60); }
.mod.done .name { color: var(--text-faint); }
.mod.done .bar i { background: var(--success); }
.pq-main { padding: 24px 26px; }
.pq-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tag { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-full); }
.tag--mod { background: var(--primary-light); color: var(--primary); }
.tag--purpose { background: oklch(95% 0.02 90); color: var(--text-secondary); }
.pq-q { font-family: var(--font-display); font-size: 23px; line-height: 1.32; font-weight: 600; margin-bottom: 10px; }
.pq-hint { font-size: 14.5px; color: var(--text-faint); margin-bottom: 20px; }
.pq-actions { display: flex; align-items: center; gap: 10px; }
.ondeck { margin-top: 26px; border-top: 1px solid var(--border-soft); padding-top: 18px; }
.ondeck .t { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.deck-q { display: flex; gap: 12px; margin-bottom: 12px; }
.deck-q .num { flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.deck-q .q { font-size: 15.5px; color: var(--text); }
.deck-q .sub { font-size: 12.5px; color: var(--text-faint); }

/* ---- card viabilidade ---- */
.viab { padding: 26px; }
.viab-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.chance { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; padding: 7px 14px; border-radius: var(--radius-full); background: var(--success-light); color: var(--success); border: 1px solid oklch(80% 0.1 162); }
.valor { text-align: right; }
.valor .lbl { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); }
.valor .v { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--primary-dark); }
.verbas { display: grid; gap: 9px; }
.verba { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid var(--border-soft); border-radius: var(--radius-md); background: oklch(99% 0.001 90); }
.verba .vk { font-weight: 600; font-size: 15.5px; }
.verba .vf { margin-left: auto; font-family: var(--font-mono); font-size: 13px; color: var(--text-faint); }
.verba .src { font-size: 11.5px; padding: 3px 8px; border-radius: var(--radius-full); background: var(--primary-light); color: var(--primary); font-weight: 600; }
.verb-note { margin-top: 16px; font-size: 13px; color: var(--text-faint); display: flex; gap: 8px; align-items: center; }

/* diferenciais */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 820px){ .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.feat .ico { color: var(--accent-hover); line-height: 0; margin-bottom: 14px; }
.feat .ico svg { width: 28px; height: 28px; }
.feat h3 { font-size: 19px; margin-bottom: 8px; }

/* destaque duplo: mais rápido + mais completo */
.dual { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-bottom: 44px; }
.dual > div { background: var(--card); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.dual .tag { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-hover); }
.dual h3 { font-size: 22px; margin: 6px 0 8px; }
.dual p { font-size: 15.5px; color: var(--text-secondary); }

/* grid de operação/escala (3 colunas) */
.ops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feat p { font-size: 15.5px; color: var(--text-secondary); }

/* CTA final */
.cta { text-align: center; background: var(--primary-dark); color: oklch(95% 0.01 90); border-radius: var(--radius-xl); padding: 64px 32px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; inset: 0; opacity: .06; background-image: radial-gradient(circle at 80% 20%, var(--accent), transparent 40%); pointer-events: none; }
.cta h2 { font-size: 38px; color: #fff; margin-bottom: 14px; position: relative; }
.cta p { font-size: 19px; color: oklch(82% 0.02 255); max-width: 50ch; margin: 0 auto 30px; position: relative; }
.cta .btn { position: relative; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 520px; margin: 0 auto; position: relative; }
.cta-form input { padding: 15px 16px; font-size: 16px; font-family: var(--font-body); border: 1px solid transparent; border-radius: var(--radius-md); width: 100%; }
.cta-form .btn { grid-column: 1 / -1; justify-content: center; }
@media (max-width: 480px){ .cta-form { grid-template-columns: 1fr; } }
.cta-note { margin-top: 14px; font-size: 13px; color: oklch(72% 0.02 255); position: relative; }
.cta-note a { color: oklch(86% 0.02 255); text-decoration: underline; }

/* como começamos */
.start-steps { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 0 auto 52px; max-width: 920px; }
@media (max-width: 760px){ .start-steps { grid-template-columns: 1fr; } }
.ss { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.ss-n { flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.ss h3 { font-size: 18px; margin-bottom: 5px; }
.ss p { font-size: 15px; color: var(--text-secondary); line-height: 1.45; }

/* footer */
.site-footer { padding: 44px 0; border-top: 1px solid var(--border-soft); color: var(--text-faint); font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.foot-brand { display: flex; align-items: baseline; gap: 10px; }
.foot-tag { font-size: 14px; color: var(--text-faint); }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--text-secondary); font-weight: 500; }
.foot-links a:hover { color: var(--primary); }
.foot-legal { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--text-faint); text-align: right; }
@media (max-width: 680px){ .site-footer .wrap { flex-direction: column; } .foot-legal { text-align: left; } }

/* páginas legais (prose) */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal .back { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.legal .back:hover { color: var(--primary); }
.legal h1 { font-size: 40px; margin: 18px 0 6px; }
.legal .meta { font-size: 14px; color: var(--text-faint); margin-bottom: 8px; }
.legal .tpl-note { background: var(--accent-light); border: 1px solid oklch(80% 0.08 60); border-radius: var(--radius-md); padding: 12px 16px; font-size: 14px; color: var(--text-secondary); margin: 18px 0 34px; }
.legal h2 { font-size: 23px; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 16.5px; color: var(--text-secondary); line-height: 1.6; }
.legal ul { margin: 10px 0 10px 22px; display: grid; gap: 6px; }
.legal a { color: var(--primary); text-decoration: underline; }

/* reveal on scroll — só esconde quando há JS (html.js); sem JS o conteúdo
   fica visível por padrão, nunca embarca em branco em aba oculta/headless */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ html.js .reveal { opacity: 1; transform: none; transition: none; } .live .rec, .caret { animation: none; } html { scroll-behavior: auto; } }
