@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset CSS básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Gotham', sans-serif;
  background-color: #E7E7E7;
}

/* Remove estilos padrão de listas */
ul, ol {
  list-style: none;
}

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

/* Normaliza elementos de formulário */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
}

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