@import '_content/Saipher.DevBox.Changelog.Report/Saipher.DevBox.Changelog.Report.f9rkyci7qv.bundle.scp.css';

/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-container[b-wkkne44fms] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1E 50%, #2D1B4E 100%);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── MainLayout Styles ── */

[b-1m17oqctoz] .mud-main-content {
    min-height: 0;
    height: 100%;
    flex-grow: 1;
    overflow-y: auto;
    background-color: var(--mud-palette-background);
}

.page-enter[b-1m17oqctoz] {
    animation: fadeSlideUp-b-1m17oqctoz 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[b-1m17oqctoz] .nav-btn {
    border-radius: 8px !important;
    padding: 4px 12px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    opacity: 0.6;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent !important;
}

[b-1m17oqctoz] .nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.9;
}

[b-1m17oqctoz] .nav-btn.active {
    opacity: 1;
    color: var(--mud-palette-primary) !important;
    border-bottom: 2px solid var(--mud-palette-primary) !important;
    border-radius: 8px 8px 0 0 !important;
}


/* ── Session Expired Alert ── */
.backdrop-blur[b-1m17oqctoz] {
    backdrop-filter: blur(8px) !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.glass-panel-alert[b-1m17oqctoz] {
    background: var(--linear-glass-bg) !important;
    backdrop-filter: var(--linear-glass-blur);
    border: 1px solid var(--linear-border);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

@keyframes fadeSlideUp-b-1m17oqctoz {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* /Components/Pages/ModuleHub.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   ModuleHub — Tela Premium de Seleção de Módulos
   ═══════════════════════════════════════════════════════ */

/* ── Container principal ── */
.module-hub-container[b-4aamnzm8a1] {
    position: relative;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

/* ── Background animado com padrão geométrico ── */
.hub-bg-pattern[b-4aamnzm8a1] {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: bgShift-b-4aamnzm8a1 20s ease-in-out infinite alternate;
}

@keyframes bgShift-b-4aamnzm8a1 {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
    100% { transform: scale(1) rotate(-1deg); }
}

/* ── Header ── */
.hub-header[b-4aamnzm8a1] {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown-b-4aamnzm8a1 0.6s ease-out;
}

.hub-logo[b-4aamnzm8a1] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hub-logo-icon[b-4aamnzm8a1] {
    color: var(--mud-palette-primary) !important;
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.4));
}

.hub-title[b-4aamnzm8a1] {
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    background: linear-gradient(135deg, #a78bfa, #7c3aed, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-greeting[b-4aamnzm8a1] {
    font-weight: 600 !important;
    color: var(--mud-palette-text-primary);
    opacity: 0.9;
}

.hub-greeting-sub[b-4aamnzm8a1] {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* ── Grid de Cards ── */
.hub-grid[b-4aamnzm8a1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

/* ── Painel Operacional (KPIs de saúde do ecossistema) ── */
.hub-ops[b-4aamnzm8a1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
    animation: fadeInDown-b-4aamnzm8a1 0.6s ease-out 0.1s both;
}

@media (max-width: 768px) {
    .hub-grid[b-4aamnzm8a1] {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hub-ops[b-4aamnzm8a1] {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
}

/* ── Module Card ── */
.module-card[b-4aamnzm8a1] {
    position: relative;
    border-radius: 16px;
    cursor: pointer;
    animation: fadeInUp-b-4aamnzm8a1 0.5s ease-out both;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--linear-glass-bg, rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--linear-border, rgba(255, 255, 255, 0.08));
    overflow: hidden;
}

.module-card[b-4aamnzm8a1]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: var(--module-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.35s ease;
}

.module-card:hover:not(.module-disabled)[b-4aamnzm8a1] {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -12px var(--module-glow);
}

.module-card:hover:not(.module-disabled)[b-4aamnzm8a1]::before {
    opacity: 0.7;
}

.module-card:active:not(.module-disabled)[b-4aamnzm8a1] {
    transform: translateY(-2px) scale(1.01);
}

.module-disabled[b-4aamnzm8a1] {
    cursor: not-allowed;
    opacity: 0.55;
}

.module-card-inner[b-4aamnzm8a1] {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

/* ── Badge de status ── */
.module-badge[b-4aamnzm8a1] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active[b-4aamnzm8a1] {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-soon[b-4aamnzm8a1] {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-admin[b-4aamnzm8a1] {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ── Ícone do módulo ── */
.module-icon-wrapper[b-4aamnzm8a1] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--module-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -6px var(--module-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover:not(.module-disabled) .module-icon-wrapper[b-4aamnzm8a1] {
    transform: scale(1.08);
    box-shadow: 0 12px 32px -6px var(--module-glow);
}

.module-icon[b-4aamnzm8a1] {
    color: #fff !important;
    font-size: 1.5rem !important;
}

/* ── Texto do card ── */
.module-name[b-4aamnzm8a1] {
    font-weight: 700 !important;
    letter-spacing: -0.3px !important;
    color: var(--mud-palette-text-primary);
}

.module-description[b-4aamnzm8a1] {
    opacity: 0.6;
    line-height: 1.5 !important;
    flex-grow: 1;
}

/* ── Indicador de ação ── */
.module-action[b-4aamnzm8a1] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 0.5rem;
}

.module-card:hover:not(.module-disabled) .module-action[b-4aamnzm8a1] {
    opacity: 0.9;
    transform: translateX(4px);
}

.module-action-icon[b-4aamnzm8a1] {
    font-size: 1rem !important;
}

/* ── Footer ── */
.hub-footer[b-4aamnzm8a1] {
    margin-top: 3rem;
    animation: fadeInUp-b-4aamnzm8a1 0.6s ease-out 0.5s both;
}

.hub-footer-text[b-4aamnzm8a1] {
    opacity: 0.35;
    text-align: center;
}

/* ── Animações de entrada ── */
@keyframes fadeInUp-b-4aamnzm8a1 {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown-b-4aamnzm8a1 {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Stats ao vivo dentro dos cards de módulo ── */
.module-stats[b-4aamnzm8a1] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--ds-border, rgba(255, 255, 255, 0.08));
    width: 100%;
    justify-content: center;
}

.module-stat[b-4aamnzm8a1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.module-stat-value[b-4aamnzm8a1] {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    color: var(--mud-palette-text-primary);
}

.module-stat-label[b-4aamnzm8a1] {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
    .hub-ops[b-4aamnzm8a1],
    .hub-bg-pattern[b-4aamnzm8a1] {
        animation: none !important;
    }
}
/* /Components/Shared/AppStatusBar.razor.rz.scp.css */
/* ── AppStatusBar Styles (extraídos do inline) ── */

.divider-vertical[b-93jzbgu6cu] {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

[b-93jzbgu6cu] .footer-btn {
    opacity: 0.7;
    font-size: 0.75rem !important;
    transition: all 0.2s;
}

[b-93jzbgu6cu] .footer-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.copyright-text[b-93jzbgu6cu] {
    opacity: 0.3;
    font-size: 0.7rem;
}
