.filtro-unidades {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filtro-unidades .campo {
    flex: 1;
    min-width: 250px;
}

.filtro-unidades select {
    width: 100%;
    height: 52px;
    border: none;
    border-bottom: 1px solid var(--e-global-color-7833347);
    background: transparent;
    font-family: var(--e-global-typography-6efaa2b-font-family), Sans-serif!important;
    font-weight: 300!important;
    font-size: var(--e-global-typography-9f8b2cd-font-size)!important;
    outline: none;
    color: var(--e-global-color-c4d6836)!important;
	padding: 0 10px;
}

.filtro-unidades select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-image: url("/wp-content/uploads/2026/07/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.filtro-unidades button {
    width: 140px;
    height: 50px;
    background: var(--e-global-color-7833347);
    color: #FFF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.filtro-unidades button:hover {
    opacity: .85;
}
#resultado-unidades{margin-top: 4rem;}

@media(max-width:768px) {
    .filtro-unidades {
        flex-direction: column;
    }

    .filtro-unidades .campo {
        width: 100%;
    }

    .filtro-unidades button {
        width: 100%;
    }

}