/* ATRACOU landing.css — GERADO por build-css.js. NÃO editar à mão.
   Edite os módulos em platform/styles/ e rode: node platform/build-css.js
   Módulos (ordem do cascade): _tokens.css, _base.css, _layout.css, _buttons.css, _nav.css, _hero.css, _features.css, _steps.css, _pricing.css, _testimonials.css, _nichos.css, _compare.css, _modules.css, _faq.css, _cta.css, _footer.css, _legal.css, _polish.css, _utilities.css, _responsive.css */
@layer reset, tokens, base, layout, components, utilities, overrides;

/* ===== _tokens.css (@layer tokens) ===== */
@layer tokens {
/* =============================================================================
 * 01 · TOKENS — fonte única de verdade do design system da LANDING Lumio.
 * -----------------------------------------------------------------------------
 * Espelha 1:1 os tokens do painel (admin/src/styles/_tokens.css) para que as
 * duas superfícies (site público + painel) falem a MESMA linguagem visual:
 * mesma escala Fibonacci, mesmas cores semânticas, mesmos raios/sombras.
 * Trocar a marca = mudar um token aqui, não caçar regra por regra.
 *
 * REGRA DE OURO: nenhum valor "cru". Espaço/raio/sombra/tempo saem SEMPRE de
 * um --fib-* ou de um token derivado. Nunca 7px, 10px, 1.2rem.
 * ===========================================================================*/

:root {
  /* ---- Espaço (Fibonacci px) — base de padding, margin, gap, tamanho ------ */
  --fib-1: 1px;     /* hairline / detalhe              */
  --fib-2: 2px;     /* borda grossa / detalhe          */
  --fib-3: 3px;     /* micro-espaço                    */
  --fib-5: 5px;     /* espaço denso                    */
  --fib-8: 8px;     /* espaço padrão entre irmãos      */
  --fib-13: 13px;   /* leitura / texto pequeno         */
  --fib-21: 21px;   /* padding de card / controle      */
  --fib-34: 34px;   /* respiro de seção / ícone grande */
  --fib-55: 55px;   /* respiro generoso                */
  --fib-89: 89px;   /* bloco / herói                   */
  --fib-144: 144px; /* coluna estreita                 */
  --fib-233: 233px; /* coluna média                    */
  --fib-377: 377px; /* coluna larga / card             */
  --fib-610: 610px; /* texto centrado / formulário     */
  --fib-987: 987px; /* largura máx. de conteúdo        */
  --fib-1597: 1597px; /* largura máx. de tela larga    */

  /* ---- Neutros (cinzas) — base minimalista ------------------------------- */
  --c-0: #ffffff;
  --c-50: #f8fafc;
  --c-100: #f1f5f9;
  --c-150: #eaeef3;
  --c-200: #e5e7eb;
  --c-300: #d1d8e0;
  --c-400: #9aa4b2;
  --c-500: #6b7280;
  --c-600: #4b5563;
  --c-700: #374151;
  --c-800: #1f2937;
  --c-900: #111827;

  /* ---- Marca (índigo) e estados ------------------------------------------ */
  --c-brand-50: #eef2ff;
  --c-brand-100: #e0e7ff;
  --c-brand-200: #c7d2fe;
  --c-brand-300: #a5b4fc;
  --c-brand-500: #6366f1;
  --c-brand: #4f46e5;
  --c-brand-600: #4f46e5;
  --c-brand-700: #4338ca;
  --c-brand-800: #3730a3;

  --c-ok-bg: #d1fae5;   --c-ok: #059669;   --c-ok-700: #047857;
  --c-warn-bg: #fef3c7; --c-warn: #d97706; --c-warn-700: #b45309;
  --c-err-bg: #fee2e2;  --c-err: #dc2626;  --c-err-700: #b91c1c;
  --c-info-bg: #dbeafe; --c-info: #2563eb; --c-info-700: #1d4ed8;

  /* ---- Aliases semânticos (o que os componentes consomem) ---------------- */
  --ink: var(--c-900);        /* texto principal        */
  --ink-soft: var(--c-700);   /* texto secundário forte */
  --muted: var(--c-500);      /* texto auxiliar         */
  --faint: var(--c-400);      /* placeholder / sutil    */
  --line: var(--c-200);       /* bordas / divisórias    */
  --line-soft: var(--c-150);  /* divisória sutil        */
  --bg: var(--c-0);           /* fundo da página        */
  --bg-alt: var(--c-50);      /* faixa alternada        */
  --surface: var(--c-0);      /* cartões / superfícies  */
  --surface-2: var(--c-50);   /* superfície aninhada    */
  --white: var(--c-0);

  /* Tons de faixa de seção — cada seção adjacente recebe um tom distinto
     e visível (nunca dois vizinhos iguais). Paleta fria e coesa. */
  --sec-mist:  #eef2ff;       /* índigo claro            */
  --sec-cloud: #f1f5f9;       /* cinza-azulado           */
  --sec-lav:   #f5f3ff;       /* lavanda                 */
  --sec-sky:   #eff6ff;       /* azul-céu                */
  --sec-mint:  #ecfdf5;       /* menta                   */

  --brand: var(--c-brand);
  --brand-d: var(--c-brand-700);
  --brand-soft: var(--c-brand-50);

  --ok: var(--c-ok);
  --warn: var(--c-warn);
  --err: var(--c-err);
  --info: var(--c-info);

  /* ---- Raios (cantos) — derivados da escala ------------------------------ */
  --r-xs: var(--fib-3);
  --r-sm: var(--fib-5);
  --r-md: var(--fib-8);
  --r-lg: var(--fib-13);
  --r-xl: var(--fib-21);
  --r-2xl: var(--fib-34);
  --r-pill: 999px;
  --r-full: 50%;

  /* ---- Sombras — suaves, minimalistas (blur na escala) ------------------- */
  --shadow-xs: 0 var(--fib-1) var(--fib-2) rgba(17, 24, 39, .04);
  --shadow-sm: 0 var(--fib-1) var(--fib-3) rgba(17, 24, 39, .06);
  --shadow-md: 0 var(--fib-3) var(--fib-13) rgba(17, 24, 39, .08);
  --shadow-lg: 0 var(--fib-8) var(--fib-34) rgba(17, 24, 39, .12);
  --shadow-xl: 0 var(--fib-13) var(--fib-55) rgba(17, 24, 39, .16);
  --shadow-brand: 0 var(--fib-8) var(--fib-34) rgba(79, 70, 229, .25);
  --shadow-focus: 0 0 0 var(--fib-3) var(--c-brand-100);

  /* ---- Tipografia -------------------------------------------------------- */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --text-xs: var(--fib-13);   /* 13px — legendas / badges          */
  --text-sm: 14px;            /* texto auxiliar                    */
  --text-md: 1rem;            /* corpo (16px)                      */
  --text-lg: var(--fib-21);   /* 21px — subtítulo / lead           */
  --text-xl: var(--fib-34);   /* 34px — h2 de seção                */
  --text-2xl: var(--fib-55);  /* 55px — h1 do herói                */
  --text-3xl: var(--fib-89);  /* 89px — número de destaque         */

  /* ---- Tipografia fluida (clamp) — só títulos/hero/lead ------------------
     Escala que cresce com a viewport entre um piso e um teto, sem media query.
     Faixa moderada (rem) para não regredir o visual em desktop/mobile. */
  --fs-hero: clamp(2rem, 1.3rem + 3.2vw, 3.5rem);    /* h1 do herói        */
  --fs-h2:   clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem); /* títulos de seção   */
  --fs-h3:   clamp(1.15rem, .95rem + .9vw, 1.5rem);  /* subtítulos         */
  --fs-lead: clamp(1.05rem, .98rem + .5vw, 1.3rem);  /* lead / subtítulo   */

  --lh-tight: 1.12;
  --lh-snug: 1.3;
  --lh-normal: 1.55;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra: 800;

  /* ---- Movimento — transições consistentes ------------------------------- */
  --t-fast: 89ms;
  --t-base: 144ms;
  --t-slow: 233ms;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);

  /* ---- Camadas (z-index) nomeadas ---------------------------------------- */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 300;
  --z-modal: 400;

  /* ---- Medidas de layout ------------------------------------------------- */
  --content-max: var(--fib-987);   /* 987px — texto/colunas         */
  --wide-max: 1180px;              /* faixa de seção (grid largo)   */
  --control-h: var(--fib-34);      /* altura de botões/inputs       */
  --section-y: var(--fib-89);      /* respiro vertical de seção     */
  --section-y-sm: var(--fib-55);   /* respiro reduzido (mobile)     */
}
}

