* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #fff;
  --azul-400: #266bff;
  --azul-500: #1b51cb;
  --azul-800: #202243;
  --verde-500: #2ec850;
  --cinza-100: #f5f5f5;
  --cinza-300: #8d8d99;
}

html {
  min-width: 320px;
  width: 100vw;
}

body {
  width: 100%;
  min-height: 100vh;
}

/*ANIMAÇOES*/

@keyframes surgirDaDireita {
  from {
    opacity: 0;
    translate: 15vw 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes surgirDaEsquerda {
  from {
    opacity: 0;
    translate: -15vw 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes revelar {
  from {
    opacity: 0;
    clip-path: inset(45% 20% 45% 20%);
  }

  to {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* body * {border: 1px solid tomato;} */

#page {
  width: 100%;
  min-height: 100%;
}




