/* ==========================================================================
   MarleyTur - Stylesheet for Vehicles / Veículos
   ========================================================================== */

.vehicles-hero {
    padding: 130px 0 50px 0;
    text-align: center;
}

.vehicles-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.vehicles-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
}

/* Vehicle Showcase Card */
.vehicle-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 45px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(34, 197, 94, 0.15);
}

.vehicle-img-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-img {
    transform: scale(1.05);
}

.vehicle-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.vehicle-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.vehicle-header h3 {
    font-size: 1.85rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.vehicle-subtitle {
    color: #38bdf8;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.vehicle-desc {
    color: #cbd5e1;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Fleet Quality Banner */
.fleet-guarantee-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 45px 35px;
    margin: 40px 0 60px 0;
    backdrop-filter: blur(10px);
}

.guarantee-card {
    text-align: center;
    padding: 20px;
}

.guarantee-icon {
    width: 65px;
    height: 65px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 auto 20px auto;
}

.guarantee-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .vehicle-img-container {
        min-height: 280px;
        height: 280px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}