/* ===== _base.css (@layer base) ===== */
@layer base {
/* =============================================================================
 * 02 · BASE — reset enxuto + elementos HTML + acessibilidade.
 * -----------------------------------------------------------------------------
 * Normaliza o comportamento do navegador e define os padrões de tipografia.
 * Foco visível e prefers-reduced-motion ficam aqui (acessibilidade na base).
 * ===========================================================================*/

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Trava qualquer rolagem horizontal acidental (gradientes/sombras que vazam
   além da viewport em telas estreitas). Conteúdo continua fluindo na vertical. */
html, body { overflow-x: hidden; max-width: 100%; }

/* Palavras longas (URLs/domínios em exemplos) quebram em vez de estourar. */
h1, h2, h3, p { overflow-wrap: break-word; }

/* Tipografia — escala fechada (h1→h4), sempre tokens de tamanho/peso. */
h1, h2, h3, h4 { line-height: var(--lh-tight); font-weight: var(--fw-extra); letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); font-weight: var(--fw-bold); letter-spacing: -.01em; }
h4 { font-size: var(--text-md); font-weight: var(--fw-bold); letter-spacing: 0; }

p { line-height: var(--lh-normal); }

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--brand); }

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

ul, ol { list-style: none; padding: 0; }

strong, b { font-weight: var(--fw-bold); }

small { font-size: var(--text-xs); }

/* Acessibilidade: foco visível só por teclado, nunca removido por completo. */
:focus-visible {
  outline: var(--fib-2) solid var(--brand);
  outline-offset: var(--fib-2);
  border-radius: var(--r-xs);
}

/* Respeita quem pediu menos movimento (vestibular / preferência). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Pular para o conteúdo (leitor de tela / teclado). */
.skip-link {
  position: absolute;
  left: var(--fib-13);
  top: calc(-1 * var(--fib-55));
  background: var(--ink);
  color: var(--white);
  padding: var(--fib-8) var(--fib-13);
  border-radius: var(--r-sm);
  z-index: var(--z-modal);
  transition: top var(--t-base) var(--ease);
}
.skip-link:focus { top: var(--fib-13); color: var(--white); }
}

/* ===== _layout.css (@layer layout) ===== */
@layer layout {
/* =============================================================================
 * 03 · LAYOUT — primitivos de estrutura: container, seção, grid, ritmo.
 * -----------------------------------------------------------------------------
 * "Margens, elementos, tamanhos e espaçamentos padronizados" começam aqui:
 * toda seção usa o MESMO container e o MESMO respiro vertical (--section-y).
 * Não escreva padding de seção solto — use .section / .container.
 * ===========================================================================*/

/* Container central — largura máxima + gutters laterais consistentes. */
.container {
  width: 100%;
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: var(--fib-34);
}
.container.narrow { max-width: var(--content-max); }
.container.tight  { max-width: var(--fib-610); }

/* Seção — respiro vertical padronizado. Faixa alternada com .section--alt. */
.section { padding-block: var(--section-y); }
.section--sm { padding-block: var(--section-y-sm); }
.section--alt { background: var(--bg-alt); }
/* Faixas de tom distintas — alternância visível entre seções vizinhas. */
.section--mist  { background: var(--sec-mist); }
.section--cloud { background: var(--sec-cloud); }
.section--lav   { background: var(--sec-lav); }
.section--sky   { background: var(--sec-sky); }
.section--mint  { background: var(--sec-mint); }
.section--brand { background: var(--brand); color: var(--white); }
.section--brand h1, .section--brand h2, .section--brand h3 { color: var(--white); }

/* Cabeçalho de seção — eyebrow + título + lead, centralizado e espaçado. */
.section-head { max-width: var(--content-max); margin-inline: auto; text-align: center; margin-bottom: var(--fib-55); }
.section-head .eyebrow { margin-bottom: var(--fib-13); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--fib-13); }
.section-head .lead { color: var(--muted); font-size: var(--fs-lead); line-height: var(--lh-snug); }
.section--brand .section-head .lead { color: var(--c-brand-100); }

/* Eyebrow — rótulo pequeno em maiúsculas acima do título. */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}
.section--brand .eyebrow { color: var(--c-brand-100); }

/* Lead — parágrafo de apoio maior, logo abaixo de um título. */
.lead { font-size: var(--text-lg); color: var(--muted); line-height: var(--lh-snug); }

