		/* Forzar que el contenedor no corte el logo cuando crezca */
		.carousel-center-active-item .owl-stage-outer {
		    padding-top: 20px !important;
		    padding-bottom: 20px !important;
		}

		/* Estado normal de todos los logos (pequeños) */
		.carousel-center-active-item .owl-item {
		    transition: all .3s ease-in-out !important;
		    transform: scale(0.7) !important;
		    /* Más pequeños los de los lados */
		    opacity: 0.4 !important;
		    filter: grayscale(100%);
		}

		/* EL QUE ESTÁ EN EL CENTRO (Aumento real) */
		.carousel-center-active-item .owl-item.center {
		    transform: scale(1.3) !important;
		    /* Un 30% más grande */
		    opacity: 1 !important;
		    filter: grayscale(0%);
		}

		/* Alineación para que no bailen arriba y abajo */
		.carousel-center-active-item .owl-item>div {
		    display: flex !important;
		    align-items: center !important;
		    justify-content: center !important;
		    height: 120px !important;
		}