.elementor-1980 .elementor-element.elementor-element-a26db27{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-1093688 *//* CSS COMPLETO - FORMULÁRIO CONTACT FORM 7 */

/* Container principal */
.wpcf7-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(52, 68, 94, 0.3);
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Títulos das seções */
.wpcf7-form h3 {
    color: #34445e;
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid #e8ecf0;
    padding-bottom: 10px;
}

.wpcf7-form h3:first-child {
    margin-top: 0;
}

/* Parágrafos e labels */
.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form p > br {
    display: block;
    margin-bottom: 8px;
    content: "";
}

/* Campos de input */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fafbfc;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Estados de focus */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: #34445e;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 68, 94, 0.1);
    transform: translateY(-2px);
}

/* Textarea específico */
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkboxes */
.wpcf7-form .wpcf7-list-item {
    margin: 8px 0;
    padding: 12px;
    background: #fafbfc;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wpcf7-form .wpcf7-list-item:hover {
    background: #f1f3f4;
    border-color: #34445e;
}

.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #34445e;
}

.wpcf7-form .wpcf7-list-item label {
    margin: 0;
    font-weight: 500;
    color: #34445e;
    cursor: pointer;
}

/* Botão de envio - DESKTOP */
.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, #34445e, #2a3650);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 60px;
    display: block;
    text-align: center;
    line-height: 1.2;
}

.wpcf7-form .wpcf7-submit:hover {
    background: linear-gradient(135deg, #3a4a66, #2f3958);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 68, 94, 0.4);
}

/* Mensagens de sucesso/erro */
.wpcf7-response-output {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* RESPONSIVIDADE - TABLET */
@media (max-width: 1024px) {
    .wpcf7-form {
        padding: 30px;
        margin: 20px;
    }
    
    .wpcf7-form h3 {
        font-size: 1.3rem;
    }
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 20px !important;
        margin: 15px !important;
        border-radius: 15px !important;
    }
    
    .wpcf7-form h3 {
        font-size: 1.2rem !important;
        margin: 25px 0 15px 0 !important;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 12px !important;
        font-size: 16px !important; /* Evita zoom no iOS */
        margin-bottom: 12px !important;
    }
    
    .wpcf7-form p {
        margin-bottom: 15px !important;
    }
    
    /* BOTÃO MOBILE - CORREÇÃO PRINCIPAL */
    .wpcf7-form .wpcf7-submit {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        width: 100% !important;
        margin: 25px 0 10px 0 !important;
        border-radius: 30px !important;
        min-height: 55px !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .wpcf7-form .wpcf7-list-item {
        padding: 10px;
        margin: 6px 0;
    }
    
    .wpcf7-form textarea {
        min-height: 100px !important;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
    .wpcf7-form {
        padding: 15px !important;
        margin: 10px !important;
    }
    
    .wpcf7-form h3 {
        font-size: 1.1rem !important;
        margin: 20px 0 12px 0 !important;
    }
    
    .wpcf7-form .wpcf7-submit {
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
        min-height: 50px !important;
        border-radius: 25px !important;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 10px !important;
        font-size: 16px !important;
    }
}

/* Correções gerais para evitar problemas */
.wpcf7-form * {
    box-sizing: border-box;
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0) !important;
}

/* Spinner de carregamento */
.wpcf7-form .wpcf7-spinner {
    margin-left: 10px;
}/* End custom CSS */