@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;
}

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;
}

.mobile-menu{
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 32px;
  height: 2px;
  background: rgb(0, 0, 0);
  margin: 8px;
  transition: 0.3s;
}

.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{
  text-align: center;
  align-items: center;
  animation: inicia 1s ease-in-out;
}

section h1{
  font-size: 36px;
}

section p{
  font-weight: 600;
  font-size: 18px;
}

section div{
  margin: auto;
  margin-top: 32px;
  align-items: center;
  width: 220px;
  padding: 20px;
  background: rgb(25, 25, 207);
  box-shadow: rgb(19, 19, 128) 0px 8px 0px ;
  border-radius: 6px;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 2px;
}

section div:hover{
  background: rgb(22, 22, 245);
}

section div:active{
 position: relative;
 top: 8px;
 box-shadow: none;
}

section div a{
  color: #ffff;
  text-decoration: none;
}

@keyframes nav-animation{
  0%{
    transform: translateY(-100px);
    opacity: 0.7;
  }
  100%{
    transform: translateY(0px);
    opacity: 1;
  }
}

.me{
  font-size: 18px;
  height: 25px;
  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%;
  }
  .loja{
    width: 100%;
  }
  .img2{
    width: 100%;
  }
.nav-list{
   position: fixed;
   top: 14vh;
   width: 100%;
   height: 100%;
   background: #fff;
   flex-direction: column;
   align-items: center;
   transform: translateX(100%);
   transition: transform 0.3s ease-in;
   animation: none;
}
nav{
  position: fixed;
  background-color: #fff;
} 
.nav-list li{
   opacity: 1;
   margin-top: 80px;
   align-items: center;
}
.mobile-menu{
   display: block;
} 
 
.imgloja{
  height:max-content ;
  width: 100%;
}
}
.nav-list.active{
  transform: translateX(0);
}

@keyframes inicia{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

footer{
  background: #17161d;
  color: #fff;
  padding: 30px;
}



.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);
}