/* reset.css — base mínima e previsível para o miolo da página */

/* Fontes variáveis locais (self-host) — arquivos em ../fonts/ */
@font-face{font-family:'Inter';font-style:normal;font-weight:400 600;font-display:swap;src:url(../fonts/inter-var.woff2) format('woff2')}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400 700;font-display:swap;src:url(../fonts/playfair-var.woff2) format('woff2')}
@font-face{font-family:'Playfair Display';font-style:italic;font-weight:400 700;font-display:swap;src:url(../fonts/playfair-var-italic.woff2) format('woff2')}

*,
*::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; }
