/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Tema filho do Hello Elementor para customizações do site Taca Petro.
Author: Jackson
Version: 1.0.0
Template: hello-elementor
Text Domain: hello-elementor-child
*/

/* Adicione suas customizações abaixo */
body {
    background: #f7f7f7;
}


/*CAMPO NEWSLETTER*/
/* ================================
   UMBU - FORMULÁRIO DE E-MAIL
   ================================ */

.umbu-email-form {
    display: flex;
    width: 100%;
    height: 88px;
    position: relative;
    margin: 0;
}

/* Campo de e-mail */
.umbu-email-form .umbu-email {
    width: 100%;
    height: 85px;
    box-sizing: border-box;
    background: #063d28;
    border: 2px solid #e69b19;
    border-radius: 8px;
    padding: 0 110px 0 30px;
    color: #009b4d;
    font-family: inherit;
    font-size: 25px;
    font-weight: 400;
    outline: none;
    margin-top: 2px;
}

/* Placeholder */
.umbu-email-form .umbu-email::placeholder {
    color: #009b4d;
    opacity: 1;
}

/* Foco */
.umbu-email-form .umbu-email:focus {
    border-color: #e69b19;
    box-shadow: none;
}

/* Botão */
.umbu-email-form .umbu-email-submit {
    position: absolute;
    top: 0;
    right: 0;

    width: 112px;
    height: 88px;

    border: none;
    border-radius: 0 8px 8px 0;

    background: #009b4d;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background 0.2s ease;
}

/* Seta */
.umbu-email-form .umbu-email-submit span {
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;

    transform: translateY(-2px);
}

/* Hover */
.umbu-email-form .umbu-email-submit:hover {
    background: #00a653;
}

/* Remove estilos padrão do CF7 */
.umbu-email-form .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.umbu-email-form .wpcf7-not-valid {
    border-color: #e69b19;
}

/* Mensagens do CF7 */
.umbu-email-form + .wpcf7-response-output {
    margin: 10px 0 0;
}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 767px) {

    .umbu-email-form {
        height: 64px;
    }

    .umbu-email-form .umbu-email {
        height: 64px;
        padding: 0 85px 0 20px;
        font-size: 18px;
    }

    .umbu-email-form .umbu-email-submit {
        width: 78px;
        height: 64px;
    }

    .umbu-email-form .umbu-email-submit span {
        font-size: 32px;
    }
}

/*FIM CAMPO NEWSLETTER*/