/* FILTROS */
.filtros-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 2rem;
    form{
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
}

.filtro-bloque label {
    font-weight: 600;
}

.filtro-bloque select {
    color: white;
    border: none;
    padding: .3rem;
    border-radius: .3rem;
    font-weight: 600;
    background-color: #00a541;
    width: 7rem;
}

.filtro-bloque button {
    font-weight: 600;
    border: none;
    background-color: #00a541;
    color: white;
    padding: .5rem 1rem;
    border-radius: .3rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .filtros-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }
    form{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }
}