.portal__del__cliente {
    position: relative;
}

.portal__del__cliente::after {
    content: '';
    width: 100%;
    height: 55vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(1, 1, 1, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.portal__del__cliente__banner {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.portal__del__cliente__content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding-top: calc(80px + 2vw);
}

.portal__del__cliente__title {
    font-family: "Bebas Neue Book", sans-serif;
    font-weight: 400;
    font-size: 110px;
    max-width: 630px;
    line-height: 0.9em;
    color: #fff;
    text-align: left;
    align-self: flex-start;
}

.portal__del__cliente__title b {
    font-weight: 600;
}

.portal__del__cliente__columns {
    display: flex;
    column-gap: 60px;
    padding: 50px 0 0 540px;
    text-align: left;
    color: #fff;
    align-self: flex-start;
}

.portal__del__cliente__columns li {
    font-size: 26px;
}

.portal__del__cliente__columns__button {
    appearance: none;
    background-color: transparent;
    border: solid 1px #ffffff;
    padding: 10px 30px;
    display: table;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    font-family: "Bebas Neue Book", sans-serif;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

.portal__del__cliente__columns__button:hover {
    background-color: #8f162b;
}

.portal__del__cliente__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
}

.portal__del__cliente__modal__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.portal__del__cliente__modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e6e7e8;
    padding: 50px;
    width: 550px;
    max-width: 90%;
    max-height: 90vh;
    overflow: auto;
    text-align: left;
}

.portal__del__cliente__modal__content__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #8f162b url(../images/icons/close.png) no-repeat 50%;
    background-size: 15px;
    text-indent: -50000em;
    cursor: pointer;
}

.portal__del__cliente__modal__content__title {
    font-family: "Bebas Neue Book", sans-serif;
    color: #8f162b;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}

.portal__del__cliente__modal__content__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border: solid 3px #ffffff;
    margin-bottom: 20px;
    font-family: "Bebas Neue Book", sans-serif;
}

.portal__del__cliente__modal__content__tabs__tab {
    background-color: #e6e7e8;
    color: #747474;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;

    span {
        font-size: 65px;
        font-weight: 900;
    }
}

.portal__del__cliente__modal__content__tabs__tab.active {
    background-color: #ffffff;
}

.portal__del__cliente__modal__content__dados__title {
    color: #747474;
    font-size: 24px;
}

.portal__del__cliente__modal__content__dados__field {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: solid 1px #747474;
    color: #747474;
    padding: 5px 0;
    background-color: transparent;
    margin: 15px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    resize: none;
    font-family: "Avenir", sans-serif;
}

select.portal__del__cliente__modal__content__dados__field {
    background: transparent url(../images/icons/arrow_down_select.png) no-repeat calc(100% - 10px) 50%;
    background-size: 16px;
}

.portal__del__cliente__modal__content__dados__button {
    padding: 13px 30px;
    background: #8f162b;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    display: table;
    margin: 40px auto 0;
    min-width: 150px;
    text-align: center;
    appearance: none;
    border: 0;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .portal__del__cliente__title {
        font-size: 80px;
        max-width: 440px;
    }

    .portal__del__cliente__columns {
        padding: 30px 0 0 330px;
    }
}

@media screen and (max-width: 1400px) and (max-height: 700px) {
    .portal__del__cliente__modal__content {
        padding: 25px 50px 15px;
    }

    .portal__del__cliente__modal__content__title {
        margin: 0 0 5px;
    }

    .portal__del__cliente__modal__content__dados__button {
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 960px) {
    .portal__del__cliente__content{
        position: relative;
    }
    .portal__del__cliente .boxCenter{
        padding: 0 20px;
    }
    .portal__del__cliente__banner{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: brightness(0.5);
    }
    .portal__del__cliente::after{
        display: none;
    }
    .portal__del__cliente__title {
        font-size: 50px;
        max-width: 320px;
    }
    .portal__del__cliente__columns{
        flex-direction: column;
        row-gap: 30px;
        padding: 30px 0;
    }
    .portal__del__cliente__columns ul{
        border: solid 1px #fff;
        padding: 15px;
    }
    .portal__del__cliente__columns li{
        font-size: 20px;
    }
}