@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.logo{
  animation: nav-animation 1s ease-in-out;
  width: 125px;
}

.mobile-menu{
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 32px;
  height: 2px;
  background: rgb(0, 0, 0);
  margin: 8px;
  transition: 0.3s;
}

nav{
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  height: 16vh;
  box-shadow: rgba(0, 0, 0, 0.329) 0px 7px 5px;
}

.nav-list{
  list-style: none;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  animation: nav-animation 1s ease-in-out;
}

.nav-list a{
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

.nav-list a:hover{
  color: rgb(25, 25, 207);
}

.nav-list li{
  letter-spacing: 2px;
  margin-left: 32px;
}

.refe{
  font-size: 21px;
  padding: 25px;
  
}
.refe a{
  text-decoration: none;
}

section{
  padding: 25px;
  text-align: center;
  animation: inicia 1s ease-in-out;
}

section h1{
  font-size: 38px;
}

section p{
  font-weight: 600;
  font-size: 18px;
}

.geral{
 display: flex;
 text-align: center;
 font-weight: 600;
}

.geral li{
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.452) 2px 6px 9px ;
  border-radius: 8px;
  height: 70px;
  width: 120px;
  padding: 30px;
  list-style: none;
  margin: auto;
  font-size: 17px;
}  

.geral li:hover{
  transition-duration: 0.5s ;
  background: rgb(25, 25, 207);
  color: #fff;
}

footer{
  background: #17161d;
  color: #fff;
  padding: 30px;
}

.imp{
  box-shadow: rgba(0, 0, 0, 0.507) 0px 7px 8px;
}

.orcment{
  background: rgba(226, 221, 221, 0.815);
  padding: 30px;
  text-align: center;
}
.orcment p{
  font-size: 20px;
  font-weight: 600;
}
.orcment button{
  margin-left: 50px;
  font-weight: 600;
  font-size: 18px;
  background: none;
  border: rgb(0, 0, 0) 1.2px solid;
  border-radius: 3.6px;
  padding: 14px;
  width: 190px;
  cursor: pointer;
  
  transition-duration: 0.2s;
}
.orcment button:hover{
  background: rgba(0, 0, 0, 0.911);
  border: none;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.582) 0px 7px 9px;
}

.foot1 a{
  color: rgba(226, 221, 221, 0.815);
}

.foot1 a:hover{
  color:rgb(255, 255, 255);
}

.foot1 p{
  color: rgba(226, 221, 221, 0.815);
}

.me{
  font-size: 14px;
  height: 25px;
  width: 300px;
  padding: 10px;
  align-items: center;
  letter-spacing: 1px;
  border-radius: 2em;
}

.me a{
  font-weight: 600;
  text-decoration: none;
  color: #7400b8;
}

/*>>>>>>>>RESPONSIVIDAde<<<<<<<<<<<*/

@media (max-width: 999px) {
  body{
    overflow-x: hidden;
    width: 100%;
  }
  .imp2{
    width: 100%;
  }
  .loja{
    width: 100%;
  }
  .nav-list{
    position: fixed;
    top: 14vh;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    animation: none;
  }

  .geral{
    display: block;
  }
  .geral li{
    margin-top:20px;
  }

  nav{
    background-color: #fff;
    position: fixed;
  }

  .nav-list li{
    opacity: 1;
    margin-left: 0;
    margin-top: 80px;
    align-items: center;
  }
  .mobile-menu{
    display: block;
  } 

  }
  .nav-list.active{
    transform: translateX(0);
  }

/*>>>>>>>>>>>animações<<<<<<<<<<<*/
@keyframes nav-animation{
  0%{
    transform: translateY(-100px);
    opacity: 0.7;
  }
  100%{
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes inicia{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}