*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  font-size: 62.5%;
}

body {
  list-style-type: none;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none; /* Remove o sublinhado padrão */
  color: inherit; /* Mantém a cor do texto do elemento pai */
}

a:hover {
  text-decoration: none; /* Remove o sublinhado no hover */
  color: inherit; /* Mantém a cor do texto do elemento pai */
}