/* ==========================================================
   CORRECAO NEWSLETTER
   FUNDO LILAS EM TODA A LARGURA
   SEM CORTAR CONTEUDO
   ========================================================== */

.newsletter {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 40px !important;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}


/* Fundo da newsletter ocupando toda a tela */

.newsletter:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    background: #f7f1f9 !important;
    border: 0 !important;
    z-index: 0 !important;
}


/* Mantem o conteudo acima do fundo */

.newsletter > * {
    position: relative !important;
    z-index: 1 !important;
}


/* Evita corte do texto */

.newsletter .titulo {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    color: #39343c !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 23px !important;
    text-transform: none !important;
}


/* Campo de email */

.newsletter input {
    height: 44px !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    background: #ffffff !important;
    border: 1px solid #ddd7df !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}


/* Botao */

.newsletter .botao {
    min-height: 44px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    background: #c69fd5 !important;
    color: #ffffff !important;
    border: 1px solid #c69fd5 !important;
    border-radius: 22px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    white-space: nowrap !important;
}

.newsletter .botao:hover {
    background: #a97bb9 !important;
    border-color: #a97bb9 !important;
    color: #ffffff !important;
}


/* ==========================================================
   NEWSLETTER MOBILE
   ========================================================== */

@media screen and (max-width: 767px) {

    .newsletter {
        height: auto !important;
        min-height: 0 !important;
        margin-top: 28px !important;
        padding-top: 24px !important;
        padding-bottom: 24px !important;
        overflow: visible !important;
    }

    .newsletter .titulo {
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 12px !important;
        font-size: 16px !important;
        line-height: 21px !important;
        white-space: normal !important;
    }

    .newsletter input {
        width: 100% !important;
        height: 44px !important;
        margin-bottom: 10px !important;
        box-sizing: border-box !important;
    }

    .newsletter .botao {
        min-height: 44px !important;
    }

}