@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");


:root {
  --bg-text: rgba(255,255,255,0.2);
  --color-blue: rgb(15, 15, 102);
  --bg-nav: rgba(167, 143, 122, 0.7);
}

body {
    background: url(./img/corrugado\ FONDO\ OP\ 1.jpg) no-repeat;
    background-size: cover;

}

*, a {
    margin: 0; 
    box-sizing: border-box;
    outline: none;
    list-style: none;
}

i,button{
  cursor: pointer;
}

a{
  text-decoration: none;
  color: #000;
}


.nav{
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: var(--bg-nav);
  padding: 5px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  z-index: 2;
}

.nav .img-logo {
  width: 80px;
  border-radius: 60px;
  margin: 0px 5px;
}


.nav .container-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    gap: 20px;
}

.nav .container-logo .container-letters{
  display: flex;
  flex-direction: column;
}


.nav .container-letters .name{
  font-weight: 900;
  list-style: none;
  color: #000;
  padding: 0px 15px;
}

.nav .products-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding: 0px 10px;
}

.nav .products-container .container-letters{
  display: flex;
  align-items: center;
  justify-content: center;

}

.nav .container-cart{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav .container-cart i{
  font-size: 40px;
  color: #000;
}

.nav .sucursales-container{
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #000;
  width: 35px;
  transition: all 0.3s ease-in-out alternate;
  gap: 20px;
}

.nav .sucursales-container i{
  font-size: 35px;
}

.nav .list-btn{
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
  gap: 50px;
  font-size: 35px;
}
.nav .list-btn i{
  transition: all 0.5s ease-in-out;
}


/* NAV END  */

.products-main{
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

.products-main h1{
  text-align: center;
  padding: 30px;
  color: #fff;
}

.products-wrapper{
  display: flex;
}

.box-products-wrapper{
  display: flex;
  transition: all 0.3s ease-in-out;
  gap: 30px;
  flex-wrap: wrap;
  margin-right: 20px;
  width: 100%;
}

.products-main .aside{
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  gap: 20px;
  
}

.products-main .aside .filters{
  width: 200px;
  padding: 7px;
  border-radius: 10px;
  border: 2px solid #000;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  cursor: pointer;
  background: #00000075;
}

.products-main .aside .filters.active{
  font-weight: bold;
  background: #00000000;
}

.products-main .box-product{
  position: relative;
  display: flex;
  width: 280px;
  height: 300px;
  flex-direction: column;
  justify-content: space-around;
  color: #fff;
  text-shadow: 3px 3px 25px rgba(0, 0, 0, 1),
  8px 3px 11px rgba(0, 0, 0, 1);
  align-items: center;
}

.products-main .box-product-drip{
  display: flex;
  justify-content: center;
  gap: 40px;
  height: max-content;
  height: 260px;
}

.products-main .box-product-drip-todos{
  display: none;
}

.products-main .box-product::before{
  position: absolute;
  content: "";
  opacity: 0.3;
  inset: 0;

  background-image: url(./img/logo.jpg);
  background-size: cover;
  border-radius: 35px;
  background-position: center;
}

.products-main .box-product img{
  height: 190px;
  transform: scale(0.65);
  position: relative;
  object-fit: cover;
}

.products-main .box-product .medida{
  align-items: center;
}

.products-main .box-product img,.products-main .box-product p{
  position: relative;
  align-items: center;
}

.container-wpp{
  position: fixed;
  right: 15px;
  bottom: 15px;
  background-color: rgb(28, 177, 28);
  border-radius: 50%;
  box-shadow: 2px 2px 2px #000;
  transition: all 0.3s ease-in-out;
}

.container-wpp img{
  transform: scale(0.6);
  transition: all 0.2s ease-in-out;
}

.nav .btn-redes i:hover {
  transform: rotate(360deg) scale(1.4);
}

.container-wpp:hover{
  transform: scale(1.05);
  box-shadow: none;
  background-color: rgb(33, 146, 33);
}

  @media (max-width: 1000px){
    .slider-container{
      flex-direction: column;
    }
    .main .map-container{
      flex-direction: column;
    }
  }
  
  @media (max-width: 700px) {
  
      .nav{
        flex-direction: column;
        padding: 0;
        margin: 0;
        justify-content: center;
        width: 100%;
        padding: 5px 0;
      }
  
      .nav .img-logo{
        width: 60px;
      }
  
      .nav .container-logo{
        gap: 20px;
      }
  
      .nav .container-logo .container-letters{
        text-wrap: nowrap;
        font-size: 17px;
      }
      
      .nav .sucursales-container{
        margin-right: 120px;
      }

      .nav .products-container{
        flex-direction: column;
      }
  
      .nav .list-btn{
        justify-content: center;
        padding: 0;
      }
      
      .slider{
        padding: 0 10px;
        width: 400px;
      }
  
      .main .slider-container .description{
        margin-top: 50px;
        margin-bottom: 0;
      }
  
      .main .slider img{
        width: 400px;
        height: auto;
      }
  
      .slider-container{
        flex-direction: column;
      }
  
      .main .catalogo{
        padding: 35px 10px;
      }
  
      .main .boxs-container .box-list .box{
        height: auto;
      }
  
      .main .map-container .container-letters{
        margin: 0 20px;
        text-align: center;
      }
  
      .main .map-container .map{
        width: 300px;
      }
      
  
      .main .sucursales-container{
        flex-direction: column;
      }
  
      .main .sucursales-container .caba-img{
        width: 350px;
      }
  
      .main .sucursales-container .container-letters{
        padding: 10px 20px;
        width: 400px;
      }
  
      .footer{
        gap: 0;
      }
  
      .footer .rights-container{
        display: flex;
        flex-direction: column;
        gap: 0;
      }
  
      .footer ul div{
        display: block;
      }
  

    .container-wpp{
      bottom: 60px;
      z-index: 9999;
    }

    .products-main{
      margin-top: 120px;
    }

    .products-main .products-wrapper{
      flex-direction: column;
    }

    .products-main{
      margin-top: 210px;
    }

    .products-main .aside{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 50px;
    }

    .products-main .box-products-wrapper{
      justify-content: center;
    }
  }