/* Layout Base */
.senac-cadastro-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; max-width: 1200px; margin: 0 auto; font-family: 'Roboto', sans-serif; align-items: start; }
.senac-cadastro-main { background: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 25px rgba(0,0,0,0.05); }

/* Wizard */
.senac-wizard-header { display: flex; justify-content: space-between; margin-bottom: 35px; position: relative; }
.senac-wizard-header::before { content: ''; position: absolute; top: 15px; left: 0; right: 0; height: 3px; background: #edf2f7; z-index: 1; border-radius: 3px; }
.senac-step-indicator { position: relative; z-index: 2; background: #fff; padding: 0 10px; color: #a0aec0; font-weight: 600; font-size: 13px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: color 0.3s; }
.senac-step-dot { width: 32px; height: 32px; border-radius: 50%; background: #edf2f7; display: flex; align-items: center; justify-content: center; color: #718096; border: 3px solid #fff; box-shadow: 0 0 0 3px #edf2f7; font-weight: bold; }
.senac-step-indicator.active .senac-step-dot { background: #004587; color: #fff; box-shadow: 0 0 0 3px #cce0f5; }
.senac-step-indicator.completed .senac-step-dot { background: #38a169; color: #fff; box-shadow: 0 0 0 3px #c6f6d5; }

.step-content { display: none; animation: fadeIn 0.4s ease-out; }
.step-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Formulário Elementos */
.senac-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.senac-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.senac-field label { font-size: 13px; font-weight: 600; color: #4a5568; }
.senac-field input, .senac-field select, .senac-field textarea { padding: 12px 15px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 14px; }
.senac-field input:focus { border-color: #004587; box-shadow: 0 0 0 3px rgba(0,69,135,0.1); }
.senac-field input[readonly] { background: #f8fafc; color: #718096; cursor: not-allowed; border-color: #e2e8f0; }
.senac-btn-primary { background: #f58220; color: #fff; border: none; padding: 12px 30px; border-radius: 6px; cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; }
.senac-btn-primary:hover { background: #e06d11; transform: translateY(-2px); }
.senac-btn-outline { background: transparent; color: #004587; border: 1px solid #004587; padding: 12px 30px; border-radius: 6px; cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.senac-btn-outline:hover { background: #004587; color: #fff; }

/* Modal & Sidebar */
.senac-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 99998; backdrop-filter: blur(4px); }
.senac-modal-box { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 99999; width: 90%; max-width: 400px; background: #fff; border-radius: 12px; overflow: hidden; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }

/* Ajuste UX Sidebar Editais (Limita a 2 e exige rolagem) */
#senac-editais-sidebar-list { max-height: 185px; overflow-y: auto; padding-right: 8px; margin-right: -4px; }
#senac-editais-sidebar-list::-webkit-scrollbar { width: 6px; }
#senac-editais-sidebar-list::-webkit-scrollbar-track { background: #f8fafc; border-radius: 4px; }
#senac-editais-sidebar-list::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 4px; }
#senac-editais-sidebar-list::-webkit-scrollbar-thumb:hover { background: #a0aec0; }

/* Rastreador de Status */
.senac-rastreador-box { background: #fff; border: 1px solid #e2e8f0; padding: 30px; border-radius: 12px; max-width: 600px; margin: 0 auto; box-shadow: 0 4px 20px rgba(0,0,0,0.05); text-align: center; }
.senac-status-badge { display: inline-block; padding: 8px 16px; border-radius: 20px; font-weight: bold; font-size: 14px; margin-top: 15px; }

/* Admin Dashboard & Ações em Massa */
.senac-admin-dashboard { background: #f8fafc; padding: 25px; border-radius: 12px; font-family: 'Roboto', sans-serif; position: relative; }
.senac-bulk-bar { position: fixed; top: 50%; right: -120px; transform: translateY(-50%); background: #004587; color: #fff; padding: 15px 12px; border-radius: 12px 0 0 12px; display: flex; flex-direction: column; gap: 15px; align-items: center; z-index: 9999; transition: right 0.4s; width: 65px; }
.senac-bulk-bar.visible { right: 0; }
.senac-metrics-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 25px; margin-top: 5px;}
.senac-metric-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: center; border: 1px solid #e2e8f0; transition: transform 0.2s;}

@media (max-width: 768px) {
    .senac-cadastro-layout { grid-template-columns: 1fr; }
    .senac-row-2 { grid-template-columns: 1fr; }
    .senac-bulk-bar { top: 60%; }
}