/* ==========================================================================
   MarcaDigital — site institucional (marcadigital.online)
   Paleta AMPL: royal/navy #102592 + ciano #1d73e0
   Sem framework: CSS puro, mobile-first, variáveis de tema.
   ========================================================================== */

:root {
  /* Marca AMPL */
  --navy-50: #eef1fb;
  --navy-100: #dbe1f6;
  --navy-200: #bcc7ee;
  --navy-300: #92a3e2;
  --navy-400: #5f6fd0;
  --navy-500: #3243b5;
  --navy-600: #102592;
  --navy-700: #0d1e78;
  --navy-800: #0b1860;
  --navy-900: #08144d;

  --blue-50: #eaf2fd;
  --blue-100: #d2e4fb;
  --blue-200: #a7c9f7;
  --blue-300: #74a8f0;
  --blue-400: #418ae8;
  --blue-500: #1d73e0;
  --blue-600: #175dc0;
  --blue-700: #124a9c;

  /* Neutros */
  --ink: #0c1330;
  --body: #46506b;
  --muted: #6b748d;
  --line: #e4e8f2;
  --line-soft: #eef1f7;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-tint: #f0f3fb;

  --ok: #10905f;
  --warn: #b5721a;
  --danger: #c0392f;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(12, 19, 48, .06);
  --shadow-sm: 0 2px 8px rgba(12, 19, 48, .06);
  --shadow: 0 10px 30px rgba(12, 19, 48, .08);
  --shadow-lg: 0 24px 60px rgba(8, 20, 77, .16);

  --maxw: 1180px;
  --gutter: 20px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--navy-500); }
button { font: inherit; }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }

/* ---------- Utilitários ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: 72px 0; }
.section--soft { background: var(--surface-soft); }
.section--tint { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-tint) 100%); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.eyebrow--light { color: var(--blue-200); background: rgba(29, 115, 224, .14); border-color: rgba(146, 219, 236, .28); }
.section-title { font-family: var(--serif); font-size: clamp(28px, 4.2vw, 42px); font-weight: 600; letter-spacing: -.02em; }
.section-lead { font-size: clamp(16px, 2vw, 18px); color: var(--muted); max-width: 74ch; }
.center .section-lead { margin-inline: auto; }
.head { margin-bottom: 40px; }

/* Quebra de linha: sem "viúvas".
   `balance` reparte o texto em linhas de largura parecida (bom em título e em
   parágrafo centralizado, que é onde uma palavra sozinha na última linha salta
   aos olhos); `pretty` só evita a última linha com uma palavra, sem mexer no
   resto. Navegador antigo ignora as duas e cai no comportamento de sempre. */
