@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;
}

.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;
  animation: inicia 1s ease-in-out;
}

.bloc1{
  display: flex;
}

.bloc1 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}


.bloc2{
  display: flex;
}

.bloc2 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

.bloc3{
  display: flex;
}

.bloc3 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

.bloc4{
  display: flex;
}

.bloc4 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

.bloc5{
  display: flex;
}

.bloc5 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

.bloc6{
  display: flex;
}

.bloc6 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

.bloco7{
  display: flex;
}

.bloco7 p{
  margin-top: 120px;
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

footer{
  background: #17161d;
  color: #fff;
  padding: 30px;
}

.mobile-menu{
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 32px;
  height: 2px;
  background: rgb(0, 0, 0);
  margin: 8px;
  transition: 0.3s;
}

.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%;
  }
  .loja{
    width: 100%;
  }
  .img2{
    width: 100%;
  }
  .bloc1{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc1 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloc2{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc2 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloc3{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc3 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloc4{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc4 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloc5{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc5 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloc6{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloc6 p{
    margin-top: auto;
    margin-left: auto;
  }
  .bloco7{
    display: block;
    align-items: center;
    text-align: center;
  }
  .bloco7 p{
    margin-top: auto;
    margin-left: auto;
  }
  .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;
  }
  nav{ 
    background-color: #fff;
    position: fixed;;
  } 
  .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 nav-animation{
  0%{
    transform: translateY(-100px);
    opacity: 0.7;
  }
  100%{
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes inicia{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}