/* =====================================================
   NEWSLETTER — MOBILE
===================================================== */

.newsletter {

    position: relative;

    width: 100%;

    height: 280px;

    overflow: hidden;

    box-sizing: border-box;
       background: var(--fundoCinza);
     

}


/* =====================================================
   IMAGEM
===================================================== */

.imagem-newsletter {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 5px;

    right: 5px;

    width: auto;

    height: 100%;
    padding: 10px 0;

}


.imagem-newsletter img {

    width: 100%;

    height: 100%;

    border-radius: 20px;

    object-fit: cover;

    object-position: center;

    display: block;

}


/* =====================================================
   CONTEÚDO
===================================================== */

.conteudo-newsletter {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    padding: 0 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


/* =====================================================
   TÍTULO PRINCIPAL
===================================================== */

.conteudo-newsletter h1 {

    margin: 0 0 5px;

    color: var(--corBranca);

    font-size: 1rem;

    font-weight: 300;

    text-transform: uppercase;

}


/* =====================================================
   SUBTÍTULO
===================================================== */

.conteudo-newsletter h2 {

    margin: 0 0 35px;

    color: var(--corBranca);

    font-size: 1.48rem;

    line-height: 1.2;

    font-weight: 600;

}


/* =====================================================
   FORMULÁRIO
===================================================== */

.formulario-newsletter {

    position: relative;

    width: 100%;

    max-width: 380px;

    height: 40px;

}


/* =====================================================
   CAMPO EMAIL
===================================================== */

.formulario-newsletter input {

    width: 100%;

    height: 100%;

    padding: 0 125px 0 15px;

    box-sizing: border-box;

    border: none;

    outline: none;

    border-radius: 7px;

    background: var(--corBranca);

    color: var(--azulEscuro);

    font-family: var(--fonte-principal);

    font-size: .85rem;

    font-weight: 400;

}


.formulario-newsletter input::placeholder {

    color: var(--azulEscuro);

    opacity: 1;

}


/* =====================================================
   BOTÃO
===================================================== */

.botao-newsletter {

    position: absolute;

    top: 3px;

    right: 3px;

    height: 34px;

    padding: 0 18px;

    border: none;

    border-radius: 6px;

    background: var(--azulEscuro);

    color: var(--corBranca);

    font-family: var(--fonte-principal);

    font-size: .8rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}


.botao-newsletter:hover {

    background: var(--laranjaForte);

}