h1, h2, h3, h4, .section-title, .cta-final h2 { text-wrap: balance; }
p, li, figcaption, dd { text-wrap: pretty; }
.section-lead, .cta-final p, .plans-note, .hero__trust li,
.card p, .risk p, .step p, .plan__desc, .faq__a p { text-wrap: balance; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-size: 15px; line-height: 1; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy-600); color: #fff; box-shadow: 0 8px 20px rgba(16, 37, 146, .28); }
.btn--primary:hover { background: var(--navy-700); color: #fff; box-shadow: 0 12px 26px rgba(16, 37, 146, .34); }
.btn--accent { background: var(--blue-500); color: #04212c; box-shadow: 0 8px 20px rgba(29, 115, 224, .3); }
.btn--accent:hover { background: var(--blue-400); color: #04212c; }
.btn--ghost { background: #fff; color: var(--navy-700); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--navy-300); color: var(--navy-600); }
.btn--outline-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .34); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.btn--wide { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Faixa promocional ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-600) 55%, var(--blue-600));
  color: #dbe6ff; font-size: 13.5px;
}
.topbar__in { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; text-align: center; flex-wrap: wrap; padding-block: 6px; }
.topbar strong { color: #fff; }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.topbar a:hover { color: var(--blue-100); }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-300); box-shadow: 0 0 0 4px rgba(92, 198, 224, .25); flex: none; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .35 } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(12, 19, 48, .07); }
.nav { display: flex; align-items: center; gap: 22px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 18.5px; font-weight: 800; color: var(--navy-700); letter-spacing: -.02em; }
.brand__name span { color: var(--blue-500); }
.brand__tag { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav__links { display: none; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 9px 11px; border-radius: 10px; font-size: 14.5px; font-weight: 550; color: var(--body);
  white-space: nowrap; /* "Como funciona" e "Vigilância 360º" não podem quebrar em duas linhas */
  transition: background-color .16s ease, color .16s ease;
}
.nav__links a:hover { background: var(--navy-50); color: var(--navy-700); }
.nav__cta { display: none; align-items: center; gap: 10px; }
.nav__cta .btn { white-space: nowrap; }
/* O header precisa de mais respiro que o resto do conteúdo: são 6 itens de
   menu mais dois botões na mesma linha. */
.header .wrap { max-width: 1280px; }
.nav__burger {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--navy-700); cursor: pointer;
}
.nav__burger svg { width: 22px; height: 22px; }
@media (min-width: 1000px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger { display: none; }
  .nav__cta { margin-left: 8px; }
}
/* menu mobile */
.mobile-menu {
  display: none; border-top: 1px solid var(--line); background: #fff;
  box-shadow: var(--shadow); padding: 14px var(--gutter) 22px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a.mm-link {
  display: block; padding: 13px 6px; border-bottom: 1px solid var(--line-soft);
  font-weight: 600; color: var(--ink);
}
.mobile-menu .mm-actions { display: grid; gap: 10px; margin-top: 16px; }
@media (min-width: 1000px) { .mobile-menu { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #e8edff;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(29, 115, 224, .38), transparent 62%),
    radial-gradient(760px 460px at 6% 108%, rgba(50, 67, 181, .5), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 48%, var(--navy-600) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%);
}
.hero__in { position: relative; z-index: 1; display: grid; gap: 44px; padding: 66px 0 78px; }
@media (min-width: 1020px) {
  .hero__in { grid-template-columns: 1.06fr .94fr; align-items: center; gap: 56px; padding: 86px 0 96px; }
}
.hero h1 {
  font-family: var(--serif); color: #fff; font-weight: 600;
  font-size: clamp(34px, 5.6vw, 56px); line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--blue-300); }
.hero__lead { font-size: clamp(16.5px, 2.1vw, 19px); color: #c3cdf3; max-width: 56ch; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: #a9b6e8; }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--blue-300); flex: none; }

/* cartão-mockup do hero */
.mock {
  background: rgba(255, 255, 255, .97); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; color: var(--body);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
@media (max-width: 1019px) { .mock { transform: none; } }
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--navy-800); }
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .28); display: block; }
.mock__url {
  margin-left: 6px; flex: 1; font-size: 11.5px; color: #b9c6f2; background: rgba(255, 255, 255, .1);
  border-radius: 999px; padding: 4px 12px; letter-spacing: .01em;
}
.mock__body { padding: 20px 20px 22px; }
.mock__label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; }
.mock__search {
  display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--navy-200);
  border-radius: 12px; padding: 11px 14px; margin: 8px 0 16px; background: var(--navy-50);
}
.mock__search svg { width: 18px; height: 18px; color: var(--navy-500); flex: none; }
.mock__search span { font-weight: 650; color: var(--navy-800); font-size: 15px; }
.mock__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px;
  background: #fff; box-shadow: var(--shadow-xs);
}
.mock__row b { display: block; color: var(--ink); font-size: 14.5px; font-weight: 650; }
.mock__row small { color: var(--muted); font-size: 12.5px; }
.pill { font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.pill--ok { background: #e6f6ef; color: var(--ok); }
.pill--warn { background: #fdf2e2; color: var(--warn); }
.pill--info { background: var(--blue-50); color: var(--blue-700); }
.mock__foot {
  display: flex; align-items: center; gap: 9px; margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--muted);
}
.mock__foot svg { width: 15px; height: 15px; color: var(--blue-500); }

/* ---------- Barra de KPIs ---------- */
.kpis { position: relative; z-index: 3; margin-top: -38px; }
.kpis__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
@media (min-width: 900px) { .kpis__grid { grid-template-columns: repeat(4, 1fr); } }
.kpi { background: #fff; padding: 22px 18px; text-align: center; }
.kpi__n { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 32px); font-weight: 600; color: var(--navy-600); letter-spacing: -.02em; }
.kpi__n span { font-size: .62em; color: var(--blue-500); }
.kpi__l { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- Cards genéricos ---------- */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy-200); }
.card h3 { font-size: 17.5px; margin-bottom: 8px; }
.card p { font-size: 14.8px; margin: 0; }
.icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--navy-50); color: var(--navy-600); margin-bottom: 14px;
}
.icon svg { width: 23px; height: 23px; }
.icon--blue { background: var(--blue-50); color: var(--blue-600); }
.icon--danger { background: #fdeceb; color: var(--danger); }

.card--link { display: flex; flex-direction: column; }
.card__more {
  margin-top: 14px; font-size: 14px; font-weight: 650; color: var(--navy-600);
  display: inline-flex; align-items: center; gap: 6px;
}
.card__more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.card:hover .card__more svg { transform: translateX(3px); }

/* ---------- Riscos ---------- */
.risk { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--danger); border-radius: var(--radius); padding: 20px 22px; }
.risk h3 { font-size: 16.5px; margin-bottom: 6px; }
.risk p { font-size: 14.5px; margin: 0; }

