/* RESET CSS BÁSICO */

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

/* Define altura total */
html, body {
  height: 100%;
}

/* Remove estilos de lista */
ul, ol {
  list-style: none;
}

/* Remove decoração de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove borda e estilo padrão de inputs e botões */
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* Botão com cursor padrão */
button {
  cursor: pointer;
  background: none;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  display: block;
}

/* Tabela sem espaçamento estranho */
table {
  border-collapse: collapse;
  border-spacing: 0;
}