@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins Black";
  src: url(../fonts/Poppins-Black.ttf);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: rgba(9, 6, 32, 1);
  font-family: "monte-stella";
  font-size: 24px;
  text-decoration: none;
}

@import url("https://p.typekit.net/p.css?s=1&k=jno4zkq&ht=tk&f=49598.49599&a=309271400&app=typekit&e=css");

@font-face {
  font-family: "monte-stella";
  src: url("https://use.typekit.net/af/1c095f/00000000000000007735f764/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/1c095f/00000000000000007735f764/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("woff"),
    url("https://use.typekit.net/af/1c095f/00000000000000007735f764/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}

@font-face {
  font-family: "monte-stella";
  src: url("https://use.typekit.net/af/ea8781/00000000000000007735f763/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i8&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/ea8781/00000000000000007735f763/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i8&v=3")
      format("woff"),
    url("https://use.typekit.net/af/ea8781/00000000000000007735f763/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i8&v=3")
      format("opentype");
  font-display: auto;
  font-style: italic;
  font-weight: 800;
  font-stretch: normal;
}

.tk-monte-stella {
  font-family: "monte-stella", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
}

main {
  display: flex;
  width: 100vw;
  height: 100dvh;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  background: linear-gradient(180deg, #4e99e4 0%, #d1e7ff 100%);
}

.active {
  opacity: 1;
  z-index: 0;
  height: auto;
}

/* STYLE - NAV */
nav {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 15px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.19);
  flex-direction: row;
  flex-wrap: nowrap;
  border: 2px solid #aba5a5;
  border-image-source: linear-gradient(90deg, #f7f7f7 0%, #e2e2e2 100%),
    linear-gradient(
      0deg,
      var(--degrade, rgba(0, 0, 0, 0.2)),
      var(--degrade, rgba(0, 0, 0, 0.2))
    );
  background: linear-gradient(180deg, #d6d7d7 0%, #fcfdfd 100%);
  transition: 0.4s;
  opacity: 0;
  position: relative;
  top: 0;
}

nav div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

nav div:first-child {
  justify-content: flex-start;
}

nav div:nth-child(2) {
  margin-left: -17.5px;
}

nav div:last-child {
  justify-content: flex-end;
}

nav span {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
}

.icone_pop {
  width: 50px;
}

@media screen and (max-width: 800px) {
  nav {
    padding: 25px 7px;
    border-radius: 0 0 25px 25px;
  }

  nav img {
    width: 80px;
  }

  nav span {
    font-size: 18px;
  }

  img.icone_hora {
    width: 35px;
  }

  nav div {
    gap: 10px;
  }

  .icone_pop {
    width: 40px;
  }

  nav div:nth-child(2) {
    margin-left: 0;
  }
}
