@charset "UTF-8";
/* =============================================================================
   UNLOCK FÁCIL — SISTEMA VISUAL "SALA DE SERVIÇO"
   -----------------------------------------------------------------------------
   Regras de manutenção (não quebre, é o que segura a identidade do site):

   1. CAIXA COM BORDA NOS 4 LADOS: no máximo 3 por página. Hoje são 2 na home
      (painel do hero e card de produto). Precisa separar algo? Use uma régua
      (.rule) ou uma linha com hairline, não mais uma caixa.
   2. TRILHO DE TICKS (.rail): exatamente 3 usos por página — aresta do painel
      do hero, espinha do "Como funciona" e borda superior do rodapé.
   3. ÂMBAR (--accent): no máximo 4 ocorrências visíveis por tela. Nunca em texto
      corrido, título, ícone, fundo de seção ou gradiente.
   4. VERDE (--green): só status real, vindo do config. Um lugar por página.
   5. BREAKPOINTS: só 640px, 900px e 1200px. Não invente outro.
   6. RAIO: teto de 6px. Nada mais arredondado que isso.
   7. SOMBRA: proibida. A única permitida é o inset de 1px no topo dos painéis.
   8. FONTES: Manrope só em título/numeral. Inter em todo o resto. Sem exceção.
   ========================================================================== */

/* ---------------------------------------------------------------- 1. TOKENS */
:root {
  /* Paleta da marca */
  --ink-900: #0B0F14;   /* fundo da página */
  --band: #141A21;      /* segunda camada: faixas de seção (grafite levantado) */
  --glow: rgba(255,149,0,.07); /* luz ambiente do hero, âmbar bem fraco */
  --accent: #FF9500;    /* acento da marca — âmbar */
  --paper: #F5F7FA;     /* texto principal */
  --green: #22C55E;     /* status apenas */

  /* Neutros derivados (os únicos permitidos) */
  --ink-850: #0E141B;   /* superfície de painel e card */
  --ink-800: #121A22;   /* cabeçalho de painel, hover */
  --ink-750: #18222C;   /* estado ativo / desabilitado */
  --line: #1F2C38;      /* borda padrão */
  --line-soft: #16202A; /* hairline interna e divisores */
  --line-strong: #2A3B4B;
  --line-deep: #263140; /* bordas dentro das faixas --band */
  --text-2: #A7B4C2;    /* texto de apoio — 8.9:1 sobre --ink-900 */
  --text-3: #7C8A99;    /* rótulos e legal — 5.4:1 sobre --ink-900 */
  --glyph: #6B7A8A;     /* traço de glifo SVG — nunca texto */
  --accent-cta: #FF9500;    /* preenchimento do botão — 8.6:1 com texto grafite */
  --accent-hover: #FFA733;  /* clareia no hover */
  --accent-press: #E07E00;  /* escurece ao pressionar */

  /* Foco de teclado em amarelo: fica fora da paleta da marca de propósito.
     Fica próximo do âmbar da marca, mas o offset de 2px cria um vão escuro que
     separa os dois, então o anel continua legível sobre o botão. */
  --focus: #FACC15;

  /* Tipografia */
  --font-display: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-h1: clamp(2.125rem, 1.55rem + 2.6vw, 3.5rem);
  --fs-h2: clamp(1.625rem, 1.35rem + 1.2vw, 2.25rem);
  --fs-h3: 1.125rem;
  --fs-lead: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-cap: 0.8125rem;
  --fs-label: 0.6875rem;  /* só rótulo em caixa alta de até 3 palavras */
  --fs-num: 2.5rem;
  --fs-step: 1.75rem;

  /* Espaço — base 4px */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px; --sp-24: 96px;

  --container: 1160px;
  --gutter: 20px;
  --radius-sm: 3px;
  --radius: 4px;
  --radius-lg: 6px;   /* teto absoluto */

  --ease: cubic-bezier(.2, 0, 0, 1);
  --speed: 150ms;
}

/* ------------------------------------------------------------- 2. RESET */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* header sticky não cobre a âncora */
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

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

