.car-title {
    font-size: 1.8rem;
    font-weight: 700;
}
.car-price {
    font-size: 1.5rem;
    color: #198754;
    font-weight: 600;
}
.badge-custom {
    font-size: 0.9rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    cursor: pointer;
}
#imagemPrincipal {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.thumb-img {
    object-fit: cover;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.thumb-img:hover {
    transform: scale(1.05);
    border: 2px solid #198754;
}
.card-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.animate-titulo {
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease forwards;
    color: #fff !important;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