/* Grid responsivo padronizado — auto-fit com mínimo nomeado pela escala. */
.grid { display: grid; gap: var(--fib-21); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(var(--fib-233), 1fr)); }
.grid--auto-lg { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Container queries (Técnica CSS moderna) — ENHANCEMENT, não substitui as
   media queries em _responsive.css. O .container vira contexto de consulta de
   inline-size; os grids dentro dele se adaptam à LARGURA DO CONTÊINER (não da
   viewport). Em navegador sem suporte, valem só as media queries — sem regressão.
   Os breakpoints de contêiner espelham a intenção das media queries (~768/480). */
.container { container-type: inline-size; container-name: landing; }

/* Acima de ~720px de contêiner: grade cheia (recursos, planos, nichos, etc.). */
@container landing (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--2, .plans { grid-template-columns: repeat(2, 1fr); }
  .grid--auto { grid-template-columns: repeat(auto-fit, minmax(var(--fib-233), 1fr)); }
}
/* Entre ~480 e ~720px: duas colunas (densidade média). */
@container landing (min-width: 480px) and (max-width: 719.98px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--auto { grid-template-columns: repeat(auto-fit, minmax(var(--fib-144), 1fr)); }
}
/* Abaixo de ~480px de contêiner: coluna única. */
@container landing (max-width: 479.98px) {
  .grid--2, .grid--3, .grid--4, .plans { grid-template-columns: 1fr; }
}

/* Cluster — fileira flexível com gap padrão (nav, grupos de botões, tags). */
.cluster { display: flex; align-items: center; gap: var(--fib-13); flex-wrap: wrap; }
.cluster.center { justify-content: center; }
.cluster.between { justify-content: space-between; }

/* Stack — empilha filhos com respiro vertical uniforme. */
.stack { display: flex; flex-direction: column; gap: var(--fib-21); }
.stack.gap-8 { gap: var(--fib-8); }
.stack.gap-13 { gap: var(--fib-13); }
.stack.gap-34 { gap: var(--fib-34); }
}

/* ===== _buttons.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 04 · BOTÕES — variantes, tamanhos e estados padronizados.
 * -----------------------------------------------------------------------------
 * Uma só base .btn com altura, padding e raio de tokens. Variantes mudam só
 * cor (primary/secondary/ghost/white). Tamanhos: .btn--lg / .btn--sm.
 * ===========================================================================*/

.btn {
  --btn-h: var(--control-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-8);
  min-height: var(--btn-h);
  padding: var(--fib-8) var(--fib-21);
  border: var(--fib-1) solid transparent;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: 1;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primária — cor da marca, com sombra colorida no hover. */
.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--brand-d); color: var(--white); box-shadow: var(--shadow-brand); }

/* Secundária — contorno sobre fundo claro. */
.btn--secondary { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--secondary:hover { border-color: var(--brand); color: var(--brand); }

/* Fantasma — sem fundo, só texto (links de nav que parecem botão). */
.btn--ghost { background: transparent; color: var(--ink-soft); }
.btn--ghost:hover { background: var(--surface-2); color: var(--ink); transform: none; }

/* Branca — para usar sobre faixas de marca (.section--brand). */
.btn--white { background: var(--white); color: var(--brand); }
.btn--white:hover { background: var(--c-brand-50); color: var(--brand-d); }

/* Contorno claro — sobre faixa de marca, alternativa à branca. */
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }

/* Tamanhos */
.btn--lg { --btn-h: var(--fib-55); padding: var(--fib-13) var(--fib-34); font-size: var(--text-md); border-radius: var(--r-md); }
.btn--sm { --btn-h: var(--fib-21); padding: var(--fib-5) var(--fib-13); font-size: var(--text-xs); }
.btn--block { width: 100%; }
}

/* ===== _nav.css (@layer layout) ===== */
@layer layout {
/* =============================================================================
 * 05 · NAV — cabeçalho fixo do site + marca + menu + ações.
 * -----------------------------------------------------------------------------
 * Header sticky com blur de fundo. Marca à esquerda, links no centro/direita.
 * No mobile os links de navegação recolhem (CTA principal permanece visível).
 * ===========================================================================*/

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: var(--fib-1) solid var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fib-21);
  min-height: var(--fib-55);
  padding-block: var(--fib-13);
}

/* Marca — ponto colorido + nome. */
.brand { display: inline-flex; align-items: center; gap: var(--fib-8); font-weight: var(--fw-extra); font-size: var(--text-lg); color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand .dot {
  width: var(--fib-21); height: var(--fib-21);
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-brand-500), var(--brand-d));
  box-shadow: var(--shadow-sm);
}

/* Navegação central — links de âncora para as seções. */
.site-nav { display: flex; align-items: center; gap: var(--fib-34); }
.site-nav a { color: var(--ink-soft); font-weight: var(--fw-semibold); font-size: var(--text-sm); }
.site-nav a:hover { color: var(--brand); }

/* Ações à direita — entrar + CTA. */
.header-actions { display: flex; align-items: center; gap: var(--fib-13); }

/* ---- Menu hambúrguer (mobile) — CSS puro via checkbox -------------------
 * No desktop o botão e o scrim ficam escondidos; o menu mobile só "liga"
 * dentro das media queries de _responsive.css. Aqui ficam só os primitivos. */
.nav-burger {
  display: none;                 /* aparece só no mobile (_responsive.css)  */
  flex-direction: column;
  justify-content: center;
  gap: var(--fib-5);
  width: var(--fib-34);
  height: var(--fib-34);
  padding: var(--fib-5);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex: none;
  transition: background var(--t-fast) var(--ease);
}
.nav-burger:hover { background: var(--surface-2); }
.nav-burger span {
  display: block;
  height: var(--fib-2);
  width: 100%;
  border-radius: var(--r-pill);
  background: var(--ink);
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
/* Vira "X" quando o menu está aberto. */
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(calc(var(--fib-5) + var(--fib-2))) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(calc(-1 * (var(--fib-5) + var(--fib-2)))) rotate(-45deg); }

/* Foco acessível no botão quando o checkbox é focado por teclado. */
.nav-toggle:focus-visible ~ .nav-burger { outline: var(--fib-2) solid var(--brand); outline-offset: var(--fib-2); }

/* Fundo escuro clicável que fecha o menu — só ativo no mobile com menu aberto. */
.nav-scrim { display: none; }
}

/* ===== _hero.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 06 · HERO — primeira dobra: promessa + CTA + prova rápida.
 * -----------------------------------------------------------------------------
 * Fundo com gradiente sutil de marca. Título grande, lead, dois CTAs e uma
 * linha de microcópia (sem cartão de crédito). Mock de painel abaixo.
 * ===========================================================================*/

.hero {
  position: relative;
  text-align: center;
  padding-block: var(--fib-89) var(--section-y);
  background:
    radial-gradient(70% 80% at 50% 0%, var(--c-brand-100) 0%, transparent 72%),
    linear-gradient(180deg, var(--sec-mist) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero h1 {
  font-size: var(--fs-hero);
  max-width: min(14ch, 100%);
  margin-inline: auto;
  margin-bottom: var(--fib-21);
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--c-brand-500), var(--brand-d));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  font-size: var(--fs-lead);
  max-width: min(52ch, 100%);
  margin-inline: auto;
  margin-bottom: var(--fib-34);
}
.hero .cta { justify-content: center; margin-bottom: var(--fib-21); }

