/* 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;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}