/* =========================================
   ESTILOS FLOTA VIP - CARRUSEL 3D INFINITO (DISEÑO ELEGANTE)
   ========================================= */

.fleet-slider-section {
    padding: 6rem 0;
    background-color: var(--bg-principal);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.fleet-slider-section h2 {
    color: var(--texto-principal);
    font-size: 2.5rem;
    text-align: center;
}

.fleet-slider-section p {
    color: var(--texto-secundario);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

/* Contenedor del Carrusel */
.fleet-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 60px 0;
}

.fleet-slider {
    position: relative;
    width: 100%;
    height: 550px; /* Altura ajustada para las tarjetas elegantes */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   TARJETAS DE VEHÍCULOS (Estilo Elegante Restaurado)
   ========================================= */
.vehicle-card-full {
    position: absolute;
    width: 360px; /* Ancho elegante original */
    background-color: var(--bg-secundario);
    border: 1px solid var(--borde-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

/* --- POSICIONES 3D DEL CARRUSEL --- */
.card-center {
    left: 50%;
    transform: translate(-50%, 0) scale(1.05);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1); /* Resplandor dorado en la caja central */
}

.card-left {
    left: 20%;
    transform: translate(-50%, 0) scale(0.85);
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
}

.card-right {
    left: 80%;
    transform: translate(-50%, 0) scale(0.85);
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
}

.card-hidden-left {
    left: -10%;
    transform: translate(-50%, 0) scale(0.6);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.card-hidden-right {
    left: 110%;
    transform: translate(-50%, 0) scale(0.6);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   ESTÉTICA INTERNA (Imágenes y Textos)
   ========================================= */
.card-gallery {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-secundario);
    border-bottom: 1px solid var(--borde-color);
}

.card-gallery img.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
    /* MAGIA AQUÍ: Sombra negra profunda + Resplandor Dorado Sutil a la silueta */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3)) drop-shadow(0 15px 20px rgba(0,0,0,0.8)) !important;
}

.card-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: var(--bg-secundario);
}

.card-details h3 {
    color: var(--acento-oro) !important;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specs-list {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--texto-secundario);
    list-style: none;
    padding: 0;
}

.specs-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specs-list li::before {
    content: "\f105"; /* Flechita FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--acento-oro);
}

/* BOTÓN VIP FANTASMA */
.card-details .btn {
    width: 100%;
    margin-top: auto;
    background-color: transparent;
    border: 2px solid var(--borde-color);
    color: var(--texto-principal);
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.card-details .btn:hover {
    background-color: var(--acento-oro);
    border-color: var(--acento-oro);
    color: #000 !important;
    transform: translateY(-2px);
}

/* =========================================
   FLECHAS DE NAVEGACIÓN
   ========================================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--acento-oro);
    color: var(--acento-oro);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--acento-oro);
    color: #000;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

/* =========================================
   RESPONSIVO (MÓVIL)
   ========================================= */
@media (max-width: 992px) {
    .fleet-slider {
        height: 600px; 
    }
    
    .vehicle-card-full {
        width: 85%;
        max-width: 360px;
    }
    
    .card-center {
        transform: translate(-50%, 0) scale(1);
    }
    
    .card-left { left: 0%; opacity: 0; }
    .card-right { left: 100%; opacity: 0; }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}