
    .carrusel-tarmex-contenedor {
        width: 100%;
        padding-top: 20px; 
        padding-bottom: 20px;
        /* Aplicamos el mismo degradado oscuro (0.5) que en la otra sección */
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2606/22/photo/fondo-be66.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* --- ESTA ES LA LÍNEA QUE OCULTA EL CARRUSEL EN CELULAR --- */
    @media (max-width: 768px) {
        .carrusel-tarmex-contenedor {
            display: none !important;
        }
    }
    /* ----------------------------------------------------------- */

    .swiper {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 0.3;
        transform: scale(0.8); 
    }

    .swiper-slide-active {
        opacity: 1;
        transform: scale(1.25);
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        border-radius: 40px; 
        display: block;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }
