/* ======================================================= */
/* === TEMA DO EDITOR WYSIWYG (ESPELHO DO PDF PREMIUM) === */
/* ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* A "Mesa" escura onde a folha A4 fica apoiada */
.editor-a4-container {
    background: #525659;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid var(--border-light);
    margin-top: 10px;
    margin-bottom: 20px;
}

/* A Folha A4 Virtual (Editor) */
.wysiwyg-editor {
    background: #ffffff;
    color: #475569; 
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    min-width: 210mm; /* Força proporção A4 em ecrãs grandes */
    max-width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
    padding: 40px 45px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border-radius: 2px;
    overflow-y: visible;
    outline: none;
    line-height: 1.5;
    font-size: 11px;
    text-align: justify;
    transition: all 0.3s ease;
}

.wysiwyg-editor:focus {
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.5), 0 0 20px rgba(0,0,0,0.6);
}

/* --- ESTILOS INJETADOS AUTOMATICAMENTE NO TEXTO --- */

/* Títulos e Secções */
.wysiwyg-editor div.section-title,
.wysiwyg-editor h1, 
.wysiwyg-editor h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0F172A; 
    font-weight: 800;
    font-size: 13px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 6px;
    margin-bottom: 12px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Parágrafos e Textos Base */
.wysiwyg-editor p, 
.wysiwyg-editor div.legal-text,
.wysiwyg-editor div {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #475569;
    line-height: 1.5;
    text-align: inherit; /* Permite herdar o alinhamento dos botões (Esquerda, Centro, Direita) */
    margin-bottom: 10px;
    font-weight: 500;
}

/* Negritos (Bolds) - Estilo Premium do PDF */
.wysiwyg-editor b, 
.wysiwyg-editor strong {
    font-family: 'Montserrat', sans-serif;
    color: #0F172A;
    font-weight: 700;
}

/* Listas */
.wysiwyg-editor ul, 
.wysiwyg-editor ul.legal-list {
    margin: 8px 0;
    padding-left: 20px;
}

.wysiwyg-editor ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #475569;
    margin-bottom: 6px;
    line-height: 1.5;
    font-weight: 500;
    text-align: inherit;
}

/* ========================================= */
/* Responsividade para Telemóveis (Correção) */
/* ========================================= */
@media (max-width: 768px) {
    .editor-a4-container {
        padding: 10px;
    }
    .wysiwyg-editor {
        min-width: 100%; /* Remove a trava A4 para caber no ecrã do telemóvel */
        padding: 25px 20px;
        font-size: 12.5px; /* Aumenta ligeiramente a legibilidade no telemóvel */
        line-height: 1.4; /* CORREÇÃO: Entrelinhas mais juntas no celular */
    }
    
    .wysiwyg-editor p, 
    .wysiwyg-editor div.legal-text,
    .wysiwyg-editor div {
        font-size: 12.5px;
        line-height: 1.4; /* CORREÇÃO: Entrelinhas mais juntas nos parágrafos */
    }
    
    .wysiwyg-editor ul li {
        font-size: 12.5px;
        line-height: 1.4; /* CORREÇÃO: Entrelinhas mais juntas nas listas */
    }
}
