/* reset.css */

/* Box sizing border-box por padrão */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove margens e paddings padrão */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* Remove estilo de listas */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove estilos de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove borda de elementos focados no Firefox */
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Define altura mínima e fonte base */
html, body {
  height: 100%;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

/* Imagens e vídeos responsivos */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove estilos de botões */
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Previne zoom em inputs mobile */
input, button, textarea, select {
  font: inherit;
}

/* Remove aspas de citações */
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/* Evita saltos em formulários */
textarea {
  resize: vertical;
}

  
