/*====================================================================================
                                  RESET
=========================================================================================*/

/* Remove margens e paddings padrão e define box-sizing global */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Garante que o HTML e o Body ocupem toda a altura e usem fontes limpas */
html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

/* Facilita o trabalho com imagens e elementos de mídia */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Remove estilos padrões de listas e links (opcional, mas muito comum) */
ol, ul {
  list-style: none;
}

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

/* Herda fontes para elementos de formulário */
input, button, textarea, select {
  font: inherit;
}
