@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

/*------------------------------HEADER------------------------------*/
header {
  width: 100%;
}

header .container {
  display: grid;
  grid-template: auto / 25% 75%;
}

.logo {
  display: grid;
  color: #e85186;
  align-items: center;
  justify-content: center;
}

.logo h1 {
  font-size: 6vw;
  font-weight: lighter;
  font-family: "Satisfy", cursive;
}

.navbar {
  display: grid;
  align-items: center;
  justify-content: flex-end;
  grid-template: auto / 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: flex-end;
}

.nav-item {
  font-size: 1.7vw;
  padding: 1vh 1.7vw;
}

.nav-link {
  color: black;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
  text-decoration-color: #e85186;
}

.hamburger {
  display: none;
}

.bar {
  width: 30px;
  height: 3px;
  display: block;
  margin: 3px auto;
  background-color: #e85186;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

/*------------------------------TEXT------------------------------*/
.text {
  width: 100%;
  height: 100%;
  background-color: rgb(236, 236, 236);
}

.text .content {
  padding: 5vh 15vw;
  text-align: justify;
}

.text .content h1 {
  font-size: 5vw;
  color: #e85186;
  text-align: center;
  font-weight: lighter;
  font-family: "Satisfy", cursive;
}

.text .content .data {
  padding: 5vh 0;
  font-size: 1.5vw;
  font-weight: bold;
}

.text .content a {
  text-decoration: none;
}

.text .content p {
  font-size: 1.5vw;
  line-height: 5vh;
}

.text .content h2 {
  font-size: 2vw;
  color: #e85186;
  font-weight: lighter;
}

/*------------------------------FOOTER------------------------------*/
footer {
  width: 100%;
}

footer .container {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template: auto auto / 100%;
}

footer .container .regua {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}

footer .container .regua img {
  width: 99%;
  margin: auto;
  margin-bottom: 1vh;
}

footer .container .termos {
  display: grid;
  padding: 2vh 0;
  justify-content: center;
}

footer .container .termos ul {
  display: flex;
  list-style: none;
}

footer .container .termos ul li {
  font-size: 1.4vw;
  padding: 1vh 15vw;
}

footer .container .termos ul li a {
  color: lightgray;
  text-decoration: none;
}

footer .container .termos ul li a:hover {
  text-decoration: underline;
  text-decoration-color: #e85186;
}

/*------------------------------RESPONSIVIDADE------------------------------*/
@media screen and (max-width: 768px) {
  /*------------------------------HEADER------------------------------*/
  header .container {
    grid-template: auto / 50% 50%;
  }

  .logo h1 {
    font-size: 10vw;
  }

  .nav-menu {
    top: 15vh;
    width: 100%;
    left: -100%;
    transition: 0.3s;
    text-align: center;
    position: absolute;
    flex-direction: column;
    background-color: #fff;
    /* box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2vh 0;
  }

  .nav-item {
    font-size: 3vw;
  }

  .hamburger {
    display: grid;
    margin: 2vh 2vw;
    cursor: pointer;
    align-items: center;
    justify-content: flex-end;
    grid-template: auto auto auto / auto;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /*------------------------------TEXT------------------------------*/
  .text .content h1 {
    font-size: 8vw;
  }

  .text .content p {
    font-size: 2.5vw;
  }

  .text .content h2 {
    font-size: 3vw;
  }

  .text .content .data {
    font-size: 2.5vw;
  }

  /*------------------------------FOOTER------------------------------*/
  footer .container .termos ul li {
    font-size: 2vw;
  }
}

@media screen and (max-width: 425px) {
  /*------------------------------HEADER------------------------------*/
  .nav-menu {
    top: 10vh;
  }

  .bar {
    width: 20px;
    margin: 2px auto;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /*------------------------------TEXT------------------------------*/
  .text .content h1 {
    font-size: 10vw;
  }

  .text .content p {
    font-size: 3.5vw;
  }

  .text .content h2 {
    font-size: 4vw;
  }

  .text .content .data {
    font-size: 4vw;
  }

  .text .links {
    font-size: 3.5vw;
  }

  /*------------------------------FOOTER------------------------------*/
  footer .container-footer .termos ul li {
    padding: 1vh 10vw;
    font-size: 2.5vw;
  }
}