/* Microcópia de reforço abaixo dos CTAs (remoção de fricção). */
.hero .microcopy { color: var(--muted); font-size: var(--text-sm); display: inline-flex; align-items: center; gap: var(--fib-8); flex-wrap: wrap; justify-content: center; }
.hero .microcopy .sep { width: var(--fib-3); height: var(--fib-3); border-radius: var(--r-full); background: var(--faint); }

/* Mock do painel — moldura "navegador" que sugere o produto. */
.hero-mock {
  max-width: var(--content-max);
  margin: var(--fib-55) auto 0;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-mock .bar { display: flex; align-items: center; gap: var(--fib-5); padding: var(--fib-13); border-bottom: var(--fib-1) solid var(--line-soft); background: var(--bg-alt); }
.hero-mock .bar i { width: var(--fib-13); height: var(--fib-13); border-radius: var(--r-full); background: var(--c-300); display: block; }
.hero-mock .bar i:nth-child(1) { background: #ff5f57; }
.hero-mock .bar i:nth-child(2) { background: #febc2e; }
.hero-mock .bar i:nth-child(3) { background: #28c840; }
.hero-mock .bar .url { margin-inline-start: var(--fib-8); font-size: var(--text-xs); color: var(--muted); font-family: var(--font-mono); }
.hero-mock .canvas { display: grid; grid-template-columns: var(--fib-144) 1fr; min-height: var(--fib-377); }
.hero-mock .mock-side { background: var(--bg-alt); border-right: var(--fib-1) solid var(--line-soft); padding: var(--fib-21) var(--fib-13); display: flex; flex-direction: column; gap: var(--fib-13); }
.hero-mock .mock-side span { height: var(--fib-13); border-radius: var(--r-pill); background: var(--c-200); }
.hero-mock .mock-side span:first-child { background: var(--c-brand-200); }
.hero-mock .mock-main { padding: var(--fib-21); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fib-13); align-content: start; }
.hero-mock .mock-kpi { height: var(--fib-89); border-radius: var(--r-md); background: linear-gradient(135deg, var(--c-50), var(--c-100)); border: var(--fib-1) solid var(--line-soft); }
.hero-mock .mock-kpi:nth-child(1) { background: linear-gradient(135deg, var(--c-brand-50), var(--c-brand-100)); }
.hero-mock .mock-row { grid-column: 1 / -1; height: var(--fib-144); border-radius: var(--r-md); background: var(--bg-alt); border: var(--fib-1) solid var(--line-soft); }

/* Tira de confiança logo abaixo do herói. */
.trustbar { border-top: var(--fib-1) solid var(--line-soft); border-bottom: var(--fib-1) solid var(--line-soft); background: var(--surface); }
.trustbar .container { display: flex; align-items: center; justify-content: center; gap: var(--fib-34); flex-wrap: wrap; padding-block: var(--fib-21); }
.trustbar .ti { display: inline-flex; align-items: center; gap: var(--fib-8); color: var(--muted); font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.trustbar .ti b { color: var(--ink); }
}

/* ===== _features.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 07 · FEATURES — grade de recursos (cartões com ícone, título e texto).
 * -----------------------------------------------------------------------------
 * Cartões padronizados: mesmo padding, mesmo raio, mesma altura mínima de
 * ícone. Hover sutil (eleva + borda de marca). Usa .grid--auto do layout.
 * ===========================================================================*/

.feature {
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--fib-34);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-brand-200); }

.feature .ico {
  width: var(--fib-55); height: var(--fib-55);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: var(--text-xl);
  margin-bottom: var(--fib-21);
}
.feature h3 { margin-bottom: var(--fib-8); }
.feature p { color: var(--muted); line-height: var(--lh-normal); }

/* Variante de destaque (1 cartão que ocupa 2 colunas, com fundo de marca). */
.feature--wide { grid-column: span 2; background: linear-gradient(135deg, var(--c-brand-50), var(--surface)); border-color: var(--c-brand-100); }

/* Lista de checks dentro de um cartão de feature. */
.feature .checks { margin-top: var(--fib-13); display: flex; flex-direction: column; gap: var(--fib-8); }
.feature .checks li { display: flex; align-items: center; gap: var(--fib-8); color: var(--ink-soft); font-size: var(--text-sm); }
.feature .checks li::before { content: "✓"; color: var(--ok); font-weight: var(--fw-bold); }
}

/* ===== _steps.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 08 · STEPS — "como funciona" em 3 passos numerados.
 * -----------------------------------------------------------------------------
 * Passos com número grande, título e texto. Conectados por uma linha (desktop)
 * que reforça a sequência. Espaçamento e tamanho do número saem de tokens.
 * ===========================================================================*/

.steps { counter-reset: step; position: relative; }

.step { position: relative; text-align: center; padding: var(--fib-21); }
.step .num {
  counter-increment: step;
  width: var(--fib-55); height: var(--fib-55);
  margin: 0 auto var(--fib-21);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: var(--brand);
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--fw-extra);
  box-shadow: var(--shadow-brand);
  position: relative; z-index: var(--z-base);
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: var(--fib-8); }
.step p { color: var(--muted); max-width: 32ch; margin-inline: auto; }

/* Linha conectora entre os passos (só desktop, atrás dos números). */
@media (min-width: 769px) {
  .steps.grid--3::before {
    content: "";
    position: absolute;
    top: calc(var(--fib-21) + var(--fib-34) / 2);
    left: 16.66%; right: 16.66%;
    height: var(--fib-2);
    background: linear-gradient(90deg, var(--c-brand-200), var(--c-brand-200));
    z-index: 0;
  }
}
}

/* ===== _pricing.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 09 · PRICING — planos lado a lado, com plano em destaque.
 * -----------------------------------------------------------------------------
 * Cartões de plano com preço grande, lista de itens e CTA. O plano destacado
 * (.plan--hl) ganha borda de marca, leve elevação e selo. Tudo via tokens.
 * ===========================================================================*/

.plans { align-items: stretch; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--fib-34);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.plan h3 { font-size: var(--text-lg); margin-bottom: var(--fib-5); }
.plan .plan-desc { color: var(--muted); font-size: var(--text-sm); margin-bottom: var(--fib-21); }

.plan .price { display: flex; align-items: baseline; gap: var(--fib-5); margin-bottom: var(--fib-21); }
.plan .price .amount { font-size: var(--text-xl); font-weight: var(--fw-extra); letter-spacing: -.02em; color: var(--ink); }
.plan .price small { color: var(--muted); font-size: var(--text-sm); font-weight: var(--fw-medium); }

