/* ============================================================
   CRAQUE CIDADÃO — BASE / RESET
   Light document defaults so specimens & kits inherit the brand.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  margin: 0 0 0.4em;
  line-height: var(--lh-snug);
}

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: color-mix(in srgb, var(--blue-300) 60%, transparent); }

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