/* Atendy CRM — site de marketing (landing, guias, blog).
   Sistema visual: verde Atendy #02E7A6 = a marca e o LED das ações de consequência
   (agendar/converter); um verde mais fundo ancora links e kickers; teal-navy #0A2433
   ancora o chrome (header/footer). Tema claro por padrão, plano por padrão (sombra =
   estado), sentence case sempre. */

:root {
  --brand: #029e73;
  --brand-700: #02855f;
  --brand-soft: rgba(2, 231, 166, 0.10);
  --brand-line: rgba(2, 231, 166, 0.24);
  --led: #02e7a6;
  --led-700: #02c28c;
  --teal-navy: #0a2433;
  --teal-navy-2: #0e2f42;
  --brand-300: #5fefc8;

  /* texto sobre superfícies escuras (banda de controle / resultados) */
  --ink-on-dark: #dce6ec;
  --muted-on-dark: #9fb3bf;
  --faint-on-dark: #7f97a6;

  --ink: #24292e;
  --muted: #6a737d;
  --surface: #ffffff;
  --surface-alt: #f6f8fa;
  --line: #eef2f6;
  --line-strong: #e1e8ee;

  /* escala de saúde da carteira — vocabulário fixo, nunca só cor (sempre rótulo/ícone) */
  --t-frozen: #1e5fa8;
  --t-cold: #2ba3d6;
  --t-ideal: #19b89e;
  --t-warn: #f2c744;
  --t-warm: #f2913d;
  --t-hot: #e2574c;

  --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --maxw: 1120px;
  --maxw-prose: 720px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-pop: 0 12px 40px rgba(10, 36, 51, 0.12), 0 1px 2px rgba(10, 36, 51, 0.06);
  --shadow-soft: 0 1px 3px rgba(10, 36, 51, 0.06), 0 8px 24px rgba(10, 36, 51, 0.05);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  letter-spacing: -0.1px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.5px; font-weight: 600; margin: 0 0 0.4em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.075rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin: 0.3em 0; }
strong { font-weight: 600; }
small { font-size: 0.8rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--surface-alt); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--brand-700);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--brand); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 26px; height: 26px; }
.nav { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.nav a { color: var(--ink); font-size: 0.92rem; font-weight: 500; }
.nav a:hover { color: var(--brand-700); text-decoration: none; }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-cta .link-quiet { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-toggle { display: none; }

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  padding: 11px 20px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
/* lima = ação de consequência (agendar demo). Texto teal-navy para contraste AA. */
.btn--led { background: var(--led); color: var(--teal-navy); }
.btn--led:hover { background: var(--led-700); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(101, 163, 13, 0.28); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(8, 145, 199, 0.26); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-700); }
.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn--on-dark { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.btn--on-dark:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 64px 0 24px; }
.hero h1 { max-width: 16ch; }
.hero .lede { font-size: 1.22rem; margin-top: 6px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-sub { margin-top: 18px; color: var(--muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hero-sub span { display: inline-flex; align-items: center; gap: 7px; }
.hero-sub span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--led); }
.hero-figure { margin-top: 40px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-pop); background: var(--surface-alt); }
.hero-figure img { width: 100%; }

/* ── Faixa de capacidades / stats ───────────────────────── */
.capband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.capband > div { background: var(--surface); padding: 22px 20px; }
.capband .num { font-size: 1.75rem; font-weight: 600; color: var(--teal-navy); font-variant-numeric: tabular-nums; }
.capband .cap { color: var(--muted); font-size: 0.9rem; }

/* ── Grids de cards ─────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--brand-line); box-shadow: var(--shadow-soft); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.95rem; }
.card .ico {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-700); margin-bottom: 16px;
}
.card .ico svg { width: 21px; height: 21px; }
.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; }
.card .more { color: var(--brand-700); font-weight: 600; font-size: 0.9rem; margin-top: 14px; display: inline-block; }

/* ── A cunha de saúde da carteira (bloco diferencial) ─────────── */
.wedge { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wedge .card { border-left: 3px solid var(--brand); }
.temp-scale { display: flex; gap: 6px; margin: 18px 0 0; flex-wrap: wrap; }
.temp-chip { font-family: var(--font-mono); font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.temp-chip::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: rgba(255,255,255,.85); }

/* ── Como funciona (passos) ─────────────────────────────── */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.step .n { counter-increment: step; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-mono); }
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); margin-bottom: 0; }

