* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh; /* Mudança de height para min-height para aceitar scroll */
  background-color: #444;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit; /* Herda a cor do pai para facilitar o estilo */
}

img {
  max-width: 100%; /* Garante que nenhuma imagem estoure o layout */
}
