/* ═══════════════════════════════════════════════════════════════════
   reset.css — minimo. Nao normaliza o que o DS ja define em base.css.
   ═══════════════════════════════════════════════════════════════════ */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol { margin: 0; }

ul[class], ol[class] {
  padding: 0;
  list-style: none;
}

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

img { height: auto; }

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

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

table { border-collapse: collapse; }

:where(hr) {
  border: 0;
  border-top: 1px solid var(--border-hairline);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