/* ── Banda escura (sala de controle) ────────────────────── */
.band-dark { background: var(--teal-navy); color: #e8eef2; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lede { color: var(--muted-on-dark); }
.band-dark .eyebrow { color: var(--brand-300); }
.band-dark .eyebrow::before { background: var(--brand-300); }
.band-dark .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.band-dark .stat .num { font-size: 2.4rem; font-weight: 600; color: var(--led); }
.band-dark .stat .cap { color: var(--muted-on-dark); font-size: 0.95rem; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-weight: 400; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 0; color: var(--muted); }

/* ── CTA final ──────────────────────────────────────────── */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 18ch; margin-inline: auto; }
.cta-final .hero-actions { justify-content: center; }

/* ── Conteúdo de artigo (guias/blog) ────────────────────── */
.article { max-width: var(--maxw-prose); margin: 0 auto; padding: 48px 24px 64px; }
.article-header { max-width: var(--maxw-prose); margin: 0 auto; padding: 40px 24px 0; }
.article-header h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.article-meta { color: var(--muted); font-size: 0.88rem; display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 12px; }
.article-meta time { font-family: var(--font-mono); }
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 2em; padding-top: 0.3em; }
.prose h3 { margin-top: 1.6em; }
.prose ul li::marker { color: var(--brand); }
.prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--brand); color: var(--ink); font-size: 1.1rem; }
.prose figure { margin: 1.8em 0; }
.prose figure img { border-radius: var(--radius); border: 1px solid var(--line-strong); box-shadow: var(--shadow-soft); }
.prose figcaption { color: var(--muted); font-size: 0.85rem; margin-top: 8px; text-align: center; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--surface-alt); font-weight: 600; }
.prose .keytake { background: var(--brand-soft); border: 1px solid var(--brand-line); border-radius: var(--radius); padding: 20px 24px; margin: 1.8em 0; }
.prose .keytake strong { color: var(--brand-700); }
.prose code { font-family: var(--font-mono); font-size: 0.88em; background: var(--surface-alt); padding: 2px 6px; border-radius: 5px; }

.breadcrumb { font-size: 0.84rem; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-700); }

.toc { background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 0 0 2em; }
.toc strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); font-family: var(--font-mono); font-weight: 500; }
.toc ol { margin: 12px 0 0; }
.toc a { color: var(--ink); }

.tag { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.4px; text-transform: uppercase; color: var(--brand-700); background: var(--brand-soft); padding: 4px 10px; border-radius: 999px; }

.author { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.author .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-navy); color: #fff; display: grid; place-items: center; font-weight: 600; }
.author .who { font-size: 0.9rem; }
.author .who strong { display: block; }
.author .who span { color: var(--muted); }

/* listas de posts/guias */
.post-list { display: grid; gap: 18px; }
.post-item { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .15s ease, box-shadow .15s ease; }
.post-item:hover { border-color: var(--brand-line); box-shadow: var(--shadow-soft); }
.post-item h3 { margin: 6px 0 4px; font-size: 1.2rem; }
.post-item a.cover-link { color: inherit; }
.post-item a.cover-link:hover { text-decoration: none; }
.post-item p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.post-item .meta { color: var(--muted); font-size: 0.8rem; font-family: var(--font-mono); }