/* Trava de família: nenhum texto corrido escapa para Manrope. */
p, li, dd, dt, td, th, input, textarea, select, button, summary, label, small, figcaption {
  font-family: var(--font-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
}

/* pretty (e não balance): balance equaliza as linhas e, com uma palavra longa
   como "UnlockTool", troca 3 linhas cheias por 4 linhas com órfãs. */
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.05; letter-spacing: -0.028em; text-wrap: pretty; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; max-width: 20ch; margin-bottom: var(--sp-4); }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.3;  letter-spacing: -0.01em; }
h4 { font-size: var(--fs-body); font-weight: 700; line-height: 1.4; letter-spacing: -0.006em; }

p { margin: 0 0 var(--sp-4); max-width: 62ch; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--paper); }

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

a { color: inherit; }

/* ---------------------------------------------------- 3. FOCO E ACESSIBILIDADE */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--accent-cta);
  color: var(--ink-900);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--speed) var(--ease);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 900px; }
.container--reading { max-width: 760px; }

.section { padding-block: var(--sp-16); }
/* Aproxima uma seção da anterior. Usado no catálogo, que precisa aparecer
   logo depois do hero em vez de esperar um respiro cheio. */
.section--tight { padding-top: var(--sp-12); }

/* Abertura de seção: eyebrow + régua + h2 + linha de contexto.
   Mantém o mesmo ritmo vertical em todas as seções do site. */
.section__head { margin-bottom: var(--sp-8); }
.section__head .lead { margin: 0; }
.section__head--airy { margin-bottom: var(--sp-12); }

/* Banda em segunda camada. Usada no máximo 2x por página, nunca coladas. */
.band {
  background: var(--band);
  border-block: 1px solid var(--line-deep);
  position: relative;
}
.band .eyebrow,
.band .step__text,
.band p { color: var(--text-2); } /* mantém o texto de apoio legível sobre a faixa */

/* ------------------------------------------------- 5. MOTIVO: RÉGUAS E RÓTULOS */

/* Trilho de instrumento — ticks descendentes a cada 24px. 3 usos por página. */
.rail {
  height: 5px;
  width: 100%;
  background:
    linear-gradient(var(--line), var(--line)) 0 0 / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 24px) 0 0 / 100% 5px no-repeat;
}
.band .rail {
  background:
    linear-gradient(var(--line-deep), var(--line-deep)) 0 0 / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, var(--line-deep) 0 1px, transparent 1px 24px) 0 0 / 100% 5px no-repeat;
}

/* Régua sólida de 40px sob o eyebrow. É a única linha que anima. */
.rule {
  height: 1px;
  width: 40px;
  background: var(--line-strong);
  margin-block: var(--sp-4) var(--sp-4);
  transform-origin: left center;
}
.band .rule { background: var(--accent); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;      /* quadrado, nunca círculo */
  background: var(--line-strong);
  flex-shrink: 0;
}
.band .eyebrow::before { background: var(--accent); }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-2);
  max-width: 58ch;
}

/* Marcador de lista: traço de 8x1px. Não usamos check verde em lista. */
.ticks { display: grid; gap: var(--sp-3); }
.ticks li {
  position: relative;
  padding-left: var(--sp-5);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.68em;
  width: 8px; height: 1px;
  background: var(--text-3);
}

/* Chip de status. Só com valor real vindo do config. Um por página. */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding-inline: var(--sp-2);
  border-radius: var(--radius-sm);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .28);
  color: var(--green);
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);   /* estático: não pulsa, não finge status ao vivo */
}
.chip--muted {
  background: var(--ink-750);
  border-color: var(--line);
  color: var(--text-2);
}
.chip--muted::before { display: none; }

/* Ressalva de terceiros: acento vira estrutura, não letra miúda. */
.disclaimer {
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-4);
  font-size: var(--fs-cap);
  line-height: 1.6;
  color: var(--text-3);
  max-width: 54ch;
  margin: 0;
}
.band .disclaimer { color: var(--text-2); }
.disclaimer a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.disclaimer a:hover { color: var(--paper); text-decoration-color: var(--accent); }

