/* =============================================== */
/* FONTES E RESET GLOBAL */
/* =============================================== */

/* Importação da fonte do Google */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}
































































