/* RESET E BASE */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Helvetica", sans-serif;
}

/* NEWSLETTER */
.newsletter {
    background: hsla(323, 100%, 70%, 1);
    background-image: url(/wp-content/themes/salonline/imagens/back-newsletter.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 24px;
    padding: 40px 24px;
    color: white;
    max-width: 1536px;
    width: calc(100% - 48px);
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.text-area {
    flex: 1 1 500px;
}

.text-area .label {
    text-align: left;
    color: #FFFC03;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.text-area h2 {
    text-align: start;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 42px;
    text-transform: uppercase;
}

/* FORMULÁRIO CF7 */
.newsletter-form {
    flex: 1 1 550px;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.newsletter-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.newsletter-form .input-group,
.newsletter-form .email-send-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
}

.newsletter-form .input-group p,
.newsletter-form .email-send-group p {
    flex: 1;
    margin: 0;
}

.newsletter-form label {
    display: block;
    color: #000;
    margin-bottom: 4px;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
}

/* INPUTS */
.newsletter-form input[type="text"],
.newsletter-form input[type="tel"],
.newsletter-form input[type="email"] {
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

/* BOTÃO */
.newsletter-form input.wpcf7-submit {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    height: 44px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
    white-space: nowrap;
}

.newsletter-form .email-send-group p:last-child {
    display: flex;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}


/* PRIVACIDADE */
.newsletter-form .privacy-text {
    font-size: 0.8rem;
    color: #fff;
    margin-top: 10px;
    max-width: 100%;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .newsletter {
        padding: 24px;
        border-radius: 20px;
        margin: 20px auto;
        width: calc(100% - 32px);
        max-width: 600px;
        height: auto;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .text-area {
        flex: auto;
    }

    .text-area h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: center;
    }

    .text-area .label {
        text-align: center;
        display: block;
    }

    .newsletter-form .input-group,
    .newsletter-form .email-send-group {
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }

    .newsletter-form input.wpcf7-submit {
        width: 100%;
        margin-top: 10px;
    }

    .newsletter-form .privacy-text {
        text-align: center;
        font-size: 0.75rem;
    }

    .newsletter-form {
        flex: 1 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
}
.screen-reader-response {
    display: none;
}
.wpcf7-not-valid-tip, .wpcf7-response-output {
    color: #0e9e13 !important;
    font-size: 13px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 700;
    padding: 2px;
}