/* Bloco de aviso sem fundo preenchido: não compete com o card. */
.note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  background: transparent;
}
.note--spaced { margin-top: var(--sp-6); }
.note__label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 10px;
}
.note p { font-size: var(--fs-cap); line-height: 1.6; color: var(--text-3); max-width: 68ch; }
.band .note { border-color: var(--line-deep); }
.band .note p, .band .note__label { color: var(--text-2); }

/* ----------------------------------------------------------- 6. BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding-inline: var(--sp-6);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              color var(--speed) var(--ease);
}

/* Primário: fill fixo em repouso. Não depende de hover, que não existe no toque. */
.btn--primary {
  background: var(--accent-cta);
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9375rem;
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { background: var(--accent-press); }

.btn--secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--paper);
}
.btn--secondary:hover { border-color: var(--line-strong); background: var(--ink-800); }
.btn--secondary:active { background: var(--ink-750); }
.band .btn--secondary { border-color: var(--line-deep); }
.band .btn--secondary:hover { background: rgba(245, 247, 250, .04); border-color: var(--accent); }

.btn--block { width: 100%; min-height: 52px; }
.btn--sm { min-height: 40px; padding-inline: var(--sp-4); font-size: var(--fs-sm); }

/* Link de ação com seta. Usado quando um botão cheio pesaria demais. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  color: var(--paper);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color var(--speed) var(--ease);
}
.link-arrow:hover { text-decoration-color: var(--accent); }
.link-arrow svg { transition: transform var(--speed) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
}

/* ----------------------------------------------------------- 7. HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink-900);   /* sólido: sem blur, sem transparência */
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 160ms var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); }

.header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 24px; height: 24px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  white-space: nowrap;
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-8); }
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 63px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link[aria-current="page"] { color: var(--paper); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
}

.header__cta { display: none; }

.burger {
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin-right: -10px;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-2);
}

/* ---------------------------------------------------- 8. DRAWER MOBILE */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  /* visibility sem transição, só com atraso ao FECHAR: assim o painel já está
     visível no instante em que abre e o JS consegue mover o foco para dentro
     dele (focar elemento invisível é ignorado pelo navegador). */
  transition: opacity 160ms var(--ease), visibility 0s linear 160ms;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 160ms var(--ease), visibility 0s linear 0s;
}

.drawer__top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.drawer__close {
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}

.drawer__body { flex: 1; overflow-y: auto; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--paper);
  text-decoration: none;
}
.drawer__link[aria-current="page"] { color: var(--accent); }
.drawer__link svg { color: var(--glyph); }

.drawer__foot {
  flex-shrink: 0;
  padding-block: var(--sp-5) calc(var(--sp-5) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: var(--sp-4);
}

/* ------------------------------------------------------------- 9. HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-12);
  background: var(--ink-900);
}
/* Camada 1 — grade de bancada, mascarada para não virar papel milimetrado. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,  rgba(245,247,250,.022) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(245,247,250,.022) 0 1px, transparent 1px 40px);
  -webkit-mask-image: radial-gradient(120% 95% at 74% 18%, #000 0%, rgba(0,0,0,.55) 42%, transparent 72%);
          mask-image: radial-gradient(120% 95% at 74% 18%, #000 0%, rgba(0,0,0,.55) 42%, transparent 72%);
}
/* Camada 2 — luz ambiente. A única "luz" do site, e ela é azul profundo. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(560px 400px at 86% 4%, var(--glow) 0%, rgba(255,149,0,.025) 40%, transparent 72%);
}
.hero .container { position: relative; z-index: 2; }

.hero__grid { display: grid; gap: var(--sp-12); align-items: start; }
.hero__copy > * + * { margin-top: 0; }
/* Sem cap de ch: a coluna do grid já limita a medida. Um cap estreito demais
   força quatro linhas e deixa órfãs ("e comece" / "a trabalhar"). */
.hero h1 { margin-bottom: var(--sp-5); }
.hero__lead { margin-bottom: var(--sp-6); max-width: 46ch; }
.hero .actions { margin-bottom: var(--sp-5); }

/* Linha de especificação: fatos pequenos e verificáveis, sem número inventado. */
.spec-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-3);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 var(--sp-5);
  padding: 0;
}
.spec-line li { display: flex; align-items: center; gap: var(--sp-3); }
.spec-line li:not(:last-child)::after {
  content: "";
  width: 1px; height: 10px;
  background: var(--line-strong);
}

