/* Estilos para o filtro em formato de pílulas */
.filter-pills-section {
    background-color: #f5f5f5;
    padding: 15px 20px 20px;
    margin-bottom: 30px;
}

.filter-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 10px;
}

.filter-pill {
    display: inline-block;
    padding: 6px 14px;
    background-color: #fff;
    color: #333;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    text-align: center;
    line-height: 1.2;
}

.filter-pill:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
}

.filter-pill.active {
    background-color: #333;
    color: white;
    border-color: #333;
}
