.tabs {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

.tab-content-br {
    display: none;
}
.tab-content-br.active {
    display: block;
}

.text-filials {
    margin-top: 5px;
    margin-bottom: 0;
}

.tab-link {
    position: relative;
    padding: 10px;
    color: #000;
    cursor: pointer;
    background: none;
    border: 0;
}
.tab-link:focus {
    outline: 0;
}

.tab-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    padding-top: 3px;
    border: 0;
    border-radius: 4px;
    background-color: #e60680;

}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}