.plan .plan-feats { display: flex; flex-direction: column; gap: var(--fib-13); margin-bottom: var(--fib-34); }
.plan .plan-feats li { display: flex; align-items: flex-start; gap: var(--fib-8); font-size: var(--text-sm); color: var(--ink-soft); }
.plan .plan-feats li::before { content: "✓"; color: var(--ok); font-weight: var(--fw-bold); flex: none; }
.plan .plan-feats li.off { color: var(--faint); }
.plan .plan-feats li.off::before { content: "—"; color: var(--faint); }

.plan .btn { margin-top: auto; }

/* Plano destacado */
.plan--hl {
  border-color: var(--brand);
  border-width: var(--fib-2);
  box-shadow: var(--shadow-lg);
}
.plan--hl .badge-hl {
  position: absolute;
  top: calc(-1 * var(--fib-13));
  left: 50%; transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: var(--fib-3) var(--fib-13);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-brand);
}

/* Nota de garantia abaixo dos planos. */
.pricing-note { text-align: center; color: var(--muted); font-size: var(--text-sm); margin-top: var(--fib-34); }
}

/* ===== _testimonials.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 10 · TESTIMONIALS — depoimentos em cartões (prova social qualitativa).
 * -----------------------------------------------------------------------------
 * Cartão com aspas, texto, autor e papel. Prova QUALITATIVA (sem números de
 * avaliações). Grade auto-fit padronizada.
 * ===========================================================================*/

.tcard {
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--fib-34);
  display: flex;
  flex-direction: column;
  gap: var(--fib-21);
}
.tcard .quote { font-size: var(--text-lg); line-height: var(--lh-snug); color: var(--ink); position: relative; }
.tcard .quote::before { content: "“"; font-size: var(--text-2xl); line-height: 0; color: var(--c-brand-200); margin-inline-end: var(--fib-3); vertical-align: -.3em; }
.tcard .who { display: flex; align-items: center; gap: var(--fib-13); margin-top: auto; }
.tcard .avatar {
  width: var(--fib-34); height: var(--fib-34);
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-brand-300), var(--brand-d));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); font-size: var(--text-sm);
  flex: none;
}
.tcard .who .name { font-weight: var(--fw-bold); font-size: var(--text-sm); }
.tcard .who .role { color: var(--muted); font-size: var(--text-xs); }
}

/* ===== _nichos.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 16 · NICHOS — faixa "para todo tipo de loja" com chips de segmentos.
 * -----------------------------------------------------------------------------
 * Prova de amplitude: a plataforma serve qualquer nicho. Chips uniformes,
 * com leve destaque ao passar o mouse. Espaçamento e raio saem de tokens.
 * ===========================================================================*/

.nichos { text-align: center; }
.nichos .chips { display: flex; flex-wrap: wrap; gap: var(--fib-13); justify-content: center; max-width: var(--content-max); margin-inline: auto; }

.nicho-chip {
  display: inline-flex; align-items: center; gap: var(--fib-8);
  padding: var(--fib-8) var(--fib-21);
  border-radius: var(--r-pill);
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--ink-soft);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.nicho-chip:hover { transform: translateY(-2px); border-color: var(--c-brand-200); color: var(--brand); box-shadow: var(--shadow-sm); }
.nicho-chip .emo { font-size: var(--text-lg); line-height: 1; }
}

/* ===== _compare.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 17 · COMPARE — comparativo "montar sozinho × com a Lumio".
 * -----------------------------------------------------------------------------
 * Duas colunas espelhadas: a dor (cinza, com ✗) e a solução (marca, com ✓).
 * Reforça o valor sem exagero. Medidas e cores 100% de tokens.
 * ===========================================================================*/

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fib-21); max-width: var(--content-max); margin-inline: auto; }

.compare-col {
  border-radius: var(--r-xl);
  padding: var(--fib-34);
  border: var(--fib-1) solid var(--line);
  background: var(--surface);
}
.compare-col h3 { font-size: var(--text-lg); margin-bottom: var(--fib-21); display: flex; align-items: center; gap: var(--fib-8); }
.compare-col ul { display: flex; flex-direction: column; gap: var(--fib-13); }
.compare-col li { display: flex; align-items: flex-start; gap: var(--fib-13); font-size: var(--text-sm); line-height: var(--lh-snug); }
.compare-col li .mk { flex: none; width: var(--fib-21); height: var(--fib-21); border-radius: var(--r-full); display: inline-flex; align-items: center; justify-content: center; font-size: var(--text-xs); font-weight: var(--fw-bold); }

/* Coluna "dor" — neutra, com ✗ vermelho. */
.compare-col.pain { background: var(--bg-alt); }
.compare-col.pain h3 { color: var(--ink-soft); }
.compare-col.pain li { color: var(--muted); }
.compare-col.pain .mk { background: var(--c-err-bg); color: var(--err); }

/* Coluna "solução" — destaque de marca, com ✓ verde. */
.compare-col.win { border-color: var(--c-brand-200); background: linear-gradient(135deg, var(--c-brand-50), var(--surface)); box-shadow: var(--shadow-md); }
.compare-col.win h3 { color: var(--brand-d); }
.compare-col.win li { color: var(--ink); font-weight: var(--fw-medium); }
.compare-col.win .mk { background: var(--c-ok-bg); color: var(--ok); }
}

/* ===== _modules.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 18 · MODULES — blocos compostos da landing (stat band, categorias de
 * recursos, spotlights 2-col, fluxo de automações, mock do editor).
 * -----------------------------------------------------------------------------
 * Padrões novos da home expandida. Tudo em tokens Fibonacci/semânticos — nada
 * de valor cru. Cada padrão é autossuficiente (inclui seu próprio empilhamento
 * mobile) para não depender de regra externa.
 * ===========================================================================*/

/* Seção com respiro reduzido (faixa de apoio logo abaixo de outra seção). */
.section--tight { padding-top: var(--fib-34); padding-bottom: var(--fib-34); }

/* ---- Faixa de capacidades (stat band) — provas qualitativas, sem métrica inventada -- */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fib-21);
  margin-top: var(--fib-34);
}
.stat {
  text-align: center;
  padding: var(--fib-21);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.stat .big { display: block; font-size: var(--text-xl); font-weight: var(--fw-extra); color: var(--brand); line-height: var(--lh-tight); }
.stat .lbl { display: block; margin-top: var(--fib-5); font-size: var(--text-sm); color: var(--muted); }

/* ---- Rótulo de categoria dentro da grade de recursos -------------------- */
.feat-cat {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: var(--fib-13);
  margin: var(--fib-21) 0 var(--fib-3);
}
.feat-cat:first-child { margin-top: 0; }
.feat-cat .ttl { font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--ink); white-space: nowrap; }
.feat-cat .ln { flex: 1; height: var(--fib-1); background: var(--line); }

