

.filtro-barra {
    width: 100%;;
    padding: 0;
    margin-bottom: 30px;
}

.filter {
    display: flex;
    align-items: flex-start;
    gap: 0;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
}

.filter > div {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    border-right: 1px solid #e6e6e6;
    padding: 0 20px;
    height: 60px;
}

.filter > div:first-child {
    border-left: none;
}
.filter > div:last-child {
    border-right: none;
}

.filter-prefixo {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #B3B3B3;
    white-space: nowrap;
    line-height: 1;
}

.filter-wrapper-custom {
    border-left: none;
    padding-left: 0;
}

.filter-search-campo {
    display: flex;
    align-items: center;
    height: 60px;
}

.filter-search-campo svg {
    position: static;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    opacity: 1;
    color: #A8A8A8;
    pointer-events: none;
    transition: color .3s ease;
}

.filter-search-campo:focus-within svg {
    color: #0a2540;
}

.filter-search input {
    flex: 1;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    height: 60px;
    padding: 0 0 0 14px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000;
    text-transform: uppercase;
}

.filter-search input::placeholder {
    color: #A8A8A8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-search input:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
}

.filtro-select-custom {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    height: 54px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.filtro-select-custom .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}

.filtro-select-custom:hover .selected,
.filtro-select-custom .selected:hover {
    color: #635bff;
    transition: all 0.2s ease;
}

.filtro-select-custom .selected::after {
    content: none;
}

.filtro-select-custom .selected svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    transition: transform .3s ease;
}

.filtro-select-custom.open .selected svg {
    transform: rotate(180deg);
}

.filtro-select-custom .options {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: calc(100% + 14px);
    width: 100%;
    min-width: 220px;
    background-color: #ffffff;
    border: 1px solid #EAEAEA;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease;
    z-index: 100;
}

.filtro-select-custom.open .options {
    max-height: 220px;
    opacity: 1;
    overflow-y: auto;
}

.filtro-select-custom .options li {
    padding: 14px 18px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #425466;
    border-bottom: 1px solid #F2F2F2;
    transition: color .2s ease, padding-left .2s ease;
}

.filtro-select-custom .options li:last-child {
    border-bottom: none;
}

.filtro-select-custom .options li:hover {
    color: #635bff;
    padding-left: 22px;
}

@media (max-width: 639px) {
    .filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 0;
    }

.filter-search {
    grid-column: 1 / -1;
}
.filter > div:first-child {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
}

.filtro-select-custom .options {
    min-width: 0;
}

.filtro-select-custom .options li {
    padding: 11px 13px;
}

.filter > div {
    height: 50px;
    padding: 0 15px;
}

    .filter-search input {
        font-size: 12px !important;
        height: 45px !important;
        padding: 0 0 0 11px;
    }

.filtro-select-custom .selected[data-mobile],
.filtro-select-custom .options li[data-mobile] {
    font-size: 0;
}

.filtro-select-custom .selected[data-mobile]::before {
    content: attr(data-mobile);
    font-size: 12px;
}

.filtro-select-custom .options li[data-mobile]::before {
    content: attr(data-mobile);
    font-size: 12px;
}
    .filtro-barra {
        margin-bottom: 25px !important;
    }

}

.btn-topo {
    position: fixed;
    right: 22px;
    bottom: 26px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: #635bff;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 16px -4px rgba(30, 152, 225, .45), 0 2px 8px rgba(15, 23, 42, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .25s ease, transform .25s ease, background-color .2s ease, box-shadow .2s ease;
    z-index: 1;
}

.btn-topo.is-visivel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-topo:hover {
    background-color: #0069D9;
    box-shadow: 0 10px 22px -4px rgba(30, 152, 225, .55), 0 4px 12px rgba(15, 23, 42, .14);
    transform: translateY(-3px);
}

.btn-topo:active {
    transform: translateY(-1px);
}

.btn-topo svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .btn-topo {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}
