.newsletter {
    height: 321px;
    display: flex;
    align-items: flex-end;
}
.newsletter .content {  
    height: 285px;  
    width: 100%;
    background: var(--theme-dark) 0% 0% no-repeat;
    gap: 3rem;
    display: grid;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    grid-auto-rows: 285px;
    grid-auto-columns: calc(100vh / 3);
}
/* IMG */
.newsletter .img-div {
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter .img-div img {
    width: 226px;
    height: 321px;
    padding-bottom: 18px;
} 
/* TEXT */
.newsletter .text-div {
    display: flex;
    grid-column: 2;
    width: 388px;
    height: 141px;
    /* padding-left: 90px; */
    align-items: center;
    flex-direction: column;
}
.newsletter .content h2 {  
    color: white;
    font-size: 32px;
    text-align: left;
    letter-spacing: 0px;
    margin: 0;
    font-weight: bold;
    font-family: "Poppins Bold";
}
/* FORM */
.newsletter .form-div {
    grid-column: 3;
}
.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter form #email {
    width: 364px;
    height: 33px;
    background: var(--theme-dark) 0% 0% no-repeat padding-box;
    border: 0.5px solid var(--primary);
    border-radius: 10px;
    text-indent: 16px;
    color: white;
}
.newsletter form #email::placeholder {
    color: #8D8D8D;
}
.newsletter form #enviar-email {
    width: 152px;
    height: 40px;
    background: var(--primary) 0% 0% no-repeat padding-box;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 32px;
}
.newsletter form span {
    font-size: 9px;
    color: #BBBBBB;
    margin: 6px 0 0 0;
}