/* ==========================================================================
   Atlantis — Sistema de Gestão Empresarial
   Folha de estilo principal

   Paleta e tipografia derivadas do Manual de Identidade Visual Atlantis:
     Turquesa  R28  G152 B170  →  #1C98AA
     Azul      R42  G104 B150  →  #2A6896
     Tipografia: "moderna, elegante e fluida", peso 300
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marca — valores oficiais do manual */
  --teal:        #1C98AA;
  --teal-deep:   #14707E;
  --teal-soft:   #E4F3F5;
  --blue:        #2A6896;
  --blue-deep:   #1D4B6D;
  --blue-soft:   #E6EEF5;

  /* Neutros com viés azul-esverdeado, derivados da marca */
  --ink:         #0B2431;
  --ink-2:       #3C5B6A;
  --ink-3:       #6B8895;
  --ground:      #F4F8F9;
  --surface:     #FFFFFF;
  --surface-2:   #E9F1F3;
  --rule:        #D8E5E9;
  --rule-strong: #BFD3D9;

  /* Superfície profunda (seções escuras) — fixa nos dois temas */
  --deep:        #0A2632;
  --deep-2:      #0E3242;
  --deep-ink:    #EAF4F6;
  --deep-ink-2:  #9CBCC7;
  --deep-rule:   #1B4354;

  --ok:          #1E7D5E;
  --warn:        #9A6B12;

  --shadow-sm: 0 1px 2px rgba(11,36,49,.05), 0 2px 6px -2px rgba(11,36,49,.08);
  --shadow:    0 1px 2px rgba(11,36,49,.05), 0 12px 32px -14px rgba(11,36,49,.20);
  --shadow-lg: 0 2px 4px rgba(11,36,49,.05), 0 28px 64px -28px rgba(11,36,49,.32);

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Escala tipográfica fluida */
  --t--2: clamp(11.5px, .08vw + 11.2px, 12.5px);
  --t--1: clamp(13.5px, .14vw + 13.1px, 14.5px);
  --t-0:  clamp(16px,   .22vw + 15.4px, 17.5px);
  --t-1:  clamp(18px,   .38vw + 17.1px, 20.5px);
  --t-2:  clamp(21px,   .7vw  + 19.3px, 25px);
  --t-3:  clamp(25px,   1.3vw + 21.8px, 33px);
  --t-4:  clamp(30px,   2.3vw + 24.2px, 45px);
  --t-5:  clamp(36px,   4.2vw + 25.5px, 66px);

  --wrap: 1160px;
  --gutter: clamp(20px, 4vw, 40px);

  --sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --teal:        #35B9CC;
    --teal-deep:   #59CEDE;
    --teal-soft:   #10333A;
    --blue:        #62A3D4;
    --blue-deep:   #8FC0E4;
    --blue-soft:   #12293A;

    --ink:         #E3F0F3;
    --ink-2:       #A3BDC7;
    --ink-3:       #70909D;
    --ground:      #061620;
    --surface:     #0C222D;
    --surface-2:   #122E3B;
    --rule:        #1B3C4A;
    --rule-strong: #27505F;

    --deep:        #04121A;
    --deep-2:      #082532;
    --deep-rule:   #14384A;

    --ok:          #4BB58E;
    --warn:        #D2A24A;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 12px 32px -14px rgba(0,0,0,.7);
    --shadow-lg: 0 2px 4px rgba(0,0,0,.4), 0 28px 64px -28px rgba(0,0,0,.85);
  }
}

:root[data-theme="dark"] {
  --teal:        #35B9CC;
  --teal-deep:   #59CEDE;
  --teal-soft:   #10333A;
  --blue:        #62A3D4;
  --blue-deep:   #8FC0E4;
  --blue-soft:   #12293A;

  --ink:         #E3F0F3;
  --ink-2:       #A3BDC7;
  --ink-3:       #70909D;
  --ground:      #061620;
  --surface:     #0C222D;
  --surface-2:   #122E3B;
  --rule:        #1B3C4A;
  --rule-strong: #27505F;

  --deep:        #04121A;
  --deep-2:      #082532;
  --deep-rule:   #14384A;

  --ok:          #4BB58E;
  --warn:        #D2A24A;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 12px 32px -14px rgba(0,0,0,.7);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.4), 0 28px 64px -28px rgba(0,0,0,.85);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-0);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.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;
}

