div.card.card-veiculo {
    transition: transform 0.2s ease-in-out !important;
    height: 100% !important;
    background-color: #2f4555 !important;
    border: none !important;
}

div.card.card-veiculo:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

div.card.card-veiculo .card-img-top {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

div.card.card-veiculo .card-body {
    background-color: #2f4555 !important;
    padding: 1.5rem !important;
}

div.card.card-veiculo .card-title {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

div.card.card-veiculo .price {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    color: #4CAF50 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    div.card.card-veiculo .card-title {
        font-size: 1rem !important;
    }
    
    div.card.card-veiculo .price {
        font-size: 1.1rem !important;
    }
    
    /* .car-details is not used, consider removing or updating if needed */
}

div.card.card-veiculo .car-specs {
    margin: 0.8rem 0 !important;
    background-color: #1e2f3d !important;
    padding: 15px !important;
    border-radius: 8px !important;
}

div.card.card-veiculo .spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #90CAF9 !important;
    margin-bottom: 8px !important;
}

div.card.card-veiculo .spec-item i,
div.card.card-veiculo .spec-item svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
}

div.card.card-veiculo .spec-item span {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #90CAF9 !important;
}

/* Responsividade */
@media (max-width: 576px) {
    div.card.card-veiculo .spec-item span {
        font-size: 0.8rem !important;
    }
}

div.card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    height: 100% !important;
}

div.card-link:hover {
    text-decoration: none !important;
    color: inherit !important;
}

div.card-link .card {
    transition: transform 0.2s ease-in-out !important, box-shadow 0.2s ease-in-out !important;
}

div.card-link:hover .card {
    transform: translateY(-5px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