/* ---------- Split (texto + visual) ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 980px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split--rev > *:first-child { order: 2; } }
.checks li { display: flex; gap: 12px; padding: 9px 0; font-size: 15.5px; }
.checks svg { width: 21px; height: 21px; flex: none; color: var(--blue-500); margin-top: 2px; }
.checks b { color: var(--ink); }

/* painel de vigilância (ilustração) */
.watch {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg); padding: 26px; color: #dbe3ff; box-shadow: var(--shadow-lg);
}
.watch__hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.watch__hd b { color: #fff; font-size: 15.5px; }
.watch__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--blue-200); }
.watch__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-300); animation: pulse 1.8s infinite; }
.watch__item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; margin-bottom: 9px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px;
}
.watch__item b { color: #fff; font-size: 14.5px; display: block; }
.watch__item small { color: #a9b6e8; font-size: 12.5px; }
.watch__score { margin-left: auto; font-weight: 800; font-size: 15px; }
.watch__score--hi { color: #ff9a8b; }
.watch__score--md { color: #ffd28a; }
.watch__score--lo { color: var(--blue-200); }

/* ---------- Passos ---------- */
.steps { counter-reset: step; display: grid; gap: 16px; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(5, 1fr); gap: 12px; } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px 20px; box-shadow: var(--shadow-xs);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--navy-200);
  display: block; line-height: 1; margin-bottom: 10px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; margin: 0; }
.step__when { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--blue-700); background: var(--blue-50); border-radius: 999px; padding: 3px 10px; }

/* ---------- Comparativo ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 620px; }
table.cmp th, table.cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
table.cmp thead th { background: var(--surface-soft); font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
table.cmp thead th:nth-child(2) { color: var(--navy-700); background: var(--navy-50); }
table.cmp td:first-child { color: var(--ink); font-weight: 600; }
table.cmp td:nth-child(2) { background: rgba(238, 241, 251, .5); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
.tick, .cross { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.tick { color: var(--ok); }
.cross { color: var(--danger); }
.tick svg, .cross svg { width: 18px; height: 18px; flex: none; }

/* ---------- Planos ---------- */
.plans { display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 980px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px 26px; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured { border-color: var(--navy-600); box-shadow: var(--shadow); position: relative; }
.plan--featured::before {
  content: "Mais escolhido"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy-600); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--blue-600); }
