.asm-veiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.asm-veiculo-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s;
}

.asm-veiculo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.asm-card-image {
    position: relative;
    height: 200px;
}

.asm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asm-badge-blindado {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.asm-card-content {
    padding: 15px;
}

.asm-card-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.asm-card-content h3 a {
    text-decoration: none;
    color: #333;
}

.asm-card-price {
    font-size: 20px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 15px;
}

.asm-view-btn {
    display: block;
    text-align: center;
    background: #3498db;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.asm-view-btn:hover {
    background: #2980b9;
}

/* Filtros */
.asm-filters-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
}

.asm-filter-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.asm-filter-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.asm-clear-btn {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* Single Page */
.asm-single-veiculo {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .asm-single-veiculo {
        flex-direction: row;
    }
    .asm-gallery-wrapper {
        width: 60%;
    }
    .asm-info-wrapper {
        width: 40%;
    }
}

.asm-main-slider img {
    width: 100%;
    border-radius: 8px;
}

.asm-nav-slider {
    margin-top: 10px;
}

.asm-nav-item {
    padding: 0 5px;
    cursor: pointer;
}

.asm-nav-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.6;
}

.asm-nav-item.slick-current img {
    opacity: 1;
    border: 2px solid #3498db;
}

.asm-single-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: bold;
}

.asm-specs {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.asm-spec-item {
    margin-bottom: 5px;
}

.asm-acessorios ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.asm-acessorios li:before {
    content: "✓";
    color: #27ae60;
    margin-right: 10px;
    font-weight: bold;
}