/* Cartão compacto (mais densidade na grade completa de recursos) ---------- */
.feat-mini {
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--fib-21);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.feat-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-brand-200); }
.feat-mini .ico {
  width: var(--fib-34); height: var(--fib-34);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); background: var(--brand-soft); color: var(--brand);
  font-size: var(--text-lg); margin-bottom: var(--fib-13);
}
.feat-mini h3 { font-size: var(--text-md); margin-bottom: var(--fib-5); }
.feat-mini p { color: var(--muted); font-size: var(--text-sm); line-height: var(--lh-normal); }

/* ---- Spotlight: bloco 2 colunas (texto + visual), alterna o lado -------- */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fib-55);
  align-items: center;
}
.spotlight + .spotlight { margin-top: var(--fib-89); }
.spotlight.reverse .spot-text { order: 2; }
.spot-text .eyebrow { margin-bottom: var(--fib-13); }
.spot-text h2 { font-size: var(--fs-h2); margin-bottom: var(--fib-13); }
.spot-text p.lead { font-size: var(--fs-lead); margin-bottom: var(--fib-21); }
.spot-list { display: flex; flex-direction: column; gap: var(--fib-13); }
.spot-list li { display: flex; gap: var(--fib-13); align-items: flex-start; }
.spot-list .mk {
  flex: none; width: var(--fib-21); height: var(--fib-21); margin-top: var(--fib-2);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-full); background: var(--c-ok-bg); color: var(--c-ok-700);
  font-size: var(--text-xs);
}
.spot-list b { color: var(--ink); }
.spot-list span.tx { color: var(--muted); line-height: var(--lh-normal); }

/* Visual do editor: cartão com "blocos" empilháveis (puramente decorativo) */
.spot-visual {
  background: var(--surface); border: var(--fib-1) solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  padding: var(--fib-21); overflow: hidden;
}
.block-mock { display: flex; flex-direction: column; gap: var(--fib-13); }
.bm { border-radius: var(--r-md); border: var(--fib-1) dashed var(--c-brand-200); background: var(--c-brand-50); padding: var(--fib-13); display: flex; align-items: center; gap: var(--fib-13); color: var(--brand); font-weight: var(--fw-semibold); font-size: var(--text-sm); }
.bm i { font-size: var(--text-lg); }
.bm.tall { height: var(--fib-89); align-items: flex-end; }
.bm-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--fib-8); }
.bm-row .cell { height: var(--fib-55); border-radius: var(--r-sm); background: var(--c-100); border: var(--fib-1) solid var(--line); }

/* ---- Fluxo de automações (CRM) — lista de gatilhos --------------------- */
.autoflow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fib-13); }
.auto-item {
  display: flex; gap: var(--fib-13); align-items: flex-start;
  background: var(--surface); border: var(--fib-1) solid var(--line);
  border-radius: var(--r-lg); padding: var(--fib-21);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.auto-item:hover { border-color: var(--c-brand-200); box-shadow: var(--shadow-sm); }
.auto-item .ai-ico {
  flex: none; width: var(--fib-34); height: var(--fib-34);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); background: var(--brand-soft); color: var(--brand); font-size: var(--text-md);
}
.auto-item .ai-tt { font-weight: var(--fw-semibold); color: var(--ink); display: block; margin-bottom: var(--fib-2); }
.auto-item .ai-tx { color: var(--muted); font-size: var(--text-sm); line-height: var(--lh-snug); }

/* ---- Empilhamento mobile dos padrões novos ----------------------------- */
@media (max-width: 768px) {
  .statband { grid-template-columns: 1fr 1fr; gap: var(--fib-13); }
  .spotlight { grid-template-columns: 1fr; gap: var(--fib-34); }
  .spotlight.reverse .spot-text { order: 0; }
  .autoflow { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .statband { grid-template-columns: 1fr 1fr; }
}
}

/* ===== _faq.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 11 · FAQ — perguntas frequentes em <details> nativo (acessível, sem JS).
 * -----------------------------------------------------------------------------
 * Acordeão semântico: <details>/<summary>. Ícone +/− via ::after. Largura de
 * leitura limitada (.container.narrow). Espaçamento padronizado por token.
 * ===========================================================================*/

.faq { max-width: var(--content-max); margin-inline: auto; display: flex; flex-direction: column; gap: var(--fib-13); }

.faq-item {
  background: var(--surface);
  border: var(--fib-1) solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq-item[open] { border-color: var(--c-brand-200); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--fib-21);
  font-weight: var(--fw-bold);
  font-size: var(--text-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fib-13);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: var(--text-lg);
  font-weight: var(--fw-regular);
  color: var(--brand);
  transition: transform var(--t-base) var(--ease);
  flex: none;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--brand); }

.faq-item .answer { padding: 0 var(--fib-21) var(--fib-21); color: var(--muted); line-height: var(--lh-normal); }
.faq-item .answer p + p { margin-top: var(--fib-13); }
}

/* ===== _cta.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 12 · CTA — faixa final de conversão (fundo de marca).
 * -----------------------------------------------------------------------------
 * Bloco de fechamento: título forte, lead e botão de ação única. Fundo de
 * marca com textura sutil. Reaproveita .section--brand do layout.
 * ===========================================================================*/

.cta-band { position: relative; text-align: center; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 120% at 50% 0%, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: var(--z-base); }
.cta-band h2 { font-size: clamp(var(--fib-34), 5vw, var(--text-xl)); margin-bottom: var(--fib-13); }
.cta-band .lead { color: var(--c-brand-100); max-width: 48ch; margin: 0 auto var(--fib-34); }
.cta-band .cta { justify-content: center; }
.cta-band .microcopy { margin-top: var(--fib-21); color: var(--c-brand-100); font-size: var(--text-sm); }
}

/* ===== _footer.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 13 · FOOTER — rodapé rico: marca + colunas de links + base legal.
 * -----------------------------------------------------------------------------
 * Grade de colunas (marca larga + 3 grupos de links). Base com copyright e
 * links legais. Espaçamento e divisórias padronizados por token.
 * ===========================================================================*/

.site-footer { background: var(--c-900); color: var(--c-300); }
.site-footer a { color: var(--c-300); }
.site-footer a:hover { color: var(--white); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--fib-34);
  padding-block: var(--section-y-sm);
}

.footer-brand .brand { color: var(--white); margin-bottom: var(--fib-13); }
.footer-brand .brand:hover { color: var(--white); }
.footer-brand p { color: var(--c-400); font-size: var(--text-sm); max-width: 34ch; line-height: var(--lh-normal); }

