#app {
    background: linear-gradient(to right, var(--bg-right) 50%, var(--bg-left) 50%);
    display: flex;
    align-items: stretch;
}

#app .box-app {
    display: flex;
}

#app .box-app-imagem {
    display: flex;
    background-color: var(--bg-right);
    padding-top: 20px;
    padding-right: 77px;
    justify-content: center;
}

#app .box-app-conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-left);
    padding-left: 30px;
    padding-bottom: 20px;
}

#app .app-img-desk {display: block;}

#app .app-img-mobile {display: none;}

/* ANTIGO */

#app .titulo-p {
    font-family: "Mulish-Bold";
    font-size: 40px;
    color: var(--titulo-app) !important;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

#app .sub-titulo-app {
    font-family: "Mulish-Medium";
    font-size: 24px;
    color: var(--subtitulo-app);
}

#app .item-list {
    border: solid 1px #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
}

#app .baixe-agora {
    font-size: 13px;
    font-family: "Mulish-Bold";
    color: #fff;
    margin-bottom: 0.5em;
}

#app .logo-app {
    display: flex;
    flex-direction: column;
}

#app .logo-app-icons {
    display: flex;
    gap: 0.5em;
}

#app .logo-app-icons img {
    max-width: 133px;
    width: 100%;
    height: 39px;
}

#app .logo-section {
    display: flex;
    align-items: center;
    gap: 2em;
}

@media (max-width: 992px) {

    #app .logo-section {
    flex-direction: column;
}

    #app .so-responsive {
        padding-left: 0;
        padding-right: 0;
    }
    #app {
        flex-direction: column;
    }

    #app .box-app {flex-direction: column;}

    #app .box-app-imagem {justify-content: center; padding-right: 0;}

    #app .box-app-conteudo {align-items: center;}

    #app .titulo-p {font-size: 24px;}

    #app .sub-titulo-app {font-size: 16px;}
    #app .app-img-desk {width: 100%;}

    #app .logo-app {
        display: none;
    }
}