.bannerPrincipal {
    float: left;
    width: 100%;
    background: url(../img/bg-banner-principal.jpg) center bottom no-repeat;
    padding: 150px 0 400px 0;
    background-size: cover;
}

.bannerPrincipal .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bannerPrincipal .container::after,
.bannerPrincipal .container::before {
    display: none;
}

/* Texto */

.bannerPrincipal .textoBanner h2 {
    float: left;
    width: 100%;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 40px;
    line-height: 55px;
    font-weight: bold;
}

.bannerPrincipal .textoBanner p {
    float: left;
    width: 100%;
    color: #fff;
    line-height: 26px;
    font-size: 16px;
    margin: 0 0 30px 0;
}

/* Assinaturas */

.bannerPrincipal .boxAssinatura {
    float: left;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border-radius: 24px;
}

.bannerPrincipal .boxAssinatura .boxInterno {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 15px;
    text-align: center;
    border: solid 2px #FF7A7B;
    position: relative;
}

.bannerPrincipal .boxAssinatura .boxInterno .tagMelhorOferta {
    position: absolute;
    top: -11px;
    background: #fff;
    padding: 0 20px;
    font-weight: 700;
    width: 50%;
    color: #F50D0E;
    left: 25%;
}

.bannerPrincipal .boxAssinatura .boxInterno .titulo {
    float: left;
    width: 100%;
    color: #3D3D3D;
    font-size: 26px;
    font-weight: bold;
    line-height: 36px;
    margin: 10px 0 5px 0;
}

.bannerPrincipal .boxAssinatura .boxInterno .subtitulo {
    float: left;
    width: 100%;
    color: #3D3D3D;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.bannerPrincipal .boxAssinatura .boxInterno .boxPreco {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.bannerPrincipal .boxAssinatura .boxInterno .boxPreco .precoPor {
    float: left;
    width: 100%;
    font-size: 34px;
    line-height: 34px;
    color: #3D3D3D;
    font-weight: bold;
    margin: 10px 0;
}

.bannerPrincipal .boxAssinatura .boxInterno .boxPreco button {
    float: left;
    width: 100%;
    margin: 12px 0 0 0;
    background: #F50D0E;
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    border: 0;
}

@media only screen and (max-width: 1000px) {

    .bannerPrincipal {
        padding: 150px 0 80px 0;
        background: url(../img/bg-banner-principal-mobile.jpg) center center no-repeat;
        background-size: cover;
    }

    .bannerPrincipal .container {
        flex-direction: column;
    }

    .bannerPrincipal .col-sm-6,
    .bannerPrincipal .col-sm-4 {
        float: left;
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .bannerPrincipal .textoBanner {
        text-align: center;
    }

    .bannerPrincipal .textoBanner h2 br,
    .bannerPrincipal .textoBanner p br {
        display: none;
    }

}

@media only screen and (max-width: 950px) {

    .bannerPrincipal .textoBanner h2 {
        margin: 0 0 20px 0;
        font-size: 30px;
        line-height: 42px;
    }

    .bannerPrincipal .textoBanner p br {
        display: none;
    }

}

@media only screen and (max-width: 768px) {

    .bannerPrincipal {
        padding: 120px 0 50px 0;
    }

}

@media only screen and (max-width: 500px) {

    .bannerPrincipal {
        padding: 100px 0 40px 0;
    }

    .bannerPrincipal .textoBanner {
        padding: 0;
    }

    .bannerPrincipal .textoBanner h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .bannerPrincipal .col-sm-4 {
        padding: 0;
    }

    .bannerPrincipal .boxAssinatura .boxInterno .tagMelhorOferta {
        width: 60%;
        left: 20%;
    }

    .bannerPrincipal .boxAssinatura .boxInterno .titulo {
        font-size: 24px;
        line-height: 34px;
        margin: 20px 0 5px 0;
    }

    .bannerPrincipal .boxAssinatura .boxInterno .boxPreco .precoPor {
        font-size: 30px;
        line-height: 30px;
    }

}