.related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.related h2 { font-size: 1.3rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--teal-navy); color: #b9c8d2; padding: 56px 0 32px; }
.site-footer a { color: #cdd9e1; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-grid h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.6px; font-family: var(--font-mono); font-weight: 500; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 8px 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 1.1rem; }
.footer-brand img { width: 26px; height: 26px; }
.footer-note { color: #7f94a1; font-size: 0.85rem; margin-top: 14px; max-width: 32ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #7f94a1; font-size: 0.84rem; }

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .grid--3, .band-dark .stat-row, .capband { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wedge { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 52px 0; }
  /* No mobile, header fica só com marca + hambúrguer; o CTA vive no hero e no menu. */
  .nav, .header-cta { display: none; }
  .nav.open { display: flex; position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 16px; }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 8px; background: transparent; cursor: pointer; }
  .grid--3, .grid--2, .capband, .band-dark .stat-row, .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .hero-figure { margin-top: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Landing v2 — "A Sala de Controle" (bolder). Mesma marca, mais convicção:
   linha-instrumento, banda de saúde da carteira com gauge, tour com screenshots.
   ═══════════════════════════════════════════════════════════════════════ */

/* Kicker — voz de instrumento, usado com parcimônia (não em toda seção). */
.kicker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-700); display: inline-flex; align-items: center; gap: 9px; }
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--brand); }
.band-control .kicker, .band-dark .kicker { color: var(--brand-300); }
.band-control .kicker::before, .band-dark .kicker::before { background: var(--brand-300); }

/* HERO v2 */
.hero2 { position: relative; overflow: hidden; padding: clamp(36px, 5.5vw, 80px) 0 clamp(28px, 4vw, 52px); }
.hero2 .wrap { position: relative; z-index: 1; }
.hero2-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero2 h1 { font-size: clamp(2.3rem, 5vw, 3.55rem); line-height: 1.06; letter-spacing: -0.035em; text-wrap: balance; margin: 16px 0 0; max-width: 15ch; }
.hero2 .lede { font-size: 1.16rem; max-width: 46ch; margin-top: 18px; }
.routeline { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.55; }
.routeline path { fill: none; stroke: var(--brand); stroke-width: 1.5; stroke-linecap: round; }
.routeline .dash { stroke-dasharray: 5 11; opacity: 0.45; }
.routeline circle { fill: var(--brand); }
.routeline .pin { fill: var(--led); }

.specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.spec { font-family: var(--font-mono); font-size: 0.74rem; color: var(--teal-navy); background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 13px; display: inline-flex; align-items: center; gap: 7px; }
.spec::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--brand); }

/* Device frame para screenshots */
.device { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-pop); background: var(--teal-navy); }
.device-bar { height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 14px; overflow: hidden; }
.device-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); flex: none; }
.device-bar span { margin-left: 10px; min-width: 0; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint-on-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.device img { display: block; width: 100%; }
.device-wrap { position: relative; }
.chip-float { position: absolute; font-family: var(--font-mono); font-size: 0.72rem; color: #fff; padding: 7px 12px; border-radius: 9px; box-shadow: 0 10px 30px rgba(10, 36, 51, 0.3); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; }

/* Banda de controle (saúde da carteira) — drench teal-navy */
.band-control { background: var(--teal-navy); color: var(--ink-on-dark); }
.band-control h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.02em; text-wrap: balance; }
.band-control .lede { color: var(--muted-on-dark); }
.control-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.gauge { border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 22px; background: rgba(255, 255, 255, 0.03); }
.gauge-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.gauge-head strong { color: #fff; font-size: 1rem; }
.gauge-head em { font-family: var(--font-mono); font-style: normal; font-size: 0.72rem; color: var(--faint-on-dark); }
.gauge-bar { height: 14px; border-radius: 8px; background: linear-gradient(90deg, var(--t-frozen), var(--t-cold), var(--t-ideal), var(--t-warn), var(--t-warm), var(--t-hot)); position: relative; }
.gauge-mark { position: absolute; top: -6px; bottom: -6px; width: 2px; background: #fff; border-radius: 2px; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18); }
.gauge-scale { display: flex; justify-content: space-between; margin-top: 9px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--faint-on-dark); }
.gauge-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.gauge-list li { display: flex; align-items: center; gap: 11px; font-size: 0.88rem; color: var(--ink-on-dark); }
.gauge-list .sw { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.constraints { margin-top: 4px; }
.constraint { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.constraint:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.constraint .lbl { font-family: var(--font-mono); font-size: 0.72rem; color: var(--brand-300); padding-top: 3px; }
.constraint h3 { color: #fff; font-size: 1.02rem; margin: 0 0 4px; }
.constraint p { color: var(--muted-on-dark); margin: 0; font-size: 0.92rem; }

/* Tour — linhas alternadas screenshot + copy */
.tour { display: grid; gap: clamp(44px, 6vw, 84px); }
.tour-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.tour-row:nth-child(even) .tour-media { order: -1; }
.tour-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-700); }
.tour-copy h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.02em; margin: 10px 0 10px; }
.tour-copy p { color: var(--muted); font-size: 1.02rem; max-width: 48ch; }
.mini-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.mini-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.mini-list li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--led-700); margin-top: 7px; flex: none; }

