        :root {
            --primary-color: #0056b3;
            --secondary-color: #f8f9fa;
            --accent-color: #ffc107;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --success-color: #28a745;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }
        
        .header-section {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/flota/header-bg.jpg') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
        }
        
        .header-title {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 2.5rem;
        }
        
        .header-subtitle {
            font-weight: 300;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .page-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }



/* Por esto */
.vehicle-card-flota {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

/* Añadir el efecto hover que solo cambia la sombra */
.vehicle-card-flota:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.35);
}
        
        .vehicle-header {
            padding: 15px;
            background-color: var(--primary-color);
            color: white;
        }
        
        .vehicle-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .vehicle-subtitle {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 5px;
            color: white;
        }
        
        .vehicle-badge {
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
            display: inline-block;
        }
        
        .vehicle-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .vehicle-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
    
        }
        
        .vehicle-card:hover .vehicle-image {
       

}  
       
        
        .specs-container {
            padding: 15px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
        }
        
        .specs-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .spec-item {
            text-align: center;
            position: relative;
        }
        
        .spec-icon {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .spec-label {
            font-size: 0.7rem;
            color: #666;
            margin-bottom: 0;
        }
        
        .spec-value {
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .specs-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        
        .specs-badge {
            background-color: white;
            border: 1px solid #ddd;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .vehicle-details {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 8px;
            font-size: 0.85rem;
        }
        
        .detail-icon {
            width: 20px;
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        .btn-more {
            margin-top: auto;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px;
            font-weight: 500;
      
            text-align: center;
            text-decoration: none;
            display: block;
            margin-top: 15px;
        }
        
        .btn-more:hover {
            background-color: #004494;
            color: white;
        }
        
        /* Modal */
        .modal-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .modal-specs {
            margin: 20px 0;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .modal-img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-title {
                font-size: 2rem;
            }
            
            .vehicle-image-container {
                height: 180px;
            }
            
            .specs-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }