        .swiper-container {
            width: 100%;
            height: 100vh;
            max-height:550px;
            overflow: hidden;
        }

        .slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .containerTotal{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .overlaySlider {
            width:100%;
            height: 100%;
            max-width:1200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px 60px;
            gap: 5%;
        }



        .content-left {
            flex: 1;
            color: var(--white);
        }

        .content-left h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .content-left p {
            font-size: 1.8rem;
            line-height: 1.3;
            max-width:95%;
        }

        .content-right {
            flex: 1;
            display: flex;
            height: 100%;
            flex-direction: column;
            justify-content: end;
            align-items: center;
            margin-left:50px;
        }

        .white-card {
            background-color: var(--white);
            padding:3.5rem;
            padding-top:3.7rem;
            width: 100%;
            max-width:300px;
            border-radius: 8px 8px 0 0;
            position: relative;
        }

        .product-image-containerPrin {
            width: 100%;
            height:auto;
            display:flex;
            justify-content:center;
            align-items:center;
            position:absolute;
            top:-230px;
            left:0;
        }

        .product-image {
            width: 100%;
            height: auto;
        }

        .product-info {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .product-info p {
            font-size: 1.2rem;
            line-height: 1.5;
        }

        .product-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            font-weight:500;
            transition: background-color 0.3s;
            text-align: center;
            width: 100%;
        }

        .product-button:hover {
            background-color: var(--primaryhover);
        }

        /* Swiper navigation styles */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--white);
            background-color: var(--primaryhover);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;  z-index: 10;
        }

        .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
            content: '';
        }


/* Animación inicial */
.content-left,
.content-right {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Animación cuando el slide está activo */
.swiper-slide-active .content-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .content-right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Posición inicial antes de la animación */
.content-left {
    transform: translateX(-50px);
}

.content-right {
    transform: translateY(50px);
}


        /* Responsive adjustments */
        @media (max-width: 768px) {

            .content-right{
                margin-left:0px;
            }

            .swiper-container {
                max-height:600px;
            }

             .product-button {
                font-size:1rem;
             }

            .overlaySlider {
                flex-direction: column;
                padding: 2rem;
                padding-bottom:0rem;
                justify-content: center;
                gap: 2rem;
            }

            .content-left {
                text-align: center;
            }

            .content-left p {
                max-width: 100%;
                line-height: 1.2;
                font-size:1.3rem;
            }

            .content-right {
                align-items: center;
            }

            .content-left h1 {
                font-size: 2.3rem;
                line-height: 1.2;
            }
        }



      /* Ajustes específicos para el slider de categorías */
         /* ESTILOS PARA EL SLIDER DE CATEGORÍAS */
        .categories-section {
            width: 100%;
            position: relative;
        }

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


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

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

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            width: 100%;
        }

        .category-circle {
            width: 160px;
            height: 160px;
            background-color: #FAFAFA;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow:hidden;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .category-img{
            mix-blend-mode: multiply;
        }

        .category-name {
            color: var(--black);
            text-align: center;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0 5px;
            line-height: 1.5;
            min-height: 2.5em;
            overflow: hidden;
        }

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

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

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

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

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



        /* Ajustes responsive para el nuevo diseño */
        @media (max-width: 1200px) {
            .category-circle {
                width: 120px; /* Reducido de 110px */
                height: 120px; /* Reducido de 110px */
                padding: 15px; /* Reducido de 20px */
            }
        }

        @media (max-width: 992px) {
            .category-name {
                font-size: 0.7rem; /* Reducido de 0.8rem */
                min-height: 2.7em;
            }
        }

        @media (max-width: 768px) {
            .category-circle {
                padding: 12px; /* Reducido de 15px */
            }

            .category-name {
                font-size: 0.65rem;
                min-height:3em;
            }
        }
         /* Ajustes específicos para móvil (576px o menos) */
        @media (max-width: 576px) {
            .categories-container{
                padding:0px 20px;
            }
            .categories-swiper {
                width: calc(100% - 60px); /* Más espacio para flechas */
            }

            .category-circle {
                width: 115px;
                height: 115px;
            }

            .category-name {
                font-size: 0.7rem; /* Tamaño más legible */
                min-height: 3em;
                overflow: hidden;
                margin-top: 5px;
            }

            .categories-swiper-nav {
                width: 40px;
                height: 40px;
            }


            /* Asegurar que solo se muestren 2 slides */
            .categories-swiper .swiper-slide {
                width: calc(50% - 10px) !important;
                margin-right: 10px;
            }


            .categories-swiper .swiper-slide{
                margin-left:5px;
            }
        }



        @media (max-width:355px) {
             .category-circle {
                width: 105px;
                height: 105px;
            }
        }










        /* Nuevos estilos para el slider de productos */
        .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;
        }

        .product-item {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

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

        .products-container .product-image-container{
            height: auto;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fbfbfb;
        }

        .products-container .product-image {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .products-container .product-item:hover .product-image{
            transform: scale(1.1);
        }

        .products-container .product-content {
            padding: 1.5rem;
            padding-bottom:5px;
            flex-grow: 1;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .products-container .product-name {
            font-size: 0.9rem;
            color: var(--black);
            font-weight: 500;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            text-align: center;
        }


        /* 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(--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(--white);
            transform: translateY(-50%) scale(1.1);
        }

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

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

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



        /*Flex botones y stock*/
          .product-gray-box {
            display:flex;
            flex-direction: column;
            padding:20px;
            padding-top:0px;
        }

        .stock-info {
            display: flex;
            width:100%;
            justify-content:center;
            flex-wrap: wrap;
            gap:10px;
            margin-bottom: 8px;
            padding-bottom:5px;
        }

        .stock-label{
            font-size: 12px;
            color: var(--white);
            text-transform: uppercase;
            background-color:var(--primaryhover);
            padding:2px 15px;
            border-radius:5px;
            padding-top:3px;
        }

        .stock-code {
            font-size: 12px;
            background-color: var(--grayextralight);
            border: 1px solid #DFDDDD;
            color: var(--black);
            padding:2px 7px;
            padding-top:3px;
            border-radius:5px;
        }

        .stock-code span{
            color:var(--primary);
        }

        .actions-container {
            display: flex;
            align-items: center;
            gap:10px;
        }

        .details-button {
            padding:10px 10px;
            background-color: var(--grayextralight);
            border: 1px solid #DFDDDD;
            color: var(--black);
            font-size: 16px;
            font-weight:600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            flex-grow: 1;
            text-align: center;
        }

        .details-button:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .whatsapp-icon {
            padding:6px 15px;
            border-radius:4px;
            background-color:#27A11A;
            color:var(--white);
            font-size:22px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .whatsapp-icon span{
            display:none;
        }


        .whatsapp-icon:hover {
            background-color:#1dab0d;
        }

        /* Responsive */

        @media (max-width:1185px){
            .details-button{
                padding: 10px 7px;
                font-size: 14px;
            }
        }


        @media (max-width:1148px){
           .stock-label{
                padding:2px 10px;
                font-size: 10px;
           }
           .stock-code{
                padding:2px 10px;
                font-size: 10px;
           }
        }


        @media (max-width:1115px){
            .whatsapp-icon{
                padding: 10px 12px;
                font-size: 15px;
            }
        }

         @media (max-width:1060px){
            .details-button{
                font-size: 12px;
            }
        }


        @media (max-width: 992px) {
            .product-content{
                padding: 1.3rem;
            }
        }



        @media (max-width:834px){
           .stock-label{
                padding:2px 6px;
                padding-top:4px;
                font-size: 8px;
           }
           .stock-code{
                padding:2px 8px;
                font-size: 10px;
           }
        }



        @media (max-width:800px){
            .whatsapp-icon{
                padding:10px;
                font-size: 14px;
            }
        }


         @media (max-width:783px){
            .details-button{
                font-size:11px;
            }
        }




        @media (max-width: 768px) {
            .products-swiper {
                width: calc(100% - 20px);
            }

            .product-content {
                padding: 1.2rem;
            }





            .whatsapp-icon {
                padding:6px 15px;
                font-size:22px;
            }

            .details-button {
                padding:10px 10px;
                font-size: 16px;
            }


             .stock-label{
                padding:2px 8px;
                padding-top:3px;
                font-size: 10px;
             }

             .stock-code{
                padding:2px 8px;
                font-size: 11px;
             }

        }


        @media (max-width: 678px) {
            .whatsapp-icon {
                font-size:20px;
            }

            .details-button {
                font-size: 14px;
            }
        }


        @media (max-width: 650px) {
            .whatsapp-icon {
                font-size:18px;
            }

            .details-button {
                font-size: 13px;
            }
        }


        @media (max-width: 630px) {
            .whatsapp-icon {
                padding:6px 10px;
                font-size:16px;
            }

            .details-button {
                font-size: 12px;
            }
        }



        @media (max-width: 605px) {
            .stock-info{gap:5px;}
            .stock-label{
                padding:2px 6px;
                padding-top:5px;
                font-size:8px;
             }

             .stock-code{
                padding:2px 8px;
                font-size: 10px;
             }
        }


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

            .products-swiper {
                width: calc(100% - 80px);
            }

            .products-swiper-nav {
                width: 40px;
                height: 40px;
            }

            .products-container .product-content{
                padding: 0.7rem;

            }
            .products-container .product-name {
                font-size: 0.7rem;
            }

        }


          @media (max-width:535px) {
            .product-gray-box{
                padding:12px;
                padding-top:0px;
            }

            .actions-container{
                gap:5px;
            }

            .whatsapp-icon {
                padding:6px 10px;
                font-size:14px;
            }

            .details-button {
                padding:8px 8px;
                font-size:11px;
            }

            .stock-label{
                padding:2px 6px;
                padding-top:4px;
                font-size:7.5px;
             }
             .stock-code{
                font-size:8px;
                padding-top:3px;
             }
        }



          @media (max-width:466px) {
             .whatsapp-icon {
                padding:4px 8px;
            }

            .details-button {
                padding:5px 8px;
            }

            .stock-code{
                width:auto;text-align:center;
            }

            .products-container .product-name{
                font-size:0.55rem;margin-bottom: 0;
            }

          }


          @media (max-width:458px) {
             .whatsapp-icon {
                 font-size:12px;
            }

            .details-button {
                font-size:10px;
            }

          }



          @media (max-width:440px) {
            .actions-container{
                flex-wrap:wrap;
            }
            .product-gray-box .whatsapp-icon{
                width:100%;
                display:flex;
                align-items:center;
                gap:5px;
                justify-content:center;
            }

            .product-gray-box .whatsapp-icon span{
                display:flex;
            }

            .product-gray-box.stock-code{
                font-size:7px;
            }

            .products-swiper{
                width: calc(100% - 70px);
            }
          }



        @media (max-width:369px) {
            .details-button{
                font-size:12px;
                padding:10px;
            }


            .whatsapp-icon{
                width:auto;
                font-size:15px;
                padding:12px;
            }

            .whatsapp-icon span{
                display:none;
            }

            .stock-label{font-size:9px;padding-top:5px;}

            .stock-code{
                width:auto;font-size:10px;
            }
        }










        /*Logos*/


        .logos-container {
            margin: 0 auto;
            padding: 0 80px;
            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;
            border-radius:5px;
            overflow: hidden;
            background-color: var(--white);
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

        .logo-img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            transition: all 0.3s ease;
        }

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

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

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

        .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 */
        @media (max-width: 992px) {
            .logos-container {
                padding: 0 60px;
            }

        }

        @media (max-width: 768px) {
            .logos-container {
                padding: 0 40px;
            }

            .logos-swiper {
                width: calc(100% - 20px);
            }

        }

        @media (max-width: 576px) {
            .logos-container {
                padding: 0 20px;
            }

            .logos-swiper {
                width: calc(100% - 80px);
            }


        }