.hero__divider { height: 1px; background: var(--line-soft); margin-bottom: var(--sp-4); }

/* Faixa de preços do hero: os valores na primeira tela, em forma de leitura.
   Não é CTA — os botões de ação ficam logo abaixo. */
.pricestrip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: var(--sp-6);
  max-width: 46ch;
}
.pricestrip__item {
  flex: 1 1 0;
  min-width: 92px;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 0;
}
.pricestrip__item + .pricestrip__item {
  padding-left: var(--sp-4);
  border-left: 1px solid var(--line-soft);
}
.pricestrip__label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
  white-space: nowrap;
}
.pricestrip__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.2;
  white-space: nowrap;
}
.pricestrip__value small {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  margin-right: 3px;
}

/* ------------------------------------------- 10. PAINEL DO HERO (ficha) */
.panel {
  position: relative;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(245, 247, 250, .05);  /* único box-shadow do projeto */
  overflow: hidden;
}
/* Cantoneiras em L: bezel de visor de bancada. Só no painel do hero. */
.panel::before,
.panel::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  pointer-events: none;
  z-index: 2;
}
/* Ficam na aresta interna: o overflow:hidden do painel cortaria offsets negativos. */
.panel::before { top: 0; left: 0; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.panel::after { bottom: 0; right: 0; border-bottom: 1px solid var(--line-strong); border-right: 1px solid var(--line-strong); }

.panel__head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-inline: var(--sp-4);
  background: var(--ink-800);
  border-bottom: 1px solid var(--line);
}
.panel__title {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0;
}
.panel__rail { position: absolute; top: 0; left: 0; right: 0; z-index: 1; }

.panel__body { padding: var(--sp-2) var(--sp-4) var(--sp-4); }

/* Linhas de dado: rótulo à esquerda, valor à direita. Só fatos do config. */
.datalist { margin: 0; }
.datalist__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  min-height: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.datalist__row:last-child { border-bottom: 0; }
.datalist dt {
  font-size: var(--fs-cap);
  color: var(--text-3);
  margin: 0;
}
.datalist dd {
  margin: 0;
  font-size: var(--fs-cap);
  font-weight: 500;
  color: var(--paper);
  text-align: right;
}

/* Figura da bancada: aparelho ligado ao PC. Line art, sem screenshot falso. */
.panel__figure {
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--line-soft);
  margin: 0;
}
.panel__figure svg { width: 100%; height: auto; }
.panel__caption {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: var(--sp-3) 0 0;
}

/* ------------------------------------------------------ 11. CARD DE PRODUTO */
.product + .product { margin-top: var(--sp-12); }

.product__card {
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--speed) var(--ease);
}
.product__card:hover { border-color: var(--line-strong); }

.product__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.product__cat {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.product__name { font-size: 1.375rem; margin-bottom: var(--sp-1); }
.product__resumo { font-size: var(--fs-sm); color: var(--text-2); margin-bottom: var(--sp-4); }
.product__desc { font-size: var(--fs-sm); color: var(--text-2); margin-bottom: var(--sp-5); max-width: 60ch; }

.product__specs { border-top: 1px solid var(--line-soft); margin: 0 0 var(--sp-5); }
.product__specs .datalist__row { min-height: 48px; }

.product__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); }

/* ------------------------------------------------------------ 12. PLANOS */
.plans { margin-top: var(--sp-8); }
.plans__caption {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin-bottom: var(--sp-4);
  max-width: 60ch;
}
.plans__head { display: none; }

