.classificados-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
}

.search-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.anuncio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.anuncio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.anuncio-image {
    height: 250px;
    background: #f3f4f6;
    background-size: cover;
    background-position: center;
    position: relative;
}

.anuncio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-novo {
    background: #10b981;
    color: white;
}

.badge-usado {
    background: #f59e0b;
    color: white;
}

.anuncio-body {
    padding: 20px;
}

.anuncio-preco {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.filtros-sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}