/* reset.css — base mínima e previsível para o miolo da página */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  color: var(--cor-texto);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select { font: inherit; }

p,
h1,
h2,
h3,
h4,
h5,
h6 { overflow-wrap: break-word; }

h1,
h2,
h3,
h4 {
  font-family: var(--font-titulo);
  line-height: 1.2;
  text-wrap: balance;
}

a { color: inherit; }

ul,
ol { padding-left: 1.25rem; }
