/* ==========================================================================
   reset.css — normalização mínima
   Não contém cores nem decisões de design. Apenas neutraliza defaults do
   navegador. Se precisar mudar aparência, edite global.css ou components.css.
   ========================================================================== */

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

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

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,
video,
svg {
  display: block;
  max-width: 100%;
}

/* Precisa vencer a regra `display:block` acima — sem isso, o atributo
   `hidden` deixa de funcionar em <img> e <video>. */
[hidden] {
  display: none !important;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* Evita qualquer estouro lateral herdado do protótipo */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
