@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body{
  padding: 0;
  margin: 0;
}

*{
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.btn1{
  margin-top: 15px;
}

.logo{
  animation: nav-animation 1s ease-in-out;
  height: 90px;
  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;
}

.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;
}

.mobile-menu{
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 32px;
  height: 2px;
  background: rgb(0, 0, 0);
  margin: 8px;
  transition: 0.3s;
}


.loja{
  text-align: center;
  
}
.imgloja{
  height: 600px;
}

.container{
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.marcas{
  text-align: center;
  align-items: center;
  margin: 20px;
}
.marcas h1{
  font-size: 52px;
  font-weight: 600;
}
.marcas p{
  font-size: 23px;
  font-weight: 600;
}
.imgmarcas{
  height: 260px;
}

footer{
  background: #17161d;
  padding: 20px;
  height: auto;
  color: #fff;
}

.orcment{
  background: rgba(226, 221, 221, 0.815);
  padding: 30px;
  text-align: center;
}
.orcment p{
  font-size: 20px;
  font-weight: 600;
}
.orcment button{
  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: 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);
}


/*>>>>>>>>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;
  }
}