.plan {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5) 0 var(--sp-5) var(--sp-4);
  border-top: 1px solid var(--line-soft);
  border-left: 2px solid transparent;
}
.plans .plan:last-child { border-bottom: 1px solid var(--line-soft); }
.plan--featured { border-left-color: var(--accent); }

.plan__name { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; }
.plan__name h3 { font-size: var(--fs-h3); }
.plan__period { font-size: var(--fs-cap); color: var(--text-3); }
.plan__tag {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__currency { font-size: 0.9375rem; color: var(--text-2); }
.plan__value {
  font-family: var(--font-display);
  font-size: var(--fs-num);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--paper);
  line-height: 1;
}
/* "Sob consulta" é um valor legítimo, não um erro de layout. */
.plan__value--ask {
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: var(--text-2);
}
.plan__action { align-self: start; }

/* --------------------------------------------------- 13. COMO FUNCIONA */
.steps { position: relative; display: grid; gap: var(--sp-8); }
/* Espinha: o trilho passa por trás dos números. */
.steps::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 13px;
  width: 5px;
  background:
    linear-gradient(var(--line-deep), var(--line-deep)) 0 0 / 1px 100% no-repeat,
    repeating-linear-gradient(0deg, var(--line-deep) 0 1px, transparent 1px 24px) 0 0 / 5px 100% no-repeat;
}
.step { position: relative; padding-left: 46px; }
.step__num {
  position: absolute;
  left: 0; top: -4px;
  font-family: var(--font-display);
  font-size: var(--fs-step);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(245, 247, 250, .20);
  background: var(--band);   /* "fura" o trilho */
  padding-block: 2px;
  line-height: 1.1;
}
.step__title { margin-bottom: var(--sp-2); }
.step__text { font-size: var(--fs-sm); line-height: 1.6; color: var(--text-2); max-width: 40ch; margin: 0; }

/* -------------------------------------------------------- 14. BENEFÍCIOS */
.benefits { display: grid; gap: 0; margin: 0; }
.benefit {
  padding-block: var(--sp-5);
  border-top: 1px solid var(--line-soft);
}
.benefits .benefit:last-child { border-bottom: 1px solid var(--line-soft); }
.benefit dt { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-body); color: var(--paper); margin-bottom: 6px; }
.benefit dd { margin: 0; font-size: var(--fs-sm); color: var(--text-2); max-width: 56ch; }

/* --------------------------------------------------------------- 15. FAQ */
.faq { max-width: 760px; }
.faq__item { border-top: 1px solid var(--line-soft); }
.faq__item:last-child { border-bottom: 1px solid var(--line-soft); }

/* O título continua sendo heading para a hierarquia; o botão é quem recebe o
   estilo. max-width:none é obrigatório: sem ele o heading herda o cap de 20ch
   da regra global de h2 e a pergunta quebra em três linhas numa coluna magra. */
.faq__qwrap { margin: 0; max-width: none; font: inherit; letter-spacing: normal; }

.faq__q {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0 var(--sp-5) var(--sp-5);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.4;
  color: var(--text-2);
  transition: color var(--speed) var(--ease);
}
.faq__q:hover { color: var(--paper); }
.faq__q[aria-expanded="true"] { color: var(--paper); }
.faq__q[aria-expanded="true"]::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 2px; height: 18px;
  background: var(--accent);
}

/* Sinal +/x construído com duas barras. Sem biblioteca de ícones. */
.faq__sign { position: relative; width: 14px; height: 14px; flex-shrink: 0; transition: transform 160ms var(--ease); }
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 0; top: 6.5px;
  width: 14px; height: 1px;
  background: var(--glyph);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(45deg); }

/* Sem JS o painel fica aberto: a resposta continua legível e indexável. */
.faq__panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 200ms var(--ease);
}
.faq__panel > div {
  overflow: hidden;
  transition: visibility 200ms var(--ease);
}
.faq__item.is-closed .faq__panel { grid-template-rows: 0fr; }
/* Impede que link dentro de resposta fechada continue recebendo foco por Tab. */
.faq__item.is-closed .faq__panel > div { visibility: hidden; }
.faq__a {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 62ch;
  padding: 0 0 var(--sp-6) var(--sp-5);
}
.faq__a p { max-width: none; }
.faq__a a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.faq__a a:hover { text-decoration-color: var(--accent); }

