/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO header.scss*/
body ul.hamb {
  position: fixed;
  right: 20px;
  top: 40px;
  margin: 0;
  list-style: none;
  width: 30px;
  height: 30px;
  overflow: hidden;
  padding: 3px 3px 3px 5px;
  transition: 0.6s;
  z-index: 1;
  cursor: pointer;
}
body body.menuactive ul.hamb {
  left: 280px;
}
body body.menuactive {
  overflow: hidden;
}
body ul.hamb li {
  position: absolute;
  height: 4px;
  background: #ffffff;
  width: 21px;
  transition: 1s;
  left: 4px;
}
body ul.hamb li:nth-of-type(1) {
  margin-top: 2px;
}
body ul.hamb li:nth-of-type(2) {
  margin-top: 9px;
}
body ul.hamb li:nth-of-type(3) {
  margin-top: 16px;
}
body.menuactive ul.hamb {
  transform: rotate(180deg);
}
body.menuactive ul.hamb li {
  transform: rotate(180deg);
}
body.menuactive ul.hamb li:nth-of-type(1) {
  margin-top: 6px;
  left: 10px;
  transform: rotate(45deg);
  width: 13px;
  height: 3px;
}
body.menuactive ul.hamb li:nth-of-type(2) {
  width: 16px;
  left: 3px;
  height: 4px;
}
body.menuactive ul.hamb li:nth-of-type(3) {
  margin-top: 13px;
  left: 10px;
  transform: rotate(-45deg);
  width: 13px;
  height: 3px;
}
@media only screen and (min-width: 661px) {
  header {
    position: fixed;
    z-index: 2;
    height: 100px;
    background-image: linear-gradient(to top, #1c1b22CC, #1c1b2299);
    width: 100%;
    top: 0;
    left: 0;
  }
  header ul.hamb {
    display: none;
  }
  header img.logoTop {
    height: 80px;
    width: auto;
    margin-left: 20px;
    margin-top: 10px;
  }
  header .logoMenu {
    display: none;
  }
  header menu {
    position: absolute;
    top: 60px;
    right: 20px;
    margin: 0;
    padding: 0;
  }
  header menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  header menu ul li {
    flex-direction: column;
  }
  header menu ul li a {
    display: block;
    padding: 0 20px;
    color: #CCCCCC;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
  }
  header menu ul li a:hover {
    color: #FFFFFF;
  }
}
@media only screen and (max-width: 660px) {
  header {
    position: fixed;
    z-index: 2;
    height: 80px;
    background-image: linear-gradient(to top, #000000CC, #00000099);
    width: 100%;
    top: 0;
    left: 0;
  }
  header img.logoTop {
    height: 60px;
    width: auto;
    margin-left: 20px;
    margin-top: 10px;
  }
  header menu {
    position: fixed;
    top: 0px;
    left: -330px;
    margin: 0;
    width: 320px;
    height: 100vh;
    background: #000000F9;
    padding: 0;
    overflow: auto;
    transition: 0.6s;
  }
  header menu .logoMenu {
    display: block;
    width: 100px;
    height: auto;
    border-radius: 50%;
    margin-left: calc(50% - 50px);
    margin-top: 20px;
    filter: drop-shadow(0px 0px 5px #FFF);
    animation: logoMenu 2s infinite;
  }
  @keyframes logoMenu {
    0% {
      filter: drop-shadow(0px 0px 5px #FFF);
    }
    50% {
      filter: drop-shadow(0px 0px 15px #FFF);
    }
    100% {
      filter: drop-shadow(0px 0px 5px #FFF);
    }
  }
  header menu ul {
    list-style: none;
    margin: 0;
    margin-top: 40px;
    padding: 0;
  }
  header menu ul li a {
    display: block;
    padding: 0 20px;
    color: #CCCCCC;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
  }
  header menu ul li a:hover {
    color: #FFFFFF;
  }
  body.menuactive menu {
    left: 0;
  }
}
/* FIM TRECHO REFERENTE ARQUIVO header.scss*/

