#filtros .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin: 0 0 1.25rem 0;
}
#filtros .section-header .titulo {
    color: rgba(10, 29, 55, 1);
    font-size: clamp(2rem, 3vw, 3.63rem);
    font-weight: 700;
    line-height: normal;
    
    text-align: left;
    text-transform: uppercase;
    margin: 0;
}
#filtros .section-header .resultados {
    color: rgba(51, 51, 51, 1);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    margin: 0;
}

#filtros .form-filtros {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

#filtros .filter-group {
    display: flex;
    align-items: center;
    gap: 0.94rem;
}

#filtros .filter-group label {
    color: rgba(51, 51, 51, 1);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}

#filtros .select-wrapper {
    position: relative;
    width: clamp(12rem, 3vw, 17.94rem);
}

#filtros select {
    cursor: pointer;
}
#filtros select,
#filtros .search-group input {
    display: block;
    width: 100%;
    height: 3.81rem;
    
    padding: 1.25rem 1.5rem;
    background: rgba(229, 136, 92, 0.1);
    border-radius: 0.75rem;
    
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    transition: all .25s cubic-bezier(.4,0,.2,1);
}
#filtros select:hover,
#filtros .search-group input:hover {
    box-shadow: 0 0 0 1px #e5885c;
}
#filtros select:focus,
#filtros .search-group input:focus,
#filtros .search-group input:not(:placeholder-shown) {
    box-shadow: 0 0 0 2px #e5885c;
}

#filtros .select-wrapper::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 0.625rem;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%236B8470' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

#filtros .search-group {
    flex-grow: 1;
    display: flex;
    gap: 0.63rem;
}

/* #filtros .search-group input {
    background-color: #EFEDE6;
    color: #999;
    padding-right: 1.25rem;
    width: 100%;
} */

#filtros .search-group button {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 3.81rem;
    min-width: 3.81rem;
    height: 3.81rem;
    min-height: 3.81rem;
    
    padding: 1.25rem;
    background-color: #e5885c;
    border: none;
    border-radius: 0.75rem;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
#filtros .search-group button:hover {
    background: #6e8c78;
    color: #fff;
    transform: scale(1.035);
    box-shadow: 0 0 0px 3px #6e8c7850;
}
#filtros .search-group button:active {
    box-shadow: none;
    transform: scale(1);
    filter: brightness(.8);
}
#filtros .search-group button svg {
    display: block;
    stroke: #fff;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    #filtros .form-filtros {
        flex-direction: column;
        align-items: stretch;
    }
    
    #filtros .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #filtros .select-wrapper {
        width: 100%;
    }
}