/* --------------------------------------------------------------------------
   3. Elementos de marca
   -------------------------------------------------------------------------- */

/* Trilha de pixels crescentes — do símbolo Atlantis ("do pixel ao gráfico") */
.pixels { display: inline-flex; align-items: flex-end; gap: 3px; height: 12px; }
.pixels i { display: block; width: 4px; background: var(--teal); border-radius: 1px; }
.pixels i:nth-child(1) { height: 4px;  opacity: .45; }
.pixels i:nth-child(2) { height: 7px;  opacity: .7;  background: var(--blue); }
.pixels i:nth-child(3) { height: 11px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--mono); font-size: var(--t--2); font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 18px;
}

.section-head { max-width: 62ch; margin-bottom: clamp(34px, 4vw, 52px); }
.section-head h2 { font-size: var(--t-4); font-weight: 300; letter-spacing: -.03em; }
.section-head h2 b { font-weight: 700; color: var(--teal-deep); }
.section-head p { margin-top: 16px; font-size: var(--t-1); color: var(--ink-2); max-width: 58ch; }

section { padding-block: clamp(64px, 8vw, 116px); }

/* --------------------------------------------------------------------------
   4. Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--sans); font-size: var(--t--1); font-weight: 700; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 20px -8px rgba(28,152,170,.75); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(28,152,170,.85); }
:root[data-theme="dark"] .btn-primary,
:root[data-theme="dark"] .btn-primary:hover { color: #04121A; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn-primary,
  :root:not([data-theme="light"]) .btn-primary:hover { color: #04121A; }
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }

.btn-light { background: rgba(255,255,255,.1); color: var(--deep-ink); border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: var(--t-0); }

@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* --------------------------------------------------------------------------
   5. Cabeçalho
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--rule); background: color-mix(in srgb, var(--ground) 96%, transparent); }

.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 34px; width: auto; }
/* Fundo escuro usa a versão monocromática negativa da marca — prevista no
   Manual de Identidade Visual — em vez de baixar um segundo arquivo. */