.footer-col h4 { color: var(--white); font-size: var(--text-sm); margin-bottom: var(--fib-13); letter-spacing: .02em; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--fib-8); }
.footer-col a { font-size: var(--text-sm); }

.footer-bottom {
  border-top: var(--fib-1) solid rgba(255, 255, 255, .08);
  padding-block: var(--fib-21);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fib-13);
  flex-wrap: wrap;
  color: var(--c-400);
  font-size: var(--text-xs);
}
.footer-bottom .legal { display: flex; gap: var(--fib-21); flex-wrap: wrap; }
}

/* ===== _legal.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 18 · LEGAL — páginas de texto corrido (Termos, Privacidade).
 * -----------------------------------------------------------------------------
 * Largura de leitura confortável, hierarquia clara de títulos, espaçamento por
 * token. Reaproveita o cabeçalho/rodapé e os tokens da landing.
 * ===========================================================================*/

.legal { max-width: var(--content-max); margin-inline: auto; }
.legal .updated { color: var(--muted); font-size: var(--text-sm); margin-bottom: var(--fib-34); }
.legal h2 { font-size: var(--text-lg); margin: var(--fib-34) 0 var(--fib-13); }
.legal h3 { font-size: var(--text-md); margin: var(--fib-21) 0 var(--fib-8); }
.legal p { color: var(--ink-soft); line-height: var(--lh-normal); margin-bottom: var(--fib-13); }
.legal ul { margin: 0 0 var(--fib-13) var(--fib-21); }
.legal li { color: var(--ink-soft); line-height: var(--lh-normal); list-style: disc; margin-bottom: var(--fib-5); }
.legal a { color: var(--brand); font-weight: var(--fw-semibold); }
.legal .back { display: inline-block; margin-bottom: var(--fib-21); font-weight: var(--fw-semibold); color: var(--brand); }
}

