/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 19 2026 | 16:02:38 */
/* SOLO PARA IPHONE / SAFARI */

.elementor-image-carousel.swiper-wrapper {
		max-height:95px;
	}

@media (max-width: 767px) {
	.elementor-image-carousel.swiper-wrapper {
		max-height:90px;
	}
}
	
@supports (-webkit-hyphens:none) {

        
        /* 1. Atacamos el widget completo para que no tenga altura de más */
        .elementor-widget-image-carousel, 
        .elementor-widget-ucaddon_logo_marquee {
            margin-top: 0px !important;    /* Ajuste de margen superior negativo */
            margin-bottom: 0px !important; /* Ajuste de margen inferior negativo */
            height: auto !important;
            min-height: 0 !important;
        }

        /* 2. Eliminamos los rellenos internos de los contenedores de Elementor */
        .elementor-widget-container,
        .elementor-image-carousel-wrapper,
        .swiper-container {
            padding: 0 !important;
            margin: 0 !important;
        }

        /* 3. Forzamos que la columna no separe los elementos */
        .elementor-widget-wrap {
            gap: 0px !important;
            padding: 0 !important;
            display: flex !important;
            flex-direction: column !important;
        }

        /* 4. Quitamos espacio muerto en las imágenes y figuras */
        .elementor-image-carousel figure {
            margin: 0 !important;
            padding: 0 !important;
            line-height: 0 !important;
        }

        .elementor-image-carousel .swiper-slide img {
            max-height: 90px !important; /* Controlamos la altura para que no empuje el contenedor */
            width: auto !important;
            margin: 0 auto !important;
        }
    }

