/* ARQUIVO: globals.css
 * Contém o reset e os estilos padrão para as tags HTML.
 */

/* === RESET === */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

/* === ESTILOS GLOBAIS PARA TAGS === */
* {
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--fonte-familia);
  background-color: var(--cor-fundo);
  color: var(--cor-texto-escuro);;
  line-height: 1.6;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

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

ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
} 
