*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Native controls — checkboxes, radios, range thumbs, progress bars — are painted by the
   browser with its OWN accent, not by any colour in this stylesheet. Left alone they stay the
   default blue, which is why a checkbox was the last blue thing on an otherwise green page.
   accent-color is the one property that reaches them. */
:root {
  accent-color: var(--accent);
}

html, body {
  height: 100%;
  /* Geist é a letra do produto, a mesma da Gestão (ver css/fonts.css). A pilha do sistema
     fica atrás dela como reserva: se o woff2 não chegar, o texto sai em Segoe UI ou no
     equivalente da máquina, em vez de sair em Times New Roman. */
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
