.topbar { box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.brand-accent { color: #0d6efd; }
.avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg,#0ea5e9,#6366f1);
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.container-main { min-height: 70vh; padding-top: 16px; padding-bottom: 32px; }
.toolbar { background-color: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.footer { border-top: 1px solid #e5e7eb; background: #f8fafc; }

/* Landing (Home) */
.landing-hero {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: radial-gradient(circle at 10% 20%, rgba(13,110,253,0.08), transparent 30%),
                radial-gradient(circle at 80% 0%, rgba(32,201,151,0.12), transparent 30%),
                linear-gradient(135deg, #f4f8ff, #e9f3ff);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    padding: 24px;
}
.status-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pill-feature {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    height: 100%;
}
.pill-feature h6 { font-weight: 700; }
.pill-feature ul { padding-left: 18px; margin: 0; }

/* Login */
.login-hero {
    min-height: 75vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}
.login-hero .brand-accent { color: #0f766e; }
.login-hero .feature-list li { margin-bottom: 8px; }
.login-card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-radius: 14px;
}
@media (max-width: 991px) {
    .login-hero { grid-template-columns: 1fr; }
}

/* Documentos */
.upload-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard */
.stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.chart-placeholder {
    min-height: 180px;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
}
