.main-content {
    max-width: 1350px;
    width: 95%;
    margin: 0 auto;
}

.vehicle-listing {
    width: 100%;
}

.listing-page {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.box-body {
    padding: 1.5rem;
}

.vehicle-card {
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.vehicle-card .col-md-4 {
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.vehicle-card .col-md-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.vehicle-card .box-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-tag {
    background: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.location {
    color: #6c757d;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-button {
    height: 50px;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-button:hover {
    background-color: #f8f9fa;
    border-color: #ffc107;
}

.filter-button i {
    margin-right: 8px;
}

/* Modal de filtros */
.filter-modal .modal-content {
    border-radius: 12px;
    border: none;
}

.filter-modal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
}

.filter-modal .modal-title {
    color: #2c3e50;
    font-weight: 600;
}

.filter-modal .modal-body {
    padding: 1.5rem;
}

.filter-modal .filter-section {
    margin-bottom: 1.5rem;
}

.filter-modal .filter-section h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.filter-modal .form-check {
    margin-bottom: 0.5rem;
}

.filter-modal .form-check-label {
    color: #6c757d;
    cursor: pointer;
}

.filter-modal .form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.filter-modal .modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1.5rem;
}

.btn-apply-filters {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 500;
    padding: 0.75rem 2rem;
}

.btn-apply-filters:hover {
    background-color: #ffb300;
    border-color: #ffb300;
}

.btn-reset-filters {
    border: 1px solid #dee2e6;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 2rem;
}

.btn-reset-filters:hover {
    background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicle-card .col-md-4 {
        min-height: 200px;
        max-height: 200px;
    }

    .vehicle-card .col-md-4 img {
        border-radius: 8px 8px 0 0;
    }
}
