/* Estilos para el Carrusel de Marcas */
.carrusel-marcas-wrapper {
    position: relative;
    max-width: 100%;
}

.carrusel-marcas-track-container {
    width: 100%;
    margin: 0 auto;
}

.carrusel-marcas-track {
    will-change: transform;
}

/* Responsividad: Control de anchura de los items (2 en móvil, 3 en tablet, 4 en desktop) */
.carrusel-marca-item {
    width: 50%;
}

@media (min-width: 640px) {
    .carrusel-marca-item {
        width: 33.333333%;
    }
}

@media (min-width: 1024px) {
    .carrusel-marca-item {
        width: 25%;
    }
}

.carrusel-btn {
    cursor: pointer;
    background: #fff;
    border: 2px solid #F7942E;
    color: #F7942E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(247, 148, 46, 0.1);
}

.carrusel-btn:hover {
    background: #F7942E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(247, 148, 46, 0.3);
}

.carrusel-btn .material-symbols-outlined {
    font-size: 24px;
    font-weight: bold;
}

.brand-logo,
.client-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}