/* =====================================================
   PNIA – Módulo 16: Sumário Final  v1.0.0
   ===================================================== */

/* ── Container ─────────────────────────────────────── */
.pnia-m16-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8px;
    color: #1e293b;
    position: relative;
}

/* ── HERO (estado inicial) ───────────────────────────── */
.pnia-m16-hero {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 16px;
    border: 1px solid #bae6fd;
}
.pnia-m16-hero-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.pnia-m16-hero-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}
.pnia-m16-hero-desc {
    font-size: 15px;
    color: #475569;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.pnia-m16-info-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 13px;
    color: #334155;
    margin-bottom: 28px;
    max-width: 520px;
}
.pnia-m16-info-icon { font-size: 18px; }

/* ── LOADING ────────────────────────────────────────── */
.pnia-m16-loading-wrap {
    text-align: center;
    padding: 56px 24px;
}
.pnia-m16-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #0ea5e9;
    border-radius: 50%;
    animation: pnia-m16-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}
@keyframes pnia-m16-spin {
    to { transform: rotate(360deg); }
}
.pnia-m16-loading-titulo {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px;
}
.pnia-m16-loading-sub {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 24px;
}
.pnia-m16-loading-steps {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}
.pnia-m16-step {
    font-size: 13px;
    color: #94a3b8;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.4s;
}
.pnia-m16-step.ativo {
    background: #f0f9ff;
    color: #0369a1;
    font-weight: 600;
    border-left: 3px solid #0ea5e9;
}

/* ── TOOLBAR ─────────────────────────────────────────── */
.pnia-m16-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px 10px 0 0;
    flex-wrap: wrap;
    gap: 8px;
}
.pnia-m16-toolbar-left,
.pnia-m16-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pnia-m16-toolbar-badge {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.pnia-m16-toolbar-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: #fef9c3;
    color: #854d0e;
}
.pnia-m16-toolbar-status.concluido {
    background: #dcfce7;
    color: #166534;
}

/* ── ABAS ───────────────────────────────────────────── */
.pnia-m16-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
}
.pnia-m16-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.pnia-m16-tab:hover { color: #0ea5e9; }
.pnia-m16-tab.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
    font-weight: 600;
}
.pnia-m16-tab-content {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    padding: 16px;
}

/* ── INFO BARS ───────────────────────────────────────── */
.pnia-m16-secoes-info,
.pnia-m16-completo-info {
    font-size: 12px;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

/* ── SEÇÕES INDIVIDUAIS ─────────────────────────────── */
.pnia-m16-secao {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.pnia-m16-secao:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pnia-m16-secao-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    cursor: pointer;
    user-select: none;
}
.pnia-m16-secao-header:hover { background: #f1f5f9; }
.pnia-m16-secao-titulo {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.pnia-m16-secao-toggle {
    font-size: 11px;
    color: #94a3b8;
    transition: transform 0.2s;
}
.pnia-m16-secao.aberta .pnia-m16-secao-toggle {
    transform: rotate(180deg);
}
.pnia-m16-secao-body {
    padding: 14px;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}
.pnia-m16-secao-textarea {
    width: 100%;
    min-height: 160px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    line-height: 1.65;
    color: #1e293b;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.pnia-m16-secao-textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.pnia-m16-secao-footer {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

/* ── TEXTAREA COMPLETO ───────────────────────────────── */
.pnia-m16-textarea-completo {
    width: 100%;
    min-height: 520px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #1e293b;
    resize: vertical;
    font-family: 'Georgia', serif;
    box-sizing: border-box;
}
.pnia-m16-textarea-completo:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

/* ── AÇÕES INFERIORES ────────────────────────────────── */
.pnia-m16-actions-bottom {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #f8fafc;
    flex-wrap: wrap;
}

/* ── PREVIEW (concluído) ─────────────────────────────── */
.pnia-m16-preview-header {
    text-align: center;
    padding: 36px 24px 28px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin-bottom: 20px;
}
.pnia-m16-preview-badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.pnia-m16-preview-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.pnia-m16-preview-sub {
    font-size: 14px;
    color: #475569;
    margin: 0 0 20px;
}
.pnia-m16-preview-acoes {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.pnia-m16-preview-corpo {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
}
.pnia-m16-preview-texto {
    font-size: 15px;
    line-height: 1.8;
    color: #1e293b;
}
.pnia-m16-preview-texto p { margin: 0 0 14px; }
.pnia-m16-preview-texto h3.pnia-m16-secao-h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 28px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e0f2fe;
}
.pnia-m16-preview-texto ul {
    padding-left: 20px;
    margin: 8px 0 14px;
}
.pnia-m16-preview-texto li { margin-bottom: 4px; }
.pnia-m16-preview-texto hr.pnia-m16-sep {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 24px 0;
}

/* ── BOTÕES ─────────────────────────────────────────── */
.pnia-m16-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.18s;
    white-space: nowrap;
}
.pnia-m16-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pnia-m16-btn-lg { padding: 14px 28px; font-size: 15px; }
.pnia-m16-btn-sm { padding: 6px 12px; font-size: 12px; }

.pnia-m16-btn-primary {
    background: #0ea5e9;
    color: #fff;
}
.pnia-m16-btn-primary:hover { background: #0284c7; }

.pnia-m16-btn-secondary {
    background: #3b82f6;
    color: #fff;
}
.pnia-m16-btn-secondary:hover { background: #2563eb; }

.pnia-m16-btn-success {
    background: #16a34a;
    color: #fff;
}
.pnia-m16-btn-success:hover { background: #15803d; }

.pnia-m16-btn-outline {
    background: transparent;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.pnia-m16-btn-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.pnia-m16-btn-danger {
    background: #dc2626;
    color: #fff;
}
.pnia-m16-btn-danger:hover { background: #b91c1c; }

/* ── MODAIS ─────────────────────────────────────────── */
.pnia-m16-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 16px;
}
.pnia-m16-modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.pnia-m16-modal-icon { font-size: 40px; margin-bottom: 12px; }
.pnia-m16-modal-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}
.pnia-m16-modal-desc {
    font-size: 14px;
    color: #475569;
    margin: 0 0 24px;
    line-height: 1.5;
}
.pnia-m16-modal-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ── TOAST ──────────────────────────────────────────── */
.pnia-m16-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 100000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.pnia-m16-toast.success { background: #16a34a; color: #fff; }
.pnia-m16-toast.error   { background: #dc2626; color: #fff; }

/* ── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 600px) {
    .pnia-m16-toolbar-right { justify-content: flex-start; }
    .pnia-m16-preview-corpo { padding: 16px; }
    .pnia-m16-hero { padding: 32px 16px; }
    .pnia-m16-btn-lg { font-size: 14px; padding: 12px 20px; }
    .pnia-m16-modal-btns { flex-direction: column; }
}

/* ── BOTÃO EXPORTAR PDF ─────────────────────────────── */
.pnia-m16-btn-export {
    background: #7c3aed;
    color: #fff;
}
.pnia-m16-btn-export:hover   { background: #6d28d9; }
.pnia-m16-btn-export:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── GRUPO DE EXPORTAÇÃO PDF ────────────────────────── */
.pnia-m16-export-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.pnia-m16-export-group-sm .pnia-m16-btn {
    padding: 6px 10px;
    font-size: 11px;
}
.pnia-m16-btn-export-completo {
    background: #7c3aed;
    color: #fff;
}
.pnia-m16-btn-export-completo:hover { background: #6d28d9; }
.pnia-m16-btn-export-sumario {
    background: #0891b2;
    color: #fff;
}
.pnia-m16-btn-export-sumario:hover { background: #0e7490; }
