/* CSS Reset */

/* Remove default margin */
body, ul, li, p {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Set core root defaults */
html {
  background-color: #fff;
  --text: #000;
  scroll-behavior: smooth;
}

/* Remove default padding */
body {
  padding: 0;
}

/* Remove default background and border on table elements */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove outline on active elements */
a,
input,
textarea,
select,
details,
summary {
  outline: none;
}

/* Reset to default styling for links */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  margin: 0; /* Remove margens padrão */
  padding: 0; /* Remove preenchimento padrão */
  font-family: inherit; /* Herda a fonte do elemento pai */
  font-size: 100%; /* Define o tamanho da fonte para 100% do valor padrão */
  line-height: 1; /* Define a altura da linha para 1 */
  cursor: pointer; /* Altera o cursor para indicar que o botão é clicável */
  background-color: transparent; /* Remove o fundo padrão */
  border: none; /* Remove a borda padrão */
}
