.section-wave {
  position: relative;
  height:800px;

  background: linear-gradient(
    to bottom,
    white 40%,
    var(--color-primary) 40%
  );

  overflow: visible;
}

.wave-content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: block;
}

/* 🔥 AQUÍ ESTÁ LA MAGIA */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 300px; /* 👈 más alto para que sí se vea */
  display: block;
}










/*============= ESTILOS SLIDER 1 HOME ===============*/
   /* ── COLUMNA SWIPER ── */
        .container-swiper-nuevos-prod {
            flex: 1;
            overflow: hidden;
        }

  .products-container {
            margin: 0 auto;
            padding: 0 80px;
            position: relative;
        }


        .products-swiper {
            width: calc(100% - 20px);
            margin: 0 auto;
            padding: 20px 0;
            overflow: hidden;
        }

        .products-wrapper {
            display: flex;
            align-items: stretch;
        }

        .products-wrapper a{
            text-decoration:none;
            width: 100%; /*IMPORTANTE NOS FUNCIONA*/
        }

        .product-item {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--color-white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }


        .block{
            width:100%;
        }

        .product-item:hover{
            border-color:var(--primaryhover);box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        }

        .product-image-container{
            height: auto;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--color-white);
        }

        .product-image{
            overflow: hidden;
            width:100%;
        }

        .product-image img{
            width:100%;
        }



        .etiquetas-prod{
            position: absolute;
            font-size: 12px;
            color: var(--color-white);
        }
        .one{
            top:0px;
            left:0px;
            padding: 2px 8px;
            border-bottom-right-radius:8px;
        }


        .product-content {
            text-align: left !important;
            padding: 10px 10px;
        }

        .product-name {
            font-size: 17px;
            color: var(--color-black);
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            min-height:45px;
            display:flex;
            align-items:center;
        }

        .product-name-subtitle{
            color: var(--color-black);
            font-size: 14px;
            padding-bottom: 8px;
            font-weight: 500;
        }

        .btn-price-prod{
            display: flex;
            justify-content: end;
            gap: 4px;
            flex-direction: column;
            align-items: end;
            font-size: 14px;
            padding-bottom:20px;
        }
        .btn-price-prod span{
            padding:5px 15px;
            border-top-left-radius:15px;
            border-bottom-left-radius: 15px;
        }

        .btn-price-prod span:nth-child(1){
            background-color: var(--color-primary);
            color: var(--color-white);
        }
        .btn-price-prod span:nth-child(2){
            color: var(--color-black);
            font-size:12px;
            text-decoration: line-through;
            font-weight: 400;
        }
        .subtitle-nuevo{
            padding: 0px 50px;
        }

        /* Flechas de navegación */
        .products-swiper-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            /*background-color: var(--primaryhover);*/
            border-radius: 50%;
            color: var(--color-white);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .products-swiper-nav:hover {
            /*background-color: var(--primary);*/
            color: var(--color-white);
            transform: translateY(-50%) scale(1.1);
        }

        .products-swiper-nav.next {
            /*right: 10px;*/
            right: 30px;
            font-size:1.6rem;
        }

        .products-swiper-nav.prev {
            /*left: 10px;*/
            left: 30px;
            font-size:1.6rem;
        }

        .products-swiper-nav::after {
            content: '';
        }





        @media (max-width: 678px) {
            .products-container {
                padding: 0 60px;
            }
        }


        @media (max-width: 576px) {
            .products-container {
                padding: 0 40px;
            }
            .product-content{
                padding: 0.7rem;

            }
            .product-name {
                font-size: 15px;
            }
            .products-swiper-nav.next {
                right: 10px;
            }

            .products-swiper-nav.prev {
                left: 10px;
            }
        }

        @media (max-width: 400px) {
            .product-name{
                font-size: 13px;
            }
            .product-name-subtitle{
                font-size:11px;
            }
            .etiquetas-prod{
                font-size:11px;
            }
        }




/* ===== SECCIÓN: NUESTRAS MARCAS ===== */
.logos-container {
    margin: 0 auto;
    padding: 0 66px;
    position: relative;
}

.logos-swiper {
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 10px 0px;
    overflow: hidden;
}

.logos-wrapper {
    display: flex;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px 0px;
}

.logo-img {
    width: auto !important;
    height: auto !important;
    transition: all 0.3s ease;
    margin: auto;
    width: 330px;
}

.logo-item:hover .logo-img {
    transform: scale(1.05);
}

.logos-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logos-swiper-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background-color:var(--color-primary);
    color:var(--color-white);
}

.logos-swiper-nav.next { right: 10px; font-size: 1.6rem; }
.logos-swiper-nav.prev { left: 10px; font-size: 1.6rem; }
.logos-swiper-nav::after { content: ''; }

/* Responsive logos */
@media (max-width: 992px) { .logos-container { padding: 0 60px; } }
@media (max-width: 768px) {
    .logos-container { padding: 0 40px; }
    .logos-swiper { width: calc(100% - 20px); }
    .title-flash-reutilizable{font-size:35px;}
}
@media (max-width: 576px) {
    .logos-container { padding: 0 20px; }
    .logos-swiper { width: calc(100% - 80px); }
}
@media (max-width: 500px) {
    .title-flash-reutilizable{font-size:30px;}
}





