.elementor-419 .elementor-element.elementor-element-3e60b3d{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-7614ae0 *//* ==========================================================================
   ESTILOS UNIFICADOS PARA TODAS AS MODAIS DO PLUGIN
   ========================================================================== */

/* 1. Estilo base para o fundo escurecido (serve para todas as modais) */
.modal-overlay,
.document-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none; /* Começam escondidas */
    align-items: center;
    justify-content: center;
    z-index: 9998; /* z-index base */
    opacity: 0;
    animation: fadeInOverlay 0.3s forwards;
}
/* Garante que a modal do WhatsApp apareça por cima das outras, se necessário */
#modal-whatsapp-optin {
    z-index: 9999;
}


/* 2. Estilo base para a caixa de conteúdo (serve para todas) */
.modal-content,
.document-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    position: relative;
    animation: zoomInModal 0.3s 0.1s forwards;
}


/* 3. Estilo do botão 'X' (serve para todas) */
.modal-close,
.document-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover,
.document-modal-close:hover {
    color: #333;
}


/* 4. Ajustes Específicos para cada Modal */

/* Modal do WhatsApp (menor e centralizada) */
#modal-whatsapp-optin .modal-content {
    max-width: 500px;
    text-align: center;
    padding: 30px;
}

/* Modais de Documentos (maiores e com estrutura de título) */
.document-modal-content {
    max-width: 800px;
    height: 90%;
    display: flex;
    flex-direction: column;
}
.document-modal-content h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.document-modal-content iframe {
    flex-grow: 1;
    border: none;
}


/* 5. Animações (serve para todas) */
@keyframes fadeInOverlay {
    to { opacity: 1; }
}
@keyframes zoomInModal {
    to { opacity: 1; transform: scale(1); }
}/* End custom CSS */