/* -------------------------------------------------------- 16. DOWNLOAD */
.dl-panel {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--sp-4);
  align-items: start;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.dl-panel__icon { color: var(--text-2); margin-top: 2px; }
.dl-panel__title { margin-bottom: 6px; max-width: none; }
.dl-panel__text { font-size: var(--fs-sm); color: var(--text-2); margin-bottom: var(--sp-4); max-width: 56ch; }

/* ------------------------------------------------------- 17. CTA FINAL */
/* Mantém o mesmo eixo esquerdo do resto da página: obrigar o olho a reencontrar
   o alinhamento justamente no bloco de decisão custa conversão. */
.cta-final { padding-block: var(--sp-16); }
.cta-final h2 { margin-bottom: var(--sp-4); }
.cta-final p { color: var(--text-2); margin-bottom: var(--sp-6); max-width: 52ch; }

/* ---------------------------------------------------------- 18. RODAPÉ */
.footer { background: var(--ink-900); }
.footer__rail { max-width: var(--container); margin-inline: auto; }

.footer__grid {
  display: grid;
  gap: 0;
  padding-top: var(--sp-12);
}
.footer__col { padding-block: var(--sp-6); border-top: 1px solid var(--line-soft); }
.footer__col:first-child { border-top: 0; padding-top: 0; }

.footer__about { font-size: var(--fs-cap); line-height: 1.6; color: var(--text-3); max-width: 38ch; margin: var(--sp-4) 0 0; }
.footer__legalnote { font-size: var(--fs-cap); line-height: 1.6; color: var(--text-3); max-width: 44ch; margin: var(--sp-3) 0 0; }

.footer__title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 var(--sp-3);
}
.footer__links { display: grid; gap: 2px; }
.footer__links a {
  display: flex;
  align-items: center;
  min-height: 36px;
  font-size: var(--fs-cap);
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
.footer__links a:hover { color: var(--paper); }

.footer__contact { display: grid; gap: 2px; }
.footer__contact a,
.footer__contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  font-size: var(--fs-cap);
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
.footer__contact a:hover { color: var(--paper); }
.footer__contact svg { color: var(--glyph); flex-shrink: 0; }

.footer__bottom {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--line-soft);
  padding-block: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-cap);
  color: var(--text-3);
}
.footer__bottom p { margin: 0; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.footer__bottom a { color: var(--text-3); text-decoration: none; }
.footer__bottom a:hover { color: var(--text-2); }

/* --------------------------------------------------- 19. BARRA FIXA MOBILE */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--ink-850);
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease), visibility 180ms var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.sticky-cta__label { display: grid; gap: 1px; min-width: 0; }
.sticky-cta__label span:first-child {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__label span:last-child { font-size: var(--fs-sm); font-weight: 600; color: var(--paper); }
.sticky-cta .btn { min-height: 44px; flex-shrink: 0; }

/* ---------------------------------------------------- 20. PÁGINAS LEGAIS */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.375rem; margin: var(--sp-12) 0 var(--sp-4); max-width: none; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: var(--sp-6) 0 var(--sp-2); }
.prose p, .prose li { color: var(--text-2); font-size: 0.9375rem; }
.prose ul { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.prose ul li { position: relative; padding-left: var(--sp-5); max-width: 62ch; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--text-3);
}
.prose a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.prose a:hover { text-decoration-color: var(--accent); }

.page-head { padding-block: var(--sp-12) var(--sp-8); border-bottom: 1px solid var(--line-soft); }
.page-head h1 { margin-bottom: var(--sp-4); max-width: 18ch; }
.page-head .lead { margin: 0; }

