/* Zinom — folha de estilo única (site.css)
   Paleta, tipografia, diagrama e grids fiéis ao protótipo aprovado
   (/tmp/zinom-prototype-20260908.html, 2026-09-08). Fontes self-host,
   sem dependência nova. Ver docs/design-redesign-20260908.md para o
   registro de decisões e desvios. */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --paper: #f8f9f5;
  --ink: #202e29;
  --muted: #626d66;
  --green: #254d3e;
  --line: #dce2d8;
  --lime: #e1efb6;
  --white: #fff;
  --card: #fffefb;
  --orange: #ba5838;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: Manrope, 'DM Sans', system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; }
p { line-height: 1.65; color: var(--muted); }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--ink); }

.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;
}
.skip {
  position: absolute; top: -90px; left: 12px; background: var(--white);
  padding: 14px 18px; z-index: 20; border-radius: 6px; font-size: 13px; font-weight: 600;
}
.skip:focus { top: 12px; }

.wrap { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }

/* ---------- Ícones ---------- */
.ic { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; }
.ic svg { width: 100%; height: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font: 700 22px var(--display); letter-spacing: -0.6px; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.brand .ic { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.lnk { color: var(--ink); padding: 6px 0; border-bottom: 1px solid transparent; }
.lnk:hover { border-color: var(--line); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 7px;
}
.nav-toggle-bar { display: block; width: 16px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .2s var(--ease, ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; }
.nav-mobile.open {
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  padding: 14px var(--pad, 24px) 22px;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
@media (max-width: 720px) {
  .nav-mobile.open {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 29;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
}
.nav-mobile .lnk { padding: 12px 4px; border-bottom: 1px solid var(--line); }
.nav-mobile .btn { margin-top: 10px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--green); border: 1px solid var(--green); color: var(--white);
  font-size: 13px; font-weight: 600; border-radius: 8px; padding: 13px 20px; min-height: 44px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { background: #1d3f34; border-color: #1d3f34; }
.btn.light, .btn-ghost {
  background: transparent; border-color: var(--line); color: var(--ink);
}
.btn.light:hover, .btn-ghost:hover { border-color: var(--line-forte, #8c8579); background: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 22px; font-size: 14px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.arrow { font-size: 18px; line-height: 1; }
.text-link { font-size: 13px; border-bottom: 1px solid #a5b0a3; padding-bottom: 2px; display: inline-block; }
.eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.eyebrow.on-dark { color: #ced9c9; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 8px; }
.hero-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 4.5vw, 60px); line-height: 1.09; letter-spacing: -2.6px; margin-top: 22px; }
.hero h1 em { font-style: normal; color: #5f7365; }
.hero .intro { font-size: 16px; max-width: 430px; margin: 22px 0 26px; }
.actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.small-note { font-size: 11px; margin-top: 14px; color: var(--muted); }

/* ---------- Diagrama (map) ---------- */
.map { position: relative; height: 380px; border-radius: 50%; background: radial-gradient(ellipse at center, #e8eddf 0%, transparent 66%); isolation: isolate; }
.map > svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit { fill: none; stroke: #c5d0bb; stroke-width: 1; stroke-dasharray: 2 5; }
.wire { fill: none; stroke: #bbcbb2; stroke-width: 1.4; }
.flow { stroke: var(--orange); stroke-dasharray: 3 270; animation: travel 8s linear infinite; }
@keyframes travel { to { stroke-dashoffset: -546; } }
.map-node {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid #dce3d5; padding: 9px 12px; border-radius: 8px;
  font-size: 11px; font-weight: 500; box-shadow: 0 4px 10px rgba(40, 55, 35, .04); white-space: nowrap;
}
.map-node .ic { width: 18px; height: 18px; }
.n1 { left: 0; top: 40px; } .n2 { left: -12px; top: 158px; } .n3 { left: 16px; top: 278px; }
.n4 { right: 6px; top: 40px; } .n5 { right: -8px; top: 158px; } .n6 { right: 12px; top: 278px; }
.hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 108px; height: 108px; border-radius: 27px; background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 11px var(--paper), 0 0 0 12px #d6dece, 0 12px 40px rgba(37, 77, 62, .1);
}
.hub .ic { width: 46px; height: 46px; }
.map-label { position: absolute; bottom: 6px; width: 100%; text-align: center; font-size: 9px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--muted); }
.map .saved { position: absolute; top: 90px; left: 44%; background: var(--lime); border: 1px solid #c4d797; font-size: 9px; font-weight: 600; border-radius: 20px; padding: 6px 10px; z-index: 2; display: flex; align-items: center; gap: 5px; }

.brands { border-block: 1px solid var(--line); margin-top: 60px; padding: 22px 0; display: flex; align-items: center; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.brands > p { max-width: 190px; font-size: 11px; line-height: 1.5; color: var(--muted); }
.brand-chip { font: 600 15px var(--display); letter-spacing: -.2px; display: flex; align-items: center; gap: 8px; }
.brand-chip .ic { width: 18px; height: 18px; }
.brands .more { font-size: 11px; color: var(--muted); }

/* ---------- Seções genéricas ---------- */
.section { padding: 84px 0; scroll-margin-top: 96px; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.16; letter-spacing: -1.4px; max-width: 540px; margin-top: 14px; }
.section-heading > p { max-width: 330px; font-size: 14px; }

/* ---------- Grade demo + cópia (memória, contatos, gravador) ---------- */
.demo-grid { display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--card); }
.demo-panel { padding: 34px 38px; background: #edf1e7; display: flex; flex-direction: column; gap: 16px; }
.demo-label { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: #596950; margin-bottom: 2px; display: flex; justify-content: space-between; gap: 10px; }
.chat { background: var(--card); border: 1px solid #dce2d6; border-radius: 9px; padding: 17px 20px; }
.chat .who { font-size: 10px; font-weight: 700; display: flex; align-items: center; gap: 7px; justify-content: space-between; margin-bottom: 10px; }
.chat .who .id { display: flex; align-items: center; gap: 7px; }
.chat .who small { font-size: 9px; font-weight: 400; color: var(--muted); }
.chat p { font-size: 13px; line-height: 1.55; color: var(--ink); }
.chat p + p { margin-top: 8px; }
.memory-strip { display: flex; gap: 8px; align-items: center; padding-left: 18px; font-size: 10px; font-weight: 600; color: #416044; }
.memory-strip .ic { background: #d7e5bc; border-radius: 50%; width: 17px; height: 17px; padding: 3px; }
.source { font-size: 9px; border-top: 1px solid var(--line); margin-top: 13px; padding-top: 10px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.demo-copy { padding: 46px 46px; display: flex; flex-direction: column; justify-content: center; }
.demo-copy h3 { font-size: 25px; letter-spacing: -.8px; line-height: 1.22; margin-bottom: 16px; }
.demo-copy > p { font-size: 14px; }
.benefits { margin: 20px 0 0; }
.benefits li { font-size: 12px; padding: 11px 0; border-top: 1px solid var(--line); display: flex; gap: 9px; }
.benefits li::before { content: '↗'; color: #738969; }
.demo-copy .text-link { align-self: flex-start; margin-top: 18px; }

/* ---------- Integrações / listas de fontes ---------- */
.integrations { border-top: 1px solid var(--line); padding-top: 78px; }
.integration-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 30px; }
.integration { display: flex; gap: 15px; padding: 25px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.app-icon {
  flex-shrink: 0; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px;
  display: grid; place-items: center; background: var(--card); padding: 8px;
}
.app-icon .ic { width: 100%; height: 100%; }
.integration h3 { font-size: 15px; letter-spacing: -.2px; margin: 1px 0 7px; }
.integration p { font-size: 12px; line-height: 1.6; }
.integrations-note { font-size: 11px; margin-top: 18px; }
.status-pill { font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.status-pill.on { background: var(--lime); color: #3a5a2e; }
.status-pill.off { background: var(--line); color: #454f43; }
.badge-restrict { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; background: #f7e6e0; color: #8a3f24; border-radius: 20px; padding: 4px 9px; margin-left: 8px; vertical-align: middle; }
.integration.restricted .app-icon { opacity: .7; }
.integration-restrict-note { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ---------- Seção verde (ação / demo-tabs) ---------- */
.green-section { background: var(--green); color: #f5f6ee; }
.green-section :focus-visible { outline-color: var(--lime); }
.green-section .eyebrow { color: #ced9c9; }
.green-section h2 { font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -1.4px; line-height: 1.18; max-width: 460px; margin: 18px 0; }
.green-section p { color: #ccd7cc; font-size: 14px; max-width: 360px; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.demo-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.demo-tabs button {
  border: 1px solid #6b8877; background: none; color: #e2e9db;
  border-radius: 20px; padding: 9px 14px; font-size: 11px; font-weight: 500;
}
.demo-tabs button[aria-selected="true"] { background: var(--lime); border-color: var(--lime); color: var(--green); font-weight: 600; }
.action-window { background: var(--card); border-radius: 11px; padding: 24px; color: var(--ink); min-height: 210px; }
.action-window .prompt { padding: 14px; background: #f0f3e9; border-radius: 7px; font-size: 12px; margin: 14px 0; }
.action-window .answer { font-size: 12px; line-height: 1.6; }
.action-window .answer strong { font-weight: 700; }
.action-window .status { font-size: 10px; margin-top: 14px; color: var(--muted); }
.demo-footnote { font-size: 10px !important; margin-top: 12px; color: #b8c5b4 !important; }

/* ---------- Trust row / cartões numerados ---------- */
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 34px; }
.trust-card { border-top: 1px solid var(--line); padding-top: 20px; }
.trust-card .num { font-size: 10px; color: var(--muted); font-weight: 600; }
.trust-card h3 { font-size: 18px; letter-spacing: -.3px; margin: 20px 0 11px; }
.trust-card p { font-size: 13px; }
.badge-soon { font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; background: var(--lime); color: #3a5a2e; border-radius: 20px; padding: 4px 9px; margin-left: 8px; vertical-align: middle; display: inline-block; }

/* ---------- Estatísticas (funil) ---------- */
.funil { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.fun-step { border-top: 1px solid var(--line); padding-top: 18px; }
.fun-step .n { display: block; font: 700 34px var(--display); letter-spacing: -1.2px; color: var(--green); margin-bottom: 10px; }
.fun-step b { display: block; font-size: 14px; margin-bottom: 6px; }
.fun-step p { font-size: 12px; }

/* ---------- Cartas de curadoria ---------- */
.carta { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 20px 22px; max-width: 420px; }
.carta-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.carta-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: var(--white);
  font: 700 12px var(--display); display: grid; place-items: center; flex-shrink: 0;
}
.carta-lbl { font-size: 10px; font-weight: 600; letter-spacing: .3px; color: var(--muted); text-transform: uppercase; }
.carta-txt { font-size: 14px; color: var(--ink); line-height: 1.55; }
.carta-actions { display: flex; gap: 10px; margin-top: 16px; }
.carta-act {
  flex: 1; text-align: center; font-size: 12px; font-weight: 600; padding: 10px 12px;
  border-radius: 7px; border: 1px solid var(--line); color: var(--muted);
}
.carta-act.keep { background: var(--green); border-color: var(--green); color: var(--white); }
.carta-meta { font-size: 10px; color: var(--muted); margin-top: 10px; }

/* ---------- Transcrição (gravador) ---------- */
.transcript { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 22px 24px; }
.tr-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 600; margin-bottom: 14px; }
.tr-head .id { display: flex; align-items: center; gap: 8px; }
.tr-time { font-size: 10px; font-weight: 400; color: var(--muted); }
.tr-status { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: #416044; background: #edf3e2; border-radius: 8px; padding: 9px 12px; margin-bottom: 14px; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.tline { display: flex; gap: 10px; padding: 8px 0; font-size: 13px; }
.tline .who { flex-shrink: 0; width: 62px; font-weight: 700; font-size: 11px; color: var(--muted); }
.tline .who.you { color: var(--green); }
.tline .say { color: var(--ink); line-height: 1.5; }

/* ---------- Preços ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.plan {
  border: 1px solid var(--line); border-radius: 12px; padding: 26px 22px; background: var(--card);
  display: flex; flex-direction: column; position: relative;
}
.plan.featured { border-color: var(--green); box-shadow: 0 8px 24px rgba(37, 77, 62, .08); }
.plan-badge {
  position: absolute; top: -12px; left: 22px; background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; padding: 5px 10px; border-radius: 20px;
}
.pname { font: 700 16px var(--display); letter-spacing: -.3px; }
.pdesc { font-size: 12px; margin: 6px 0 16px; min-height: 32px; }
.price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 18px; }
.price .cur { font-size: 14px; color: var(--muted); }
.price .amt { font: 700 32px var(--display); letter-spacing: -1px; }
.price .per { font-size: 12px; color: var(--muted); }
.pfeats { margin: 0 0 20px; flex: 1; }
.pfeats li { font-size: 12.5px; padding: 8px 0; border-top: 1px solid var(--line); color: var(--ink); }
.pfeats li.off { color: var(--muted); text-decoration: line-through; }
.plan-note { font-size: 12px; margin-top: 22px; }
.addon-head { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 40px; }
.addon-kicker { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.addon-lede { font-size: 14px; max-width: 620px; }
.billing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; border-top: 1px solid var(--line); padding-top: 60px; }
.faq h2 { font-size: 30px; letter-spacing: -1px; margin: 16px 0; }
.faq > div > p { font-size: 13px; max-width: 260px; }
.faq details { border-bottom: 1px solid var(--line); padding: 19px 0; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 14px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 16px; color: var(--muted); }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { max-width: none; margin-top: 11px; font-size: 12.5px; }

/* ---------- CTA final ---------- */
.closing {
  border-radius: 12px; background: #e8eedc; padding: 52px; display: flex; justify-content: space-between;
  align-items: center; gap: 36px; margin-bottom: 50px; flex-wrap: wrap;
}
.closing h2 { font-size: 32px; letter-spacing: -1.2px; line-height: 1.2; }
.closing p { font-size: 13px; margin-top: 12px; }

/* ---------- Acesso (formulário funcional) ---------- */
.access {
  border: 1px solid var(--line); border-radius: 14px; background: var(--card);
  padding: 40px; max-width: 480px; margin-inline: auto;
}
.access-head h3 { font-size: 20px; letter-spacing: -.4px; margin-bottom: 8px; }
.access-head p { font-size: 13px; }
.access-note { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 10px; display: none; }
.access-note.show { display: block; }
.tabs { display: flex; gap: 6px; margin: 22px 0 20px; border: 1px solid var(--line); border-radius: 9px; padding: 4px; }
.tab { flex: 1; text-align: center; padding: 10px 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); border-radius: 6px; }
.tab.active { background: var(--green); color: var(--white); }
.pane { display: none; }
.pane.active { display: block; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 7px; }
.field input {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font-size: 14px; font-family: var(--sans); color: var(--ink); background: var(--paper);
}
.field input:focus-visible { outline-offset: 1px; }
.field-err { font-size: 12px; color: var(--orange); margin-top: 10px; display: none; }
.field-err.show { display: block; }
.hint { font-size: 11px; color: var(--muted); margin-top: 12px; }
.ok-msg { display: none; text-align: center; padding: 10px 0 4px; }
.ok-msg.show { display: block; }
.ok-msg .check {
  width: 44px; height: 44px; border-radius: 50%; background: var(--lime); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; padding: 11px;
}
.ok-msg h4 { font-size: 16px; margin-bottom: 8px; }
.ok-msg p { font-size: 13px; }

/* ---------- Cabeçalho de subpágina ---------- */
.page-hero { padding: 52px 0 16px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1.5px; line-height: 1.14; margin-top: 14px; max-width: 720px; }
.page-hero .intro { font-size: 15px; max-width: 540px; margin-top: 16px; }

/* ---------- Linha do tempo / contador (memória) ---------- */
.timeline { margin-top: 14px; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; border-top: 1px solid var(--line); padding: 10px 0; }
.tl-item .tl-title { font-weight: 600; color: var(--ink); }
.tl-item .tl-when { color: var(--muted); font-size: 11px; white-space: nowrap; }
.counter-card { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 22px 24px; }
.counter-card .cc-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.counter-card .cc-code { font-family: var(--mono); font-size: 12px; background: #f0f3e9; border-radius: 6px; padding: 8px 10px; margin-bottom: 12px; }
.counter-card .cc-num { font: 700 30px var(--display); letter-spacing: -1px; color: var(--green); }
.counter-card .cc-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ---------- Diagrama de fluxo (linear, reusado em subpáginas) ---------- */
.flow-diagram { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); padding: 32px 28px; }
.flow-col { display: flex; flex-direction: column; gap: 9px; }
.flow-col .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.flow-chip { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; }
.flow-chip small { display: block; font-weight: 400; color: var(--muted); font-size: 10px; }
.flow-hub { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.flow-hub .hub-mark { width: 52px; height: 52px; border-radius: 14px; background: var(--green); display: flex; align-items: center; justify-content: center; }
.flow-hub .hub-mark .ic { width: 26px; height: 26px; }
.flow-arrow { font-size: 9px; color: var(--muted); white-space: nowrap; text-align: center; }

/* ---------- Perfil (contatos) ---------- */
.profile-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.profile-id { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.profile-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font: 700 17px var(--display); flex-shrink: 0; }
.profile-name { font-size: 15px; font-weight: 700; display: block; }
.profile-role { font-size: 12px; color: var(--muted); }
.profile-meta { font-size: 11px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 13px; margin-top: 13px; }
.profile-meta .lbl { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }

/* ---------- Opt-in (segurança) ---------- */
.optin-list { display: flex; flex-direction: column; margin-top: 22px; }
.optin-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.optin-row:last-child { border-bottom: 1px solid var(--line); }
.optin-row .name { font-size: 13.5px; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.foot-brand p { font-size: 12px; max-width: 240px; margin-top: 14px; }
.foot-h { font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.foot-bot small { font-size: 11px; color: var(--muted); }
.made { font-size: 11px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow, .rec-dot { animation: none; }
}

@media (min-width: 1500px) { .hero h1 { font-size: 64px; } }

@media (max-width: 1080px) {
  .wrap { width: calc(100% - 56px); }
  .nav-links { gap: 18px; }
  .hero-top { gap: 30px; }
  .hero h1 { font-size: 46px; letter-spacing: -2.2px; }
  .map { height: 340px; }
  .map-node { font-size: 10px; padding: 8px; }
  .n2 { left: 0; } .n5 { right: 0; }
  .hub { width: 90px; height: 90px; }
  .hub .ic { width: 38px; height: 38px; }
  .demo-copy, .demo-panel { padding: 30px; }
  .action-grid { gap: 40px; }
  .faq { gap: 50px; }
  .integration-list { gap: 0 20px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .billing-grid, .funil { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .wrap { width: calc(100% - 40px); }
  .nav-inner { height: 72px; }
  .brand { font-size: 19px; }
  .nav-links, .nav-cta .btn.light { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 36px; }
  .hero-top { display: block; }
  .hero h1 { font-size: 40px; letter-spacing: -2px; margin-top: 20px; }
  .hero .intro { font-size: 14px; margin-top: 18px; max-width: 340px; }
  .actions { gap: 18px; }
  .btn { padding: 13px 17px; font-size: 12.5px; }
  .map { margin: 26px 5px 0; height: 300px; }
  .map-node { font-size: 9px; gap: 6px; padding: 7px; }
  .n1, .n4 { top: 32px; } .n2, .n5 { top: 130px; } .n3, .n6 { top: 232px; }
  .n3 { left: 0; } .n6 { right: 0; }
  .hub { width: 82px; height: 82px; border-radius: 22px; }
  .hub .ic { width: 34px; height: 34px; }
  .map .saved { top: 72px; left: 38%; font-size: 8px; }
  .brands { margin-top: 26px; padding: 20px 0; gap: 16px 20px; justify-content: flex-start; }
  .brands > p { width: 100%; max-width: none; font-size: 10px; }
  .section { padding: 52px 0; }
  .section-heading { display: block; margin-bottom: 22px; }
  .section-heading > p { margin-top: 14px; }
  .demo-grid { display: flex; flex-direction: column; }
  .demo-panel, .demo-copy { padding: 22px 20px; }
  .demo-copy h3 { font-size: 22px; }
  .integration-list { grid-template-columns: 1fr; }
  .integrations { padding-top: 48px; }
  .action-grid { grid-template-columns: 1fr; gap: 26px; }
  .action-window { padding: 20px; min-height: auto; }
  .trust-row { grid-template-columns: 1fr; gap: 22px; }
  .funil, .billing-grid { grid-template-columns: 1fr; gap: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; }
  .closing { padding: 30px 24px; display: block; margin-bottom: 32px; }
  .closing .btn { margin-top: 22px; }
  .access { padding: 26px 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bot { padding-top: 20px; }
  .page-hero { padding: 36px 0 8px; }
  .flow-diagram { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .flow-hub { order: -1; }
  .flow-arrow { display: none; }
  .profile-card { padding: 20px; }
}
