/* ===== SECCIÓN DE MARCAS CON CARRUSEL ===== */
.brands-section {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

.brands-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #002147;
}

.brands-section p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #555;
}

/* Carrusel */
.brands-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 50px;
    animation: scrollBrands 20s linear infinite;
}

.brand {
    flex: 0 0 auto;
    width: 150px;
    transition: transform 0.3s;
}

.brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand:hover {
    transform: scale(1.1);
}

/* Animación de scroll infinito */
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsivo */
@media (max-width: 992px) {
    .carousel-track {
        gap: 30px;
    }
    .brand {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .carousel-track {
        gap: 20px;
    }
    .brand {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 60px 10px;
    }
    .brand {
        width: 80px;
    }
}