/* Capacidades secundárias — compacto, não hero-cards */
.caps2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.caps2 > div { background: var(--surface); padding: 24px; }
.caps2 .ico-sm { color: var(--brand-700); display: block; margin-bottom: 12px; }
.caps2 .ico-sm svg { width: 20px; height: 20px; }
.caps2 h4 { font-size: 1rem; margin: 0 0 6px; }
.caps2 p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Comparativo */
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--surface-alt); font-weight: 600; }
.compare thead th:last-child { color: var(--brand-700); }
.compare tbody td:first-child { color: var(--ink); font-weight: 500; }
.compare .no { color: var(--muted); }
.compare .yes { color: var(--led-700); font-weight: 600; }
.compare-wrap { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow-x: auto; }
.compare th, .compare td { white-space: nowrap; }
@media (max-width: 420px) { .compare th, .compare td { padding: 12px 13px; white-space: normal; } }

/* Resultados — sem hero-metric */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: 36px; text-align: left; }
.outcome { border-top: 2px solid var(--led); padding-top: 16px; }
.outcome h3 { color: #fff; font-size: 1.1rem; margin: 0 0 6px; }
.outcome p { color: var(--muted-on-dark); margin: 0; font-size: 0.92rem; }

/* Motion — entrada única do hero, só quando motion é permitido */
@media (prefers-reduced-motion: no-preference) {
  .routeline .draw { stroke-dasharray: 1500; stroke-dashoffset: 1500; animation: rx-draw 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards; }
  .reveal { opacity: 0; transform: translateY(14px); animation: rx-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .reveal.d1 { animation-delay: 0.04s; }
  .reveal.d2 { animation-delay: 0.12s; }
  .reveal.d3 { animation-delay: 0.2s; }
  .reveal.d4 { animation-delay: 0.28s; }
}
@keyframes rx-draw { to { stroke-dashoffset: 0; } }
@keyframes rx-rise { to { opacity: 1; transform: none; } }

@media (max-width: 920px) {
  .hero2-grid, .control-grid, .tour-row, .caps2, .outcomes { grid-template-columns: 1fr; }
  .hero2 h1 { max-width: none; }
  .tour-row:nth-child(even) .tour-media { order: 0; }
  .caps2 > div { border-bottom: 1px solid var(--line); }
  .constraint { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Contato: WhatsApp flutuante + formulário ───────────────────────────── */
:root { --danger: #c0392b; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 720px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; text-align: left; }
.contact-aside .lede { max-width: 42ch; }
.contact-direct { margin-top: 24px; }
.contact-direct .btn svg { width: 19px; height: 19px; fill: currentColor; }
.contact-mail { color: var(--muted); font-size: 0.92rem; margin: 14px 0 0; }
.contact-mail strong { color: var(--ink); font-weight: 500; }

.contact-form { display: grid; gap: 14px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow-soft); }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.field input, .field textarea { font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 10px 12px; width: 100%; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.field textarea { min-height: 112px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { font-size: 0.9rem; margin: 2px 0 0; min-height: 1.2em; }
.form-msg.ok { color: var(--led-700); }
.form-msg.err { color: var(--danger); }
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }
