.div-welcome {
    display: flex;
    text-align: center;
}

.informacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65%;
    height: 80vh;
    background-image: url('../image/background-informacao.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.texto-inicial {
    width: 50%;
    margin: 15px 0;
}

.logo {
    width: 100%;
    margin-top: -1px;
    margin-left: -30px;
}

.home-link-logo {
    width: 100%;
    padding-left: 73%;
}

.vem-btn,
.vem-btn-mobile {
    width: 50%;
    text-align: center;
}

.vem-btn-mobile {
    display: none;
}

.welcome-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-image: url("../image/background-login.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

#barra {
  margin: 20px 0;  
  width: 40%;
}

#titulo-login {
    font: Rajdhani SemiBold;
    color: white;
    text-align: center;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background: url("../image/footer.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer .logo-div,
.footer .location-div {
    color: white;
    text-align: center;
}

.footer .logo-div img {
    width: 200px;
}

.footer .location-div {
    padding: 0 2rem;
    text-align: left;
}

.footer .location-div a {
    color: inherit;
}

@media (max-width: 1024px) {
    .div-welcome {
        display: flex;
        flex-direction: column;
    }

    .informacao {
        width: 100%;
        height: 100vh;
    }

    .welcome-login {
        width: 100%;
        height: 70vh;
    }

    .btn-container {
        width: 90%;
    }

    .btn-container a, .btn-container button {
        width: 100%;
    }

    .texto-inicial {
        width: 70%;
    }

    .logo {
        width: 60%;
    }

    .vem-btn {
        display: none;
    }

    .vem-btn-mobile {
        display: inline;
    }

    .footer {
        height: 25vh;
        flex-direction: column;
        text-align: center;
        padding: 0.2rem 0;
        background: #fefefe;
    }    

    .footer .logo-div img {
        width: 120px;
    }

    .footer .location-div {
        padding: 0 2rem;
        text-align: center;
        font-size: 12px;
        color: #000;
    }
}