.plan__desc { font-size: 14.5px; color: var(--muted); min-height: 44px; margin: 6px 0 14px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan__price .x { font-size: 15px; color: var(--muted); font-weight: 600; }
.plan__price .v { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.plan__price .v small { font-size: 20px; }
.plan__note { font-size: 12.8px; color: var(--muted); margin: 8px 0 18px; }
.plan__list { margin-bottom: 22px; }
.plan__list li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.6px; border-bottom: 1px dashed var(--line-soft); }
.plan__list li:last-child { border-bottom: 0; }
.plan__list svg { width: 18px; height: 18px; flex: none; color: var(--blue-500); margin-top: 3px; }
.plan__list li.off { color: var(--muted); }
.plan__list li.off svg { color: var(--line); }
.plan .btn { margin-top: auto; }
.plans-note {
  margin-top: 18px; font-size: 13.6px; color: var(--muted); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px;
}
.plans-note b { color: var(--ink); }

/* ---------- Números / prova ---------- */
.proof { background: linear-gradient(155deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600)); color: #cdd7fb; }
.proof .section-title { color: #fff; font-family: var(--serif); }
.proof .section-lead { color: #b3c0ee; }
.proof__grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .proof__grid { grid-template-columns: repeat(4, 1fr); } }
.proof__item { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 22px; }
.proof__item b { display: block; font-family: var(--serif); font-size: 30px; color: #fff; font-weight: 600; line-height: 1.1; }
.proof__item span { font-size: 13.6px; color: #a9b6e8; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq__item[open] { border-color: var(--navy-300); box-shadow: var(--shadow-xs); }
.faq__q {
  list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  font-weight: 650; color: var(--ink); font-size: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ""; margin-left: auto; flex: none; width: 11px; height: 11px;
  border-right: 2.2px solid var(--navy-500); border-bottom: 2.2px solid var(--navy-500);
  transform: rotate(45deg) translateY(-3px); transition: transform .22s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translateY(-3px); }
.faq__a { padding: 0 22px 20px; font-size: 15.2px; color: var(--body); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Contato ---------- */
.contact { display: grid; gap: 34px; }
@media (min-width: 980px) { .contact { grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: start; } }
.contact__list { margin-top: 26px; }
.contact__list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.contact__list li:last-child { border-bottom: 0; }
.contact__list .icon { width: 40px; height: 40px; margin: 0; border-radius: 11px; }
.contact__list .icon svg { width: 19px; height: 19px; }
.contact__list b { display: block; color: var(--ink); font-size: 15px; }
.contact__list small { color: var(--muted); font-size: 13.6px; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.form__row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13.4px; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.4px solid var(--line); border-radius: 11px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-400); box-shadow: 0 0 0 4px var(--navy-50);
}
.field input::placeholder, .field textarea::placeholder { color: #a6adc2; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.2px; color: var(--muted); margin-bottom: 16px; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--navy-600); flex: none; }
.form__msg { display: none; border-radius: 11px; padding: 13px 16px; font-size: 14.4px; margin-bottom: 14px; }
.form__msg.is-ok { display: block; background: #e6f6ef; color: #0b6a46; border: 1px solid #b9e3d1; }
.form__msg.is-err { display: block; background: #fdeceb; color: #93251c; border: 1px solid #f4c8c4; }
.form__foot { font-size: 12.4px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--navy-700), var(--navy-600) 45%, var(--blue-600));
  border-radius: var(--radius-xl); padding: 46px 32px; text-align: center; color: #dfe6ff;
  box-shadow: var(--shadow-lg);
}
.cta-final h2 { color: #fff; font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.8vw, 38px); }
.cta-final p { max-width: 62ch; margin-inline: auto; color: #c6d1f7; }
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-900); color: #9fabd9; font-size: 14.4px; padding: 56px 0 26px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { color: #9fabd9; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__about p { font-size: 14.2px; max-width: 42ch; }
.footer .brand__name { color: #fff; }
.footer .brand__tag { color: #7c8ac2; }
.footer__links li { padding: 5px 0; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1);
}
.footer__social a:hover { background: var(--blue-600); border-color: var(--blue-500); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 13px; color: #7c8ac2;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__disclaimer { font-size: 12.4px; color: #6d7bb4; margin-top: 14px; max-width: 90ch; }

/* ---------- Flutuantes ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #04301a; font-weight: 700; font-size: 14.6px;
  padding: 13px 18px; border-radius: 999px; box-shadow: 0 12px 30px rgba(4, 48, 26, .3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #04301a; box-shadow: 0 16px 34px rgba(4, 48, 26, .38); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float span { display: none; }
@media (min-width: 560px) { .wa-float span { display: inline; } }

.to-top {
  position: fixed; right: 18px; bottom: 82px; z-index: 69;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--navy-700); border: 1px solid var(--line);
  box-shadow: var(--shadow); cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.to-top.is-on { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .topbar__dot, .watch__live i { animation: none; }
}

/* ---------- Páginas legais ---------- */
.legal { padding: 56px 0 72px; }
.legal__in { max-width: 820px; margin-inline: auto; }
.legal h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal h2 { font-size: 20px; margin-top: 34px; }
.legal p, .legal li { font-size: 15.4px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal li { padding: 3px 0; }
.legal__date { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
