/**
 * Club KAIA - Marcas de Renta de Vehículos
 * Carrusel infinito con animación suave
 * ============================================ */

/* ============================================
   SECCIÓN DE MARCAS
   ============================================ */

.marcas-vehiculos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.marcas-vehiculos-section .section-header {
    margin-bottom: 60px;
}

/* ============================================
   CONTENEDOR DEL CARRUSEL
   ============================================ */

.marcas-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 0;
}

.marcas-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ============================================
   TRACK DEL CARRUSEL - ANIMACIÓN INFINITA
   ============================================ */

.marcas-track {
    display: flex;
    animation: deslizarMarcas 30s linear infinite;
    width: max-content;
}

@keyframes deslizarMarcas {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausa la animación al pasar el mouse */
.marcas-carousel:hover .marcas-track {
    animation-play-state: paused;
}

/* ============================================
   IMAGEN DE MARCAS
   ============================================ */

.marcas-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    padding: 0 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.marcas-carousel:hover .marcas-image {
    transform: scale(1.05);
}

/* Duplicar la imagen para efecto infinito */
.marcas-track {
    width: 200%;
}

.marcas-track::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    background: inherit;
}

/* ============================================
   GRADIENTES DE DESVANECIMIENTO (OPCIONAL)
   ============================================ */

.marcas-carousel::before,
.marcas-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marcas-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.marcas-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 768px) {
    .marcas-vehiculos-section {
        padding: 60px 0;
    }

    .marcas-vehiculos-section .section-header {
        margin-bottom: 40px;
    }

    .marcas-carousel-wrapper {
        padding: 30px 0;
    }

    .marcas-image {
        height: 80px;
        padding: 0 30px;
    }

    .marcas-carousel::before,
    .marcas-carousel::after {
        width: 60px;
    }

    @keyframes deslizarMarcas {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* ============================================
   RESPONSIVE - MÓVIL
   ============================================ */

@media (max-width: 480px) {
    .marcas-vehiculos-section {
        padding: 50px 0;
    }

    .marcas-vehiculos-section .section-header {
        margin-bottom: 30px;
    }

    .marcas-carousel-wrapper {
        padding: 25px 0;
        border-radius: 12px;
    }

    .marcas-image {
        height: 60px;
        padding: 0 20px;
    }

    .marcas-carousel::before,
    .marcas-carousel::after {
        width: 40px;
    }

    .marcas-vehiculos-section .section-title {
        font-size: 1.5rem;
    }

    .marcas-vehiculos-section .section-subtitle {
        font-size: 0.9rem;
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .marcas-track {
        animation: none;
        transform: translateX(0);
    }

    .marcas-image {
        transform: none;
    }
}

/* ============================================
   IMPRESIÓN
   ============================================ */

@media print {
    .marcas-vehiculos-section {
        page-break-inside: avoid;
    }

    .marcas-track {
        animation: none;
    }
}

/* ============================================
   TEMAS OSCUROS (OPCIONAL)
   ============================================ */

@media (prefers-color-scheme: dark) {
    .marcas-vehiculos-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    }

    .marcas-carousel-wrapper {
        background: #2d2d44;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .marcas-carousel::before {
        background: linear-gradient(to right, rgba(45, 45, 68, 1), rgba(45, 45, 68, 0));
    }

    .marcas-carousel::after {
        background: linear-gradient(to left, rgba(45, 45, 68, 1), rgba(45, 45, 68, 0));
    }
}