/* ESTILOS PARA EL SLIDER DE CATEGORÍAS */
        .productosMasVendidosFlex{
            width:100%;
            display:flex;
            justify-content:center;
            gap:10px;margin-top:40px;
        }
        .pmv1{
            width:27%; display:flex;
            justify-content:center;
            align-items:end;
        }
         .pmv1 .pmvimg{
            margin-top:75px;
         }

        .categories-container {
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            width:70%;
        }


        .categories-swiper {
            width: calc(100% - 100px);
            margin: 0 auto;
            overflow: hidden;
        }

        .categories-wrapper {
            display: flex;
            align-items: left;
        }


          /* ESTILOS PARA LAS FLECHAS DE CATEGORÍAS */
        .categories-swiper-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: transparent;
            border-radius: 50%;
            color: var(--color-white);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid var(--primary);
            font-size:30px;
        }

        .categories-swiper-nav:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-50%) scale(1.1);
        }

        .categories-swiper-nav.next {
            right: 10px;
        }

        .categories-swiper-nav.prev {
            left: 10px;
        }

        .categories-swiper-nav::after {
            content: '';
        }

        .pmvimg{
            width:100%;
            display:flex;
            align-items:end;
            margin-left: -15px;
        }

        .pmvimg img{
            width:100%;
            display:block;
        }







.section-curve-double {
  position: relative;
  background: var(--color-tertiary-hover);
  height:820px;
  overflow: hidden;
}

.curve {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
}

.curve-top {
  top: 0;
}

.curve-bottom {
  bottom: 0; transform: scaleX(-1);
}

.curve-content {
  z-index: 2;
  color: white;
  padding: 100px 0px;
  padding-left:0px;
  text-align: center;
}




  .flexImgInfoContainerNosotros{
    display:flex;
    flex-wrap:wrap;
    gap:100px;
    justify-content:center;
    padding:0px 100px;
  }

  .flexImgInfoContainerNosotros .imgContainerNosotros{
    width:30%;
    height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
  }
    .flexImgInfoContainerNosotros .imgContainerNosotros img{
      width:100%;
    }

  .flexImgInfoContainerNosotros .infoNosotros{
    width:60%;
    height:auto;
  }


.flexTwoImages{
    display:flex;
    justify-content:space-between;
    gap:35px;
}

.flexTwoImages div{
    width:100%;
}


.flexTwoImages img{
    width:100%;
    display:block;
}

.flexThreeImages{
    margin-top:35px;
    display:flex;
    justify-content:space-between;
    gap:35px;
}

.flexThreeImages div{
    width:100%;
}


.flexThreeImages img{
    width:100%;
    display:block;
}









@media(max-width:1750px){
    .section-curve-double {
        height:750px;
    }
    .section-wave {
        height:750px;
    }
}

@media(max-width:1480px){
    .section-curve-double {
        height:670px;
    }
     .section-wave {
        height:650px;
    }
}

@media(max-width:1280px){
    .section-curve-double {
    height:650px;
    }

  .flexImgInfoContainerNosotros .imgContainerNosotros{
    width:30%;
  }

  .flexImgInfoContainerNosotros .infoNosotros{
    width:55%;
  }

}

@media(max-width:900px){
    .section-curve-double {
        height:970px;
    }

    .section-wave {
        height:600px;
    }

    .productosMasVendidosFlex{
        flex-wrap:wrap-reverse;
    }
    .pmv1,.categories-container{
        width:100%;
    }
    .pmvimg{
        display:flex;
        justify-content:center;
        align-items:center;
    }
     .pmvimg img{
        width:350px;
     }

    .flexImgInfoContainerNosotros .imgContainerNosotros{
        width:30%;
    }

    .flexImgInfoContainerNosotros .infoNosotros{
        width:52%;
    }

    .flexTwoImages,.flexThreeImages{
        flex-wrap: wrap;
    }
}




@media(max-width:850px){
     .section-curve-double {
        height:1100px;
    }

   .section-wave {
        height:700px;
    }

    .flexImgInfoContainerNosotros{
        flex-wrap:wrap-reverse;
    }

    .flexImgInfoContainerNosotros .imgContainerNosotros{
        width:100%;
    }

    .flexImgInfoContainerNosotros .infoNosotros{
        width:100%;
    }


}

@media(max-width:768px){
    .section-curve-double {
        height:1050px;
    }
     .section-wave {
        height:650px;
    }

   .flexImgInfoContainerNosotros{
        padding:0px;
    }
}


@media(max-width:700px){
    .section-curve-double {
        height:1000px;
    }
    .section-wave {
        height:600px;
    }
}


@media(max-width:576px){
    .section-wave {
        height:550px;
    }
    .wave-bottom {
        height: 200px;
    }

    .section-curve-double {
        height:980px;
    }
}




@media(max-width:480px){

   .section-curve-double {
        height:1100px;
    }
  .section-wave {
        height:700px;
    }

    .btn-price-prod span:nth-child(1){
        font-size:13px;
    }
}


@media(max-width:460px){

    .section-wave {
        height:650px;
    }

    .section-curve-double {
        height:1200px;
    }

    .pmvimg img{
        width:100%;
     }

     .categories-container{
        padding:0px;
     }


.logo-img {
    width:150px;
}
}



@media(max-width:425px){

    .section-curve-double {
        height:1100px;
    }

     .categories-swiper-nav {
        font-size:25px;
     }

}


@media(max-width:380px){
  .section-wave {
        height:600px;
    }
}

@media(max-width:360px){

    .section-curve-double {
        height:950px;
    }

}