:root[data-theme="dark"] .brand img { filter: brightness(0) invert(1); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand img { filter: brightness(0) invert(1); }
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 12px); }
.site-nav a {
  display: block; padding: 9px 13px; border-radius: 999px;
  font-size: var(--t--1); font-weight: 600; color: var(--ink-2); text-decoration: none;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="true"] { color: var(--teal-deep); background: var(--teal-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  background: transparent; border: 1px solid var(--rule); border-radius: 999px;
  color: var(--ink-2); cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.theme-toggle:hover { border-color: var(--teal); color: var(--teal-deep); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display: none; }
}

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .header-inner { height: 66px; }
  .site-nav {
    position: fixed; inset: 66px 0 auto; margin: 0;
    background: var(--surface); border-bottom: 1px solid var(--rule);
    padding: 12px var(--gutter) 24px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  .site-nav[data-open="true"] { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 13px 14px; font-size: var(--t-0); border-radius: var(--radius-sm); }
  .header-actions .btn { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 40px; height: 40px; margin-left: auto;
    background: transparent; border: 1px solid var(--rule); border-radius: 999px;
    color: var(--ink); cursor: pointer;
  }
  .nav-toggle svg { width: 19px; height: 19px; }
  .nav-toggle .i-close { display: none; }
  .nav-toggle[aria-expanded="true"] .i-close { display: block; }
  .nav-toggle[aria-expanded="true"] .i-menu  { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(52px, 7vw, 96px) clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg svg { position: absolute; top: -14%; right: -16%; width: min(1000px, 92vw); opacity: .5; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .hero-bg svg { opacity: .34; } }
:root[data-theme="dark"] .hero-bg svg { opacity: .34; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 68px); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: var(--t-5); font-weight: 300; letter-spacing: -.035em; line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 b { font-weight: 700; color: var(--teal-deep); }
.hero-lead { font-size: var(--t-1); color: var(--ink-2); max-width: 50ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-note { display: flex; align-items: center; gap: 9px; font-size: var(--t--1); color: var(--ink-3); }
.hero-note svg { width: 16px; height: 16px; flex: none; color: var(--ok); }

/* Painel ilustrativo do hero */
.panel {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.panel-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--rule); background: var(--surface-2); }
.panel-bar span { width: 9px; height: 9px; border-radius: 999px; background: var(--rule-strong); }
.panel-bar b { margin-left: 8px; font-family: var(--mono); font-size: var(--t--2); font-weight: 500; color: var(--ink-3); letter-spacing: .06em; }
.panel-body { padding: clamp(18px, 2.4vw, 26px); display: grid; gap: 14px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat {
  background: var(--surface-2); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  padding: 14px 15px;
}
.stat .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.stat .v { font-size: var(--t-2); font-weight: 700; letter-spacing: -.03em; margin-top: 5px; font-variant-numeric: tabular-nums; }
.stat:nth-child(1) .v { color: var(--teal-deep); }
.stat:nth-child(2) .v { color: var(--blue); }

.bars { display: flex; align-items: flex-end; gap: 7px; height: 96px; padding: 16px 15px 0;
  background: var(--surface-2); border: 1px solid var(--rule); border-radius: var(--radius-sm); }
.bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(var(--teal), color-mix(in srgb, var(--teal) 45%, transparent)); }
.bars i:nth-child(even) { background: linear-gradient(var(--blue), color-mix(in srgb, var(--blue) 45%, transparent)); }

.panel-list { display: grid; gap: 7px; }
.panel-list li {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px;
  background: var(--surface-2); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  font-size: var(--t--1); color: var(--ink-2);
}
.panel-list svg { width: 15px; height: 15px; flex: none; color: var(--teal); }
.panel-list b { margin-left: auto; font-family: var(--mono); font-size: var(--t--2); color: var(--ink-3); }

/* --------------------------------------------------------------------------
   7. Faixa de credibilidade
   -------------------------------------------------------------------------- */
.trust { border-block: 1px solid var(--rule); background: var(--surface); padding-block: 26px; }
.trust ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust li { display: flex; align-items: center; gap: 13px; }
.trust svg { width: 22px; height: 22px; flex: none; color: var(--teal); }
.trust b { display: block; font-size: var(--t--1); font-weight: 700; line-height: 1.3; }
.trust span { display: block; font-size: var(--t--2); color: var(--ink-3); line-height: 1.4; }
@media (max-width: 820px) { .trust ul { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; } }
@media (max-width: 420px) { .trust ul { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   8. Perguntas (dor)
   -------------------------------------------------------------------------- */
.questions { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 12px; }
.q {
  background: var(--surface); border: 1px solid var(--rule); border-left: 3px solid var(--rule-strong);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 22px;
  font-size: var(--t-1); font-weight: 300; line-height: 1.4; letter-spacing: -.015em;
  transition: border-left-color .25s var(--ease), transform .25s var(--ease);
}
.q:hover { border-left-color: var(--teal); transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .q:hover { transform: none; } }

.answer {
  margin-top: 30px; padding: clamp(26px, 3.4vw, 40px);
  background: linear-gradient(135deg, var(--teal-soft), var(--blue-soft));
  border: 1px solid var(--rule); border-radius: var(--radius);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 36px); align-items: center;
}
@media (max-width: 720px) { .answer { grid-template-columns: 1fr; } }
.answer img { width: clamp(74px, 9vw, 104px); }
.answer p { font-size: var(--t-2); font-weight: 300; line-height: 1.4; letter-spacing: -.025em; }
.answer p b { font-weight: 700; color: var(--teal-deep); }

/* --------------------------------------------------------------------------
   9. Três pilares
   -------------------------------------------------------------------------- */
.pillars-section { background: var(--deep); color: var(--deep-ink); position: relative; overflow: hidden; }
.pillars-section .section-head h2 { color: var(--deep-ink); }
.pillars-section .section-head h2 b { color: #4FCBDD; }
.pillars-section .section-head p { color: var(--deep-ink-2); }
.pillars-section .eyebrow { color: #4FCBDD; }
.pillars-section .pixels i { background: #4FCBDD; }
.pillars-section .pixels i:nth-child(2) { background: #78B4E0; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--deep-rule);
  border: 1px solid var(--deep-rule); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--deep); padding: clamp(26px, 3vw, 38px); transition: background-color .3s var(--ease); }
.pillar:hover { background: var(--deep-2); }
.pillar .n { font-family: var(--mono); font-size: var(--t--2); letter-spacing: .14em; color: #4FCBDD; }
.pillar h3 { font-size: var(--t-3); font-weight: 300; letter-spacing: -.03em; margin: 14px 0 12px; color: var(--deep-ink); }
.pillar p { color: var(--deep-ink-2); font-size: var(--t--1); }
.pillar .ring { margin-bottom: 20px; }
.pillar .ring svg { width: 46px; height: 46px; }

.manifesto {
  margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid var(--deep-rule); text-align: center;
}
.manifesto p { font-size: var(--t-3); font-weight: 300; letter-spacing: -.03em; line-height: 1.35;
  max-width: 24ch; margin-inline: auto; color: var(--deep-ink); }
.manifesto p b { font-weight: 400; color: #4FCBDD; }
.manifesto cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--mono);
  font-size: var(--t--2); letter-spacing: .14em; text-transform: uppercase; color: var(--deep-ink-2); }

/* --------------------------------------------------------------------------
   10. Módulos (bento)
   -------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.mod {
  grid-column: span 2;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.mod:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rule-strong); }
@media (prefers-reduced-motion: reduce) { .mod:hover { transform: none; } }
.mod--wide { grid-column: span 3; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .mod, .mod--wide { grid-column: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

.mod-icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px;
  border-radius: 13px; background: var(--teal-soft); color: var(--teal-deep); flex: none;
}
.mod:nth-child(even) .mod-icon { background: var(--blue-soft); color: var(--blue); }
.mod-icon svg { width: 23px; height: 23px; }
.mod h3 { font-size: var(--t-1); font-weight: 700; letter-spacing: -.02em; }
.mod .tag { display: block; margin: 7px 0 15px; font-size: var(--t--1); color: var(--teal-deep); font-weight: 600; }
.mod ul { display: grid; gap: 8px; margin-top: auto; }
.mod li { display: flex; gap: 9px; font-size: var(--t--1); color: var(--ink-2); line-height: 1.45; }
.mod li::before {
  content: ""; flex: none; width: 5px; height: 5px; margin-top: 8px;
  border-radius: 1px; background: var(--teal); opacity: .8;
}

/* --------------------------------------------------------------------------
   11. Diferenciais
   -------------------------------------------------------------------------- */
.features-section { background: var(--surface); border-block: 1px solid var(--rule); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px;
  background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.feature { background: var(--surface); padding: 24px 26px; display: flex; gap: 14px; align-items: flex-start; }
.feature svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: 3px; }
.feature b { display: block; font-size: var(--t--1); font-weight: 700; margin-bottom: 4px; }
.feature span { display: block; font-size: var(--t--1); color: var(--ink-3); line-height: 1.45; }

/* --------------------------------------------------------------------------
   12. Planos
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm); position: relative;
}
.plan--featured { border-color: var(--teal); box-shadow: var(--shadow); }
.plan-flag {
  position: absolute; top: -11px; left: clamp(26px, 3vw, 38px);
  background: var(--teal); color: #fff; font-family: var(--mono); font-size: var(--t--2);
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
:root[data-theme="dark"] .plan-flag { color: #04121A; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .plan-flag { color: #04121A; } }
.plan .name { font-family: var(--mono); font-size: var(--t--2); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.plan h3 { font-size: var(--t-3); font-weight: 300; letter-spacing: -.035em; margin: 8px 0 14px; }
.plan h3 b { font-weight: 700; color: var(--teal-deep); }
.plan > p { color: var(--ink-2); font-size: var(--t--1); margin-bottom: 22px; }
.plan ul { display: grid; gap: 11px; padding-top: 22px; border-top: 1px solid var(--rule); margin-bottom: 26px; }
.plan li { display: flex; gap: 11px; font-size: var(--t--1); }
.plan li svg { width: 16px; height: 16px; flex: none; color: var(--teal); margin-top: 4px; }
.plan .btn { width: 100%; }

/* --------------------------------------------------------------------------
   13. Implantação
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.step {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(22px, 2.5vw, 30px); position: relative;
}
.step .n {
  display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px;
  border-radius: 999px; background: var(--teal); color: #fff;
  font-family: var(--mono); font-size: var(--t--1); font-weight: 600;
}
:root[data-theme="dark"] .step .n { color: #04121A; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .step .n { color: #04121A; } }
.step h3 { font-size: var(--t-1); font-weight: 700; margin-bottom: 9px; }
.step p { font-size: var(--t--1); color: var(--ink-2); }

/* --------------------------------------------------------------------------
   14. Sobre
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p + p { margin-top: 16px; }
.about-text p { color: var(--ink-2); }
.about-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm);
}
.about-card h3 { font-size: var(--t--2); font-family: var(--mono); font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.about-card + .about-card { margin-top: 12px; }
.about-card p { font-size: var(--t--1); color: var(--ink-2); }
.values { display: flex; flex-wrap: wrap; gap: 7px; }
.values li {
  font-size: var(--t--1); padding: 6px 13px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--rule); color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   15. Contato
   -------------------------------------------------------------------------- */
.contact-section { background: var(--deep); color: var(--deep-ink); position: relative; overflow: hidden; }
.contact-section .section-head h2 { color: var(--deep-ink); }
.contact-section .section-head h2 b { color: #4FCBDD; }
.contact-section .section-head p { color: var(--deep-ink-2); }
.contact-section .eyebrow { color: #4FCBDD; }
.contact-section .pixels i { background: #4FCBDD; }
.contact-section .pixels i:nth-child(2) { background: #78B4E0; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.channels { display: grid; gap: 10px; }
.channel {
  display: flex; align-items: center; gap: 15px; padding: 17px 19px;
  background: rgba(255,255,255,.045); border: 1px solid var(--deep-rule);
  border-radius: var(--radius-sm); text-decoration: none; color: var(--deep-ink);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.channel:hover { background: rgba(255,255,255,.09); border-color: #4FCBDD; transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .channel:hover { transform: none; } }
.channel svg { width: 21px; height: 21px; flex: none; color: #4FCBDD; }
.channel .k { display: block; font-family: var(--mono); font-size: var(--t--2); letter-spacing: .12em;
  text-transform: uppercase; color: var(--deep-ink-2); }
.channel .v { display: block; font-size: var(--t--1); font-weight: 600; margin-top: 2px; }

/* Formulário */
.form-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--t--1); font-weight: 600; }
.field label .req { color: var(--teal-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--sans); font-size: var(--t--1); color: var(--ink);
  background: var(--ground); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 112px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 22%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field .err { font-size: var(--t--2); color: #C2412A; min-height: 0; }
:root[data-theme="dark"] .field .err { color: #F08A70; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .field .err { color: #F08A70; } }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C2412A; }

.consent { display: flex; gap: 11px; align-items: flex-start; grid-column: 1 / -1; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--teal); padding: 0; }
.consent label { font-size: var(--t--2); font-weight: 400; color: var(--ink-2); line-height: 1.5; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 20px; }
.form-foot .hint { font-size: var(--t--2); color: var(--ink-3); }

.form-msg { grid-column: 1 / -1; padding: 15px 17px; border-radius: var(--radius-sm); font-size: var(--t--1); display: none; }
.form-msg[data-show="true"] { display: block; }
.form-msg--ok { background: color-mix(in srgb, var(--ok) 12%, transparent); border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent); color: var(--ok); }
.form-msg--err { background: color-mix(in srgb, #C2412A 12%, transparent); border: 1px solid color-mix(in srgb, #C2412A 40%, transparent); color: #C2412A; }
:root[data-theme="dark"] .form-msg--err { color: #F08A70; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .form-msg--err { color: #F08A70; } }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   16. Rodapé
   -------------------------------------------------------------------------- */
.site-footer { background: var(--deep-2); color: var(--deep-ink-2); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 52px); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 66px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: var(--t--1); max-width: 34ch; }
.site-footer h4 { font-family: var(--mono); font-size: var(--t--2); font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--deep-ink); margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: var(--deep-ink-2); text-decoration: none; font-size: var(--t--1); transition: color .18s var(--ease); }
.site-footer a:hover { color: #4FCBDD; text-decoration: underline; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--deep-rule); color: var(--deep-ink-2); transition: all .2s var(--ease); }
.socials a:hover { border-color: #4FCBDD; color: #4FCBDD; background: rgba(79,203,221,.1); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center;
  margin-top: clamp(36px, 4vw, 52px); padding-top: 24px; border-top: 1px solid var(--deep-rule);
  font-size: var(--t--2);
}
.footer-bottom .cnpj { margin-left: auto; font-family: var(--mono); }

/* --------------------------------------------------------------------------
   17. WhatsApp flutuante + aviso LGPD
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 19px 13px 15px; border-radius: 999px;
  background: #1EA94F; color: #fff; text-decoration: none; font-weight: 700; font-size: var(--t--1);
  box-shadow: 0 8px 26px -8px rgba(30,169,79,.7);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -10px rgba(30,169,79,.85); color: #fff; }
.wa-float svg { width: 21px; height: 21px; flex: none; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 15px; right: 14px; bottom: 14px; } }
@media (prefers-reduced-motion: reduce) { .wa-float:hover { transform: none; } }

.cookie {
  position: fixed; left: 50%; bottom: 18px; z-index: 95; width: min(660px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding: 17px 20px; background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cookie[hidden] { display: none; }
.cookie p { font-size: var(--t--2); color: var(--ink-2); flex: 1 1 260px; line-height: 1.5; }
.cookie .btn { padding: 10px 20px; }
@media (max-width: 560px) { .cookie { bottom: 84px; } }

/* --------------------------------------------------------------------------
   18. Páginas de conteúdo (legal / 404)
   -------------------------------------------------------------------------- */
.page-head { padding-block: clamp(48px, 6vw, 84px) clamp(28px, 3vw, 40px); border-bottom: 1px solid var(--rule); }
.page-head h1 { font-size: var(--t-4); font-weight: 300; letter-spacing: -.035em; }
.page-head h1 b { font-weight: 700; color: var(--teal-deep); }
.page-head p { margin-top: 14px; color: var(--ink-2); max-width: 62ch; }

.prose { max-width: 72ch; padding-block: clamp(36px, 5vw, 60px); }
.prose h2 { font-size: var(--t-2); font-weight: 700; margin: 42px 0 14px; letter-spacing: -.025em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--t-1); font-weight: 700; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--ink-2); }
.prose p + p { margin-top: 14px; }
.prose ul { display: grid; gap: 9px; margin: 14px 0; }
.prose ul li { display: flex; gap: 11px; }
.prose ul li::before { content: ""; flex: none; width: 5px; height: 5px; margin-top: 10px; border-radius: 1px; background: var(--teal); }
.prose .updated { font-family: var(--mono); font-size: var(--t--2); color: var(--ink-3); letter-spacing: .06em; }

.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.notfound .code { font-family: var(--mono); font-size: clamp(64px, 14vw, 132px); font-weight: 600;
  line-height: 1; letter-spacing: -.04em; color: var(--teal); opacity: .3; }
.notfound h1 { font-size: var(--t-4); font-weight: 300; letter-spacing: -.035em; margin: 14px 0 16px; }
.notfound p { color: var(--ink-2); max-width: 46ch; margin: 0 auto 30px; }
.notfound .btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --------------------------------------------------------------------------
   19. Revelação ao rolar
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Impressão */
@media print {
  .site-header, .wa-float, .cookie, .hero-bg, .site-footer .socials { display: none !important; }
  body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1; transform: none; }
}
