.promo-sidebar {
    width: 50%;
    min-width: 550px;
    max-width: 750px;
    background:
        url("../assets/boopt/horizontal_branco.svg"),
        url("../assets/boopt/promo_frase.png"),
        linear-gradient(200deg, var(--azul-sv) 50%, var(--laranja-boopt));
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    background-position:
        bottom 40px center,
        center center,
        center;
    background-size:
        160px auto,
        400px auto,
        auto;
    border-radius: 0 80px 80px 0;
    box-shadow: 10px 0px 17px 0px rgba(0, 0, 0, 0.2);
    /* height: calc(100vh - 80px); */
    bottom: 0;
    top: 0;
    position: relative;
}

@media only screen and (max-width: 1000px) {
    .promo-sidebar {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .promo-sidebar {
        display: block;
    }
}