/* --------------------------------------------- 21. ENTRADA DISCRETA (JS) */
.js .reveal { opacity: 0; transform: translateY(6px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.js .rule { transform: scaleX(0); }
.js .rule.is-in { transform: scaleX(1); transition: transform 420ms var(--ease); }

/* =============================================================================
   BREAKPOINTS — só três: 640, 900, 1200. Não adicione outros.
   ========================================================================== */

@media (min-width: 640px) {
  .hero { padding-block: var(--sp-16); }
  .section { padding-block: var(--sp-24); }
  .actions .btn { min-width: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; column-gap: var(--sp-8); }
  .footer__col:nth-child(2) { border-top: 0; padding-top: 0; }
  .plan { grid-template-columns: 1fr auto; align-items: center; }
  .plan__action { grid-column: 2; grid-row: 1 / span 3; }
}

@media (max-width: 639px) {
  .actions .btn { width: 100%; }
  .hero__grid { gap: var(--sp-8); }
  .panel { margin-top: var(--sp-4); }
  .product__card { padding: var(--sp-5); }
  .product__actions .btn { width: 100%; }
  .dl-panel { grid-template-columns: 1fr; padding: var(--sp-5); }
  .dl-panel .btn { width: 100%; }
}

/* A barra fixa existe até 899px, então a folga do rodapé acompanha o mesmo limite. */
@media (max-width: 899px) {
  body.has-sticky-cta { padding-bottom: 76px; }
}

@media (min-width: 900px) {
  :root { --gutter: 40px; }
  html { scroll-padding-top: 96px; }

  .header__inner { height: 72px; }
  .nav__link { height: 71px; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
  .drawer { display: none; }

  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
  .hero { padding-block: var(--sp-24) var(--sp-16); }

  .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
  .steps::before {
    top: 22px; bottom: auto; left: 0; right: 0;
    width: auto; height: 5px;
    background:
      linear-gradient(var(--line-deep), var(--line-deep)) 0 0 / 100% 1px no-repeat,
      repeating-linear-gradient(90deg, var(--line-deep) 0 1px, transparent 1px 24px) 0 0 / 100% 5px no-repeat;
  }
  .step { padding-left: 0; padding-top: 52px; }
  .step__num { top: 0; padding-inline: 0 var(--sp-2); }

  .benefits { grid-template-columns: 1fr 1fr; column-gap: var(--sp-12); }
  .benefits .benefit:nth-child(2) { border-top: 1px solid var(--line-soft); }

  .plans__head {
    display: grid;
    grid-template-columns: 3fr 4.5fr 2.5fr auto;
    gap: var(--sp-6);
    padding: 0 0 var(--sp-3) var(--sp-4);
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
  }
  .plan {
    grid-template-columns: 3fr 4.5fr 2.5fr auto;
    gap: var(--sp-6);
    align-items: center;
    padding-block: var(--sp-5);
  }
  .plan__action { grid-column: auto; grid-row: auto; }

  .dl-panel { grid-template-columns: 20px 1fr auto; align-items: center; }
  .dl-panel__text { margin-bottom: 0; }

  .footer__grid { grid-template-columns: 3fr 1.4fr 1.4fr 1.8fr; column-gap: var(--sp-8); }
  .footer__col { border-top: 0; padding-top: 0; padding-bottom: 0; }

  .sticky-cta { display: none; }
}

@media (min-width: 1200px) {
  /* Coluna de texto mais larga que o painel: a manchete precisa de medida para
     não quebrar em quatro linhas curtas. */
  .hero__grid { grid-template-columns: 1.2fr 1fr; gap: var(--sp-16); }
  .product__card { padding: var(--sp-8); }
}

/* ------------------------------------------- 22. MOVIMENTO REDUZIDO / PRINT */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .rule { transform: none; }
}

@media print {
  .header, .drawer, .sticky-cta, .hero::before, .hero::after { display: none !important; }
  body { background: #fff; color: #000; }
  /* Sem isto, tudo que ainda não entrou na tela sairia em branco no papel. */
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .rule { transform: none !important; }
  .faq__item.is-closed .faq__panel { grid-template-rows: 1fr; }
  .faq__item.is-closed .faq__panel > div { visibility: visible; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
}
