    /* Fondo degradado corporativo */
.brand-carousel-bg {
    background: linear-gradient(90deg, #eef2f7, #ffffff);
}

/* Título del carrusel */
.carousel-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb; /* azul corporativo */
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

/* Tarjetas de logo */
.brand-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

/* efecto hover */
.brand-card:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Imagen de logo */
.brand-logo {
    max-height: 80px;
    object-fit: contain;
    max-width: 100%;
}

/* Fade suave en cambio de slide */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Ajustes para móviles */
@media (max-width: 767.98px) {
    .brand-card {
        height: 100px;
        padding: 16px;
    }

    .brand-logo {
        max-height: 70px;
    }
}
