html,
body {
    height: 100vh;
    background-color: #FFFFFF;
}

body {
    color: #115693;
    font-family: 'Ubuntu', sans-serif;
    line-height: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid {
    overflow: hidden;
}

.column-1 {
    padding: 0;
    position: relative;
}

.column-1::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 100vh;
    max-width: 490px;
    left: 0;
    top: 0;
    background-color: #3DA1FF;
}

.column-1 .faixa {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0%);
    width: auto;
    max-width: 840px;
    height: 100vh;
}

.column-2 {}

#content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}


.title {
    font-size: 3.2vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.img-logo {
    max-width: 232px;
    width: min(30%, 55vh);
    margin-top: 2vh;
}

.text {
    font-size: 1.927vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 2vh 0 2vh;
}

.btn {
    border-radius: 6px;
    border-width: 2px;
    background: #FFF;
    color: #115693;
    border-color: #115693;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: .5rem 1rem;

    transition: 0.3s all ease-in-out;
    margin-top: 1vh;

    padding-left: min(5.0vw, 55px);
    padding-right: min(5.0vw, 55px);
    padding-top: min(0.6vw, 18px);
    padding-bottom: min(0.6vw, 18px);
}

.btn-primary:hover {
    background-color: #115693;
    border-color: #115693;
}

@media (max-width: 1500px) {
    .column-1 .faixa {
        left: -0vw;
        bottom: -0vw;
        transform: translateX(0%);
        height: 100vh;
    }


    .title {
        font-size: 3.500vw;
    }

    .img-logo {
        width: min(25%, 43vh);
    }

    .btn {
        font-size: 1.500vw;
    }
}


@media (max-width: 1200px) {
    .column-1 .faixa {
        width: 10vw;
    }
}


@media screen and (max-width: 767px) {
    .title {
        font-size: 7.222vw;
        line-height: 1.3;
    }

    .img-logo {
        width: min(50%, 25vh);
    }

    .btn {
        font-size: min(3.906vw, 30px);
        padding: 0.60rem 1.50rem;
    }

    .text {
        font-size: min(4.818vw, 37px);
        line-height: 1.1;
        margin: 2.5vh 0;
    }

    .column-1 {
        order: 2;
        margin-top: 5vh;
    }

    .column-1 .faixa {
        width: 100vw;
        max-width: 100%;
        position: relative;
        height: auto;
    }

    .column-1::before {
        width: 100%;
        height: 94%;
        bottom: 0;
        top: unset;
    }

    .column-2 {
        order: 1;
        margin-top: 5vh;
    }
}