/* =========================
   RESET + BASE DEFAULT
   ========================= */

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Títulos */
h1 {
  font-weight: 700;
}

/* Listas */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Mídias responsivas */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inputs e botões */
input,
button,
textarea,
select {
  font: inherit;
}

/* Botões sem estilo padrão */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Tabelas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Estrutura do layout */
main {
  flex: 1;
}
