html,
body {
    height: 100vh;
    background-color: #FFFFFF;
}

body {
    color: #3DA1FF;
    font-family: 'Ubuntu', sans-serif;
    line-height: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid {
    overflow: hidden;
}

.column-1 {
    background-color: #3DA1FF;
    position: relative;
}

.column-1 .faixa {
    position: absolute;
    bottom: -4vh;
    right: 0;
    transform: translateX(50%);
    width: 12vw;
}

.column-2 {}

#content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.title {
    font-size: 4.167vw;
    font-weight: 700;
    line-height: 1;
}

.img-logo {
    max-width: 384px;
    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;
    background: #084782;
    color: #FFF;
    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(1.5vw, 55px);
    padding-right: min(1.5vw, 55px);
    padding-top: min(0.7vw, 18px);
    padding-bottom: min(0.7vw, 18px);
}

.btn-primary:hover {
    background-color: #3DA1FF;
    border-color: #3DA1FF;
}

@media (max-width: 1500px) {
    .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(60%, 30vh);
      }
    .btn {
        font-size: min(3.906vw, 30px);
        padding: 0.65rem 1.45rem;
    }
    .text {
        font-size: min(4.818vw, 37px);
        line-height: 1.1;
        margin: 2.5vh 0;
    }

    .column-1 .faixa {
        width: 24vw;
        max-width: unset;
        bottom: -20px;
        transform: translateX(40%);
    }
}