/* HERO */

.vehicle-hero {
    background: #1f2933;
    padding: 80px 16px;
    padding-top: 60px;
}

.vehicle-hero-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vehicle-hero-image img {
    width: 100%;
    max-width: 520px;
}

.vehicle-hero-text h1 {
    color: #e5e7eb;
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.vehicle-subtitle {
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* TÓPICOS */

.vehicle-topics {
    list-style: none;
    padding: 0;
}

.vehicle-topics li {
    color: #e5e7eb;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.vehicle-topics li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-size: 1.3rem;
}

/* LISTA DE VEÍCULOS - CARDS HORIZONTAIS */

.vehicle-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vehicle-link .vehicle-item {
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* .vehicle-link:hover .vehicle-item {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 32px rgba(0,0,0,0.6);
} */


.vehicle-details {
    background: #f4f6f8;
    padding: 60px 24px 100px;
    display: flex;
    justify-content: center;
}

.vehicle-list {
    width: 65%;
    max-width: 1200px;
}

.vehicle-list-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vehicle-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 26px;
    display: flex;
    align-items: center;
    gap: 45px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

/* .vehicle-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
} */

.vehicle-thumb {
    flex-shrink: 0;
    width: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-thumb img {
    width: 100%;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
}

.vehicle-info h3 {
    color: #1f2933;
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.vehicle-info p {
    color: #4b5563;
    font-size: .95rem;
    line-height: 1.5;
}

.vehicle-hero-image.mobile {
    display: none;
}

.vehicle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #facc15b0, #eab208c4);
    color: #1f2933;
    padding: 10px 22px;
    border-radius: 8px;
    /* margin: 0 auto; */
    margin-top: 20px;
    width: fit-content;

    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.178);
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.vehicle-btn:hover {
    filter: brightness(1.02);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
}

.vehicle-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.vehicle-thumb-mobile {
    display: none;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .vehicle-hero-text h1 {
        margin-bottom: 25px;
    }

    .vehicle-thumb {
        display: none;
    }

    .vehicle-thumb-mobile {
        display: block;
        flex-shrink: 0;
        width: 245px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .vehicle-thumb-mobile img {
        width: 80%;
    }

    .vehicle-hero {
        padding-top: 50px;
    }

    .vehicle-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vehicle-hero-image {
        display: none;
    }

    .vehicle-hero-image.mobile {
        display: unset;
    }

    .vehicle-hero-image.mobile img {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .vehicle-topics li {
        text-align: left;
    }

    .vehicle-list {
        width: 95%;
    }

    .vehicle-details {
        padding: 50px 16px 80px;
    }

    .vehicle-item {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .vehicle-thumb {
        width: 100%;
    }

    .vehicle-thumb img {
        max-width: 250px;
    }

    .vehicle-btn {
        margin: 0 auto;
        margin-top: 20px;
    }

}


/* WIDESCREEN */

@media (min-width: 1200px) {
    .vehicle-hero {
        padding: 80px 0;
    }
}