@font-face {
  font-family: nunito-bold;
  src: url(../fonts/Nunito/static/Nunito-Bold.ttf);
}
@font-face {
  font-family: nunito-black;
  src: url(../fonts/Nunito/static/Nunito-Black.ttf);
}
@font-face {
  font-family: nunito-black;
  src: url(../fonts/Nunito/static/Nunito-Light.ttf);
}
* {
  box-sizing: border-box;
}

@media (max-width: 700px) {
  header {
    align-items: center;
    justify-content: space-between;
    padding: 2.95vh;
    width: 100%;
  }

  body .deixa-menu-fixo {
    position: fixed;
  }

  #logo h1 {
    height: 9.06vw;
    width: 24.26vw;
  }

  #menu-desktop-amarracao {
    display: none;
  }

  #botao-desktop {
    display: none;
  }

  /*HAMBURGUE'S BUTTON*/
  #menu-responsivo-amarracao {
    align-items: center;
    display: flex;
    font-family: nunito-bold;
    height: 9.06vw;
    justify-content: center;
  }

  header .btn-menu {
    color: #8606d4;
    align-items: center;
    display: flex;
    font-size: 3.2vw;
    font-weight: 900;
    height: 9.06vw;
    margin-right: 5px;
  }

  header #btn-menu-fechar {
    display: none;
  }

  header .active #btn-menu-menu {
    display: none;
  }

  header .active #btn-menu-fechar {
    display: block;
  }

  header #hamburguer_button {
    display: block;
    height: 100%;
    margin-right: 0;
    position: relative;
    width: 100%;
  }

  header .btn {
    height: 9.06vw;
    top: 0px;
    left: 0px;
    cursor: pointer;
    width: 6.4vw;
  }

  header .btn-traco {
    background-color: transparent;
    height: 1.06vw;
    left: 0px;
    position: absolute;
    transition-duration: 0.5s;
    top: 50%;
    -webkit-transition-duration: 0.5s;
    width: 6.4vw;
  }

  header .btn-traco:before {
    background-color: #8606d4;
    border-radius: 1vw;
    position: absolute;
    height: 0.8vw;
    width: 100%;
    content: "";
    top: -1.6vw;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.8s;
  }

  header .btn-traco:after {
    background-color: #8606d4;
    border-radius: 1vw;
    position: absolute;
    height: 0.8vw;
    width: 100%;
    content: "";
    top: 0.53vw;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }

  header .active .btn-traco:before {
    -webkit-transform: rotateZ(45deg) scaleX(100%) translate(15%, 100%);
    transform: rotateZ(45deg) scaleX(100%) translate(10%, 100%);
    background-color: #8606d4;
  }

  header .active .btn-traco:after {
    -webkit-transform: rotateZ(-45deg) scaleX(100%) translate(-15%, -100%);
    transform: rotateZ(-45deg) scaleX(100%) translate(10%, -100%);
    background-color: #8606d4;
  }

  /*MENU RESPONSIVO-PARTE DE BAIXO*/
  #responsive_nav {
    display: block;
    position: fixed;
    right: 0px;
    top: 12vh;
    width: 100vw;
  }

  header .active #wrapper_responsive {
    align-items: center;
    background-color: white;
    display: flex;
    height: 90vh;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 25vh;
    width: 100vw;
  }

  header #responsive_ul {
    display: none;
    height: auto;
  }

  header .active #responsive_ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin-block-end: unset;
    margin-block-start: unset;
    margin-inline-end: unset;
    margin-inline-start: unset;
    padding-inline-start: unset;
    width: 70%;
  }

  .responsive_a {
    height: 8vh;
    text-decoration: none;
  }

  header .active #responsive_ul li {
    align-items: center;
    border-top: 1.5px solid transparent;
    border-bottom: 1.5px solid transparent;
    color: #2c1951;
    display: flex;
    font-size: 1.2em;
    letter-spacing: 0.2em;
    height: 100%;
    justify-content: center;
    margin-left: 1em;
    padding: 0 2vh;
  }

  header .active #responsive_ul li:hover {
    text-decoration: underline;
  }

  /*BOTÃO*/
  header .active #botao-responsivo {
    background-color: #8606d4;
    border: none;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 10px rgba(44, 25, 81, 0.4));
    display: block;
    font-size: 2.5vw;
    height: 16vw;
    margin-bottom: 5vh;
    width: 80vw;
  }
  b {
    font-weight: 700;
  }
  #botao-responsivo:hover {
    cursor: pointer;
  }
}

@media (max-width: 450px) {
  #responsive_nav {
    top: 10vh;
  }

  header .active #botao-responsivo {
    font-size: 4.26vw;
  }
}