/* ===== _polish.css (@layer components) ===== */
@layer components {
/* =============================================================================
 * 19 · POLISH — refinamentos da landing: ícones Font Awesome, tipografia
 *      Poppins, animações de entrada, hover, responsivo afinado.
 * -----------------------------------------------------------------------------
 * Aditivo, em tokens. Importado antes de _utilities/_responsive. Sem emojis —
 * todos os ícones são Font Awesome (<i class="fa-...">).
 * ===========================================================================*/

/* ---- Tipografia Poppins ----------------------------------------------- */
body { font-feature-settings: "kern" 1, "liga" 1; letter-spacing: -.005em; }
h1, h2, h3 { letter-spacing: -.025em; }
.lead { letter-spacing: 0; }

/* ---- Ícones Font Awesome nos componentes ----------------------------- */
/* Recurso: selo arredondado com ícone (substitui o emoji). */
.feature .ico { font-size: var(--text-lg); }
.feature .ico i { display: inline-flex; }
.feature:hover .ico { transform: scale(1.06) rotate(-3deg); transition: transform var(--t-base) var(--ease); }

/* Tira de confiança: ícone + texto. */
.trustbar .ti i { color: var(--brand); font-size: 1.1em; }

/* Microcópia (checks verdes). */
.hero .microcopy .ck, .cta-band .microcopy .ck { color: var(--ok); }
.section--brand .microcopy .ck { color: #fff; }

/* Chips de nicho: ícone colorido de marca. */
.nicho-chip .emo { font-size: var(--text-md); color: var(--brand); width: var(--fib-21); text-align: center; }
.nicho-chip:hover .emo { color: var(--brand-d); }

/* Comparativo: marcadores ✓/✗ via FA. */
.compare-col li .mk i { font-size: .8em; }

/* Nota de preço: ícone de lâmpada. */
.pricing-note i { color: var(--warn); margin-inline-end: var(--fib-3); }

/* Comparativo h3: ícone inline. */
.compare-col h3 i { font-size: .9em; }

/* ---- Botões: micro-interações ---------------------------------------- */
.btn { transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-fast) var(--ease); }
.btn i { transition: transform var(--t-fast) var(--ease); }
.btn:hover i { transform: translateX(2px); }
.btn--primary:hover { box-shadow: var(--shadow-brand); }

/* ---- Animações de entrada (revelar ao rolar via :target/scroll) ------ */
/* Entrada suave por seção quando entra na viewport (sem JS, via animation-timeline
 * quando suportado; fallback = aparece normal). */
@supports (animation-timeline: view()) {
  .feature, .tcard, .plan, .step, .nicho-chip {
    animation: pol-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
  @keyframes pol-rise { from { opacity: 0; transform: translateY(var(--fib-21)); } to { opacity: 1; transform: none; } }
}

/* ---- Hero: brilho sutil + mock com perspectiva ----------------------- */
.hero h1 .grad { background-size: 200% auto; }
.hero-mock { transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease); }
.hero-mock:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

/* ---- Cards de recurso/plano: hover refinado -------------------------- */
.feature { transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease); }
.feature:hover { transform: translateY(-4px); }
.plan { transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.plan--hl { position: relative; }
.plan--hl::before {
  content: ""; position: absolute; inset: calc(-1 * var(--fib-2));
  border-radius: inherit; padding: var(--fib-2);
  background: linear-gradient(135deg, var(--c-brand-300), var(--brand-d));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .5;
}

/* ---- Passos numerados: número com gradiente -------------------------- */
.step .num { background: linear-gradient(135deg, var(--c-brand-500), var(--brand-d)); }

/* ---- Depoimentos: aspas grandes -------------------------------------- */
.tcard { transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---- FAQ: foco e transição ------------------------------------------- */
.faq-item summary:focus-visible { outline: var(--fib-2) solid var(--brand); outline-offset: var(--fib-2); border-radius: var(--r-sm); }

/* ---- Cabeçalho fixo: sombra ao rolar --------------------------------- */
.site-header { transition: box-shadow var(--t-base) var(--ease); }

/* ---- Acessibilidade -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .feature, .plan, .tcard, .hero-mock, .nicho-chip, .step { animation: none !important; transition: none !important; }
}
}

/* ===== _utilities.css (@layer utilities) ===== */
@layer utilities {
/* =============================================================================
 * 14 · UTILITÁRIOS — classes auxiliares (Fibonacci). Padronizam espaçamento,
 *      alinhamento e tamanho sem CSS solto no HTML.
 * -----------------------------------------------------------------------------
 * Mesma convenção do painel: <prop><dir>-<step> com step ∈ escala Fibonacci.
 * Use SEMPRE estes utilitários em vez de style="" com px cru.
 * ===========================================================================*/

/* ---- Texto / cor ------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.muted { color: var(--muted); }
.ink { color: var(--ink); }
.brand-text { color: var(--brand); }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }
.text-lg { font-size: var(--text-lg); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold { font-weight: var(--fw-bold); }

/* ---- Visibilidade ------------------------------------------------------ */
.hide { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Margin vertical (escala) ------------------------------------------ */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: var(--fib-8); } .mb-8 { margin-bottom: var(--fib-8); }
.mt-13 { margin-top: var(--fib-13); } .mb-13 { margin-bottom: var(--fib-13); }
.mt-21 { margin-top: var(--fib-21); } .mb-21 { margin-bottom: var(--fib-21); }
.mt-34 { margin-top: var(--fib-34); } .mb-34 { margin-bottom: var(--fib-34); }
.mt-55 { margin-top: var(--fib-55); } .mb-55 { margin-bottom: var(--fib-55); }
.mx-auto { margin-inline: auto; }

/* ---- Padding (escala) -------------------------------------------------- */
.p-13 { padding: var(--fib-13); } .p-21 { padding: var(--fib-21); } .p-34 { padding: var(--fib-34); }
.py-21 { padding-block: var(--fib-21); } .py-34 { padding-block: var(--fib-34); }

/* ---- Gap (flex/grid) --------------------------------------------------- */
.gap-8 { gap: var(--fib-8); } .gap-13 { gap: var(--fib-13); } .gap-21 { gap: var(--fib-21); } .gap-34 { gap: var(--fib-34); }

/* ---- Tags / pílulas (badge informativo) -------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: var(--fib-5);
  padding: var(--fib-3) var(--fib-13);
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
}
.pill.ok { background: var(--c-ok-bg); color: var(--ok-700, var(--ok)); }

/* ---- Largura máxima de leitura ----------------------------------------- */
.measure { max-width: 60ch; }
.measure-narrow { max-width: 44ch; }
}

/* ===== _responsive.css (@layer overrides) ===== */
@layer overrides {
/* =============================================================================
 * 15 · RESPONSIVO — breakpoints 768 / 480 / 360 (vence os componentes).
 * -----------------------------------------------------------------------------
 * SEMPRE por último no cascade. Ajusta colunas, respiro e a navegação que
 * recolhe num menu hambúrguer no mobile. Mantém a hierarquia da escala (só
 * reduz de degrau) e o visual desktop intacto (só adiciona media queries).
 * ===========================================================================*/

/* ---- Tablet / mobile (≤768px) — menu hambúrguer ----------------------- */
@media (max-width: 768px) {
  :root { --section-y: var(--section-y-sm); }

  .container { padding-inline: var(--fib-21); }

  /* O header passa a posicionar o painel suspenso (nav + ações). */
  .site-header .container { position: relative; flex-wrap: wrap; }

  /* Mostra o botão hambúrguer. */
  .nav-burger { display: flex; }

  /* Nav + ações viram blocos full-width que quebram para baixo do brand+burger
     (flex-wrap), formando um painel suspenso. Fechados por padrão (max-height 0);
     abrem quando o checkbox está marcado. Empilham em ordem natural — sem
     sobreposição de panes absolutos. */
  .site-nav,
  .header-actions {
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--fib-5);
    overflow: hidden;
    max-height: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height var(--t-slow) var(--ease), opacity var(--t-base) var(--ease), margin var(--t-slow) var(--ease);
  }

  /* Aberto — checkbox marcado libera o painel. */
  .nav-toggle:checked ~ .site-nav {
    max-height: 60vh;
    opacity: 1;
    pointer-events: auto;
    margin-top: var(--fib-13);
  }
  .nav-toggle:checked ~ .header-actions {
    max-height: 40vh;
    opacity: 1;
    pointer-events: auto;
    margin-top: var(--fib-8);
  }

  /* Links de nav em linha cheia, tocáveis, separados por divisória sutil. */
  .site-nav a {
    display: block;
    padding: var(--fib-13) var(--fib-8);
    font-size: var(--text-md);
    border-radius: var(--r-sm);
    border-bottom: var(--fib-1) solid var(--line-soft);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a:hover { background: var(--surface-2); }

  /* Ações ficam abaixo do menu, botões em bloco. */
  .header-actions .btn { width: 100%; font-size: var(--text-sm); min-height: var(--fib-34); }

  /* Scrim que fecha ao tocar fora — cobre a página sob o painel. */
  .nav-toggle:checked ~ .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--fib-55);
    background: rgba(17, 24, 39, .28);
    z-index: var(--z-base);
  }

  /* ---- Grids viram 2 colunas no tablet ---- */
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .feature--wide { grid-column: auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--fib-34) var(--fib-21); }
  .footer-brand { grid-column: 1 / -1; }

  .hero { padding-block: var(--fib-55) var(--section-y-sm); }
  .hero-mock .canvas { grid-template-columns: 1fr; }
  .hero-mock .mock-side { display: none; }

  .steps.grid--3::before { display: none; }
  .trustbar .container { gap: var(--fib-21); }
}

/* ---- Mobile (≤480px) --------------------------------------------------- */
@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4, .plans, .compare { grid-template-columns: 1fr; }

  .hero .cta { flex-direction: column; align-items: stretch; }
  .hero .cta .btn { width: 100%; }

  /* Todos os clusters de CTA viram coluna full-width (hero + CTA final). */
  .cta-band .cta { flex-direction: column; align-items: stretch; }
  .cta-band .cta .btn { width: 100%; }

  .section-head { margin-bottom: var(--fib-34); }
  .section-head h2 { font-size: var(--fib-34); }

  /* Títulos grandes encolhem mais um degrau. */
  .hero h1 { font-size: clamp(var(--fib-34), 9vw, var(--text-xl)); }

  .hero-mock .mock-main { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Microcópia do hero quebra em coluna, separadores somem. */
  .hero .microcopy { flex-direction: column; gap: var(--fib-5); }
  .hero .microcopy .sep { display: none; }
}

/* ---- Mobile pequeno (≤360px) ------------------------------------------- */
@media (max-width: 360px) {
  .container { padding-inline: var(--fib-13); }
  .feature, .plan, .tcard, .compare-col { padding: var(--fib-21); }
  .footer-top { grid-template-columns: 1fr; }

  /* Faixa de capacidades empilha em coluna única para não apertar. */
  .statband { grid-template-columns: 1fr; }

  /* Mock do painel em coluna única — KPIs não estouram. */
  .hero-mock .mock-main { grid-template-columns: 1fr; }

  /* Chips de nicho ocupam a largura disponível, sem vazar. */
  .nichos .chips { gap: var(--fib-8); }
}

/* ---- Impressão --------------------------------------------------------- */
@media print {
  .site-header, .cta-band, .site-footer { display: none; }
  body { color: #000; background: #fff; }
}
}
