/* /Layout/MainLayout.razor.rz.scp.css */
/* MainLayout - estilos escopados */

/* Garante que o conteúdo principal não fique escondido atrás do AppBar */
.mud-main-content[b-19eml2v03f] {
    padding-top: 64px;
}

/* Suaviza transições do drawer */
.mud-drawer[b-19eml2v03f] {
    transition: width 0.25s ease, transform 0.25s ease;
}

/* Overflow lateral no mobile */
@media (max-width: 599px) {
    .mud-main-content[b-19eml2v03f] {
        overflow-x: hidden;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* NavMenu.razor.css - estilos escopados do menu lateral */

/* O MudBlazor gerencia a maioria dos estilos do drawer/nav.
   Aqui apenas customizações adicionais necessárias. */

/* Scroll no nav se houver muitos itens */
[b-nvnd4weg4c] .mud-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 8px;
    height: 100%;
    overflow-y: auto;
}

/* Espaçamento entre grupos */
[b-nvnd4weg4c] .mud-nav-group {
    margin-bottom: 4px;
}
/* /Pages/Admin/Eventos.razor.rz.scp.css */
/* ── admin-page (compartilhado entre Eventos e outras pages admin) ── */

.admin-page[b-fx4n0ql1xe] {
    padding: 20px 16px 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ── Cabeçalho da page admin ── */
.admin-page-header[b-fx4n0ql1xe] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.admin-page-header-left[b-fx4n0ql1xe] {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.admin-page-icon[b-fx4n0ql1xe] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.admin-page-title[b-fx4n0ql1xe] {
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.admin-page-subtitle[b-fx4n0ql1xe] {
    opacity: 0.5;
    font-size: 0.8rem !important;
}

/* ── Botão de adicionar ── */
.admin-add-btn[b-fx4n0ql1xe] {
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

/* ── Loading / Empty states ── */
.loading-container[b-fx4n0ql1xe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
}

.empty-state[b-fx4n0ql1xe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
    gap: 8px;
}

/* ── Cards de evento admin (mobile) ── */
.evento-admin-card[b-fx4n0ql1xe] {
    border-radius: 14px !important;
    overflow: hidden;
    transition: box-shadow 0.15s ease !important;
}

.evento-admin-card:hover[b-fx4n0ql1xe] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.evento-admin-card-body[b-fx4n0ql1xe] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 10px;
}

.evento-admin-card-icon[b-fx4n0ql1xe] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(30, 136, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evento-admin-card-info[b-fx4n0ql1xe] {
    flex: 1;
    min-width: 0;
}

.evento-admin-name[b-fx4n0ql1xe] {
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 4px !important;
}

.evento-admin-dates[b-fx4n0ql1xe] {
    opacity: 0.55;
    display: flex;
    align-items: center;
    gap: 4px;
}

.evento-admin-card-actions[b-fx4n0ql1xe] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 12px;
    border-top: 1px solid rgba(0,0,0,0.07);
    margin-top: 4px;
}

/* Mobile ajustes */
@media (max-width: 599px) {
    .admin-page[b-fx4n0ql1xe] {
        padding: 14px 10px 24px;
    }

    .admin-page-header[b-fx4n0ql1xe] {
        margin-bottom: 18px;
    }
}
/* /Pages/Admin/Inscritos.razor.rz.scp.css */
/* ── Inscritos / Check-in Page ── */

.checkin-page[b-q0khunmnfo] {
    padding: 0 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Cabeçalho ── */
.checkin-header[b-q0khunmnfo] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 8px 12px 4px;
    position: sticky;
    top: 64px; /* altura do MudAppBar */
    z-index: 100;
    background: inherit;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    margin-bottom: 0;
}

.back-btn[b-q0khunmnfo] {
    flex-shrink: 0;
}

.checkin-header-info[b-q0khunmnfo] {
    flex: 1;
    min-width: 0;
}

.checkin-title[b-q0khunmnfo] {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
}

.checkin-subtitle[b-q0khunmnfo] {
    opacity: 0.6;
    font-size: 0.78rem !important;
}

.checkin-header-actions[b-q0khunmnfo] {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

/* ── Barra de progresso de presença ── */
.checkin-progress-bar[b-q0khunmnfo] {
    padding: 10px 16px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-track[b-q0khunmnfo] {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--mud-palette-background-grey);
    overflow: hidden;
}

.progress-fill[b-q0khunmnfo] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    min-width: 4px;
}

.progress-label[b-q0khunmnfo] {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.65;
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

/* ── Campo de busca ── */
.checkin-search[b-q0khunmnfo] {
    padding: 8px 12px 12px;
}

/* ── Loading ── */
.loading-container[b-q0khunmnfo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
}

/* ── Lista de inscritos (Coluna Única) ── */
.inscrito-list[b-q0khunmnfo] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 12px 16px;
}

.inscrito-card[b-q0khunmnfo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid var(--mud-palette-lines-default);
    transition: border-color 0.2s ease, background 0.2s ease;
    gap: 10px;
}

.inscrito-card.presente[b-q0khunmnfo] {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(76, 175, 80, 0.04);
}

.inscrito-card.ausente[b-q0khunmnfo] {
    border-color: var(--mud-palette-lines-default);
}

.inscrito-card-info[b-q0khunmnfo] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

/* Avatar com inicial do nome */
.inscrito-avatar[b-q0khunmnfo] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.inscrito-avatar.avatar-presente[b-q0khunmnfo] {
    background: rgba(76, 175, 80, 0.18);
    color: #388E3C;
}

.inscrito-details[b-q0khunmnfo] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.inscrito-nome[b-q0khunmnfo] {
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.inscrito-meta[b-q0khunmnfo] {
    font-size: 0.75rem;
    opacity: 0.55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.inscrito-curso[b-q0khunmnfo] {
    font-style: italic;
}

/* Switch precisa de tamanho mínimo para não quebrar */
.inscrito-switch[b-q0khunmnfo] {
    flex-shrink: 0;
    margin: 0 !important;
}

/* Busca sem resultado */
.empty-search[b-q0khunmnfo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    gap: 8px;
    text-align: center;
}

/* ── Mobile específico ── */
@media (max-width: 599px) {
    .checkin-header[b-q0khunmnfo] {
        padding: 10px 4px 10px 0;
        top: 56px;
    }

    .checkin-page[b-q0khunmnfo] {
        padding-bottom: 60px;
    }
}
/* /Pages/Admin/Usuarios.razor.rz.scp.css */
/* ── Usuarios page CSS (escopado) ── */

/* Herda o .admin-page do Eventos.razor.css?
   Não — CSS escopado é por componente. Repetindo os essenciais aqui. */

/* Cards de usuário */
.usuario-card[b-luperj5oge] {
    border-radius: 14px !important;
    overflow: hidden;
    transition: box-shadow 0.15s ease !important;
}

.usuario-card:hover[b-luperj5oge] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.usuario-card-content[b-luperj5oge] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

/* Avatar circular com inicial */
.usuario-avatar[b-luperj5oge] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C4DFF, #651FFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    user-select: none;
}

/* Avatar menor para tabela desktop */
.usuario-avatar-sm[b-luperj5oge] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C4DFF, #651FFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    user-select: none;
}

.usuario-info[b-luperj5oge] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.usuario-nome[b-luperj5oge] {
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.usuario-email[b-luperj5oge] {
    opacity: 0.55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.78rem !important;
}

.usuario-chips[b-luperj5oge] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 4px;
}
/* /Pages/Inicio.razor.rz.scp.css */
/* Inicio.razor.css - Estilos escopados */

.inicio-page[b-lkzitennyd] {
    padding: 20px 16px 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Cabeçalho da página ── */
.inicio-header[b-lkzitennyd] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.inicio-header-icon[b-lkzitennyd] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.35);
}

.inicio-title[b-lkzitennyd] {
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.inicio-subtitle[b-lkzitennyd] {
    opacity: 0.55;
    font-size: 0.82rem !important;
    margin-top: 2px;
}

/* ── Loading e empty state ── */
.loading-container[b-lkzitennyd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
}

.empty-state[b-lkzitennyd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
    gap: 8px;
}

/* ── Cards de evento (mobile) ── */
.eventos-cards[b-lkzitennyd] {
    width: 100%;
}

.evento-card[b-lkzitennyd] {
    border-radius: 14px !important;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    overflow: hidden;
}

.evento-card:hover[b-lkzitennyd],
.evento-card:focus[b-lkzitennyd] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

.evento-card:active[b-lkzitennyd] {
    transform: scale(0.98);
}

.evento-card-content[b-lkzitennyd] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
}

.evento-card-icon[b-lkzitennyd] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 136, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evento-card-info[b-lkzitennyd] {
    flex: 1;
    min-width: 0;
}

.evento-card-name[b-lkzitennyd] {
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px !important;
}

.evento-card-dates[b-lkzitennyd] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* ── Tabela (desktop) ── */
.eventos-table[b-lkzitennyd]  .mud-table-row {
    cursor: pointer;
    transition: background-color 0.12s ease;
}

/* ── Mobile ajustes ── */
@media (max-width: 599px) {
    .inicio-page[b-lkzitennyd] {
        padding: 16px 12px 24px;
    }

    .inicio-header[b-lkzitennyd] {
        margin-bottom: 20px;
    }
}
/* /Pages/Login/Login.razor.rz.scp.css */
/* ── Login Page Styles ── */

/* Fundo com gradiente */
.login-wrapper[b-r6gbyxj2iq] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 50%, #1E88E5 100%);
    position: relative;
    overflow: hidden;
}

/* Círculos decorativos no fundo */
.login-wrapper[b-r6gbyxj2iq]::before,
.login-wrapper[b-r6gbyxj2iq]::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.login-wrapper[b-r6gbyxj2iq]::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.login-wrapper[b-r6gbyxj2iq]::after {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background: rgba(255, 255, 255, 0.03);
}

/* Container do card */
.login-card-container[b-r6gbyxj2iq] {
    width: 100%;
    max-width: 500px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Seção de branding */
.login-brand[b-r6gbyxj2iq] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand-icon[b-r6gbyxj2iq] {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.brand-title[b-r6gbyxj2iq] {
    color: white !important;
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

.brand-title b[b-r6gbyxj2iq] {
    font-weight: 700;
}

.brand-subtitle[b-r6gbyxj2iq] {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
}

/* Card principal */
.login-card[b-r6gbyxj2iq] {
    width: 100%;
    padding: 48px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.login-card-title[b-r6gbyxj2iq] {
    color: #1A202C !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    margin-bottom: 4px;
}

.login-card-subtitle[b-r6gbyxj2iq] {
    color: #718096 !important;
}

/* Botão de login */
.login-btn[b-r6gbyxj2iq] {
    height: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.4) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.login-btn:hover[b-r6gbyxj2iq] {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.5) !important;
}

.login-btn:active[b-r6gbyxj2iq] {
    transform: translateY(0) !important;
}

/* Rodapé */
.login-footer[b-r6gbyxj2iq] {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Mobile específico */
@media (max-width: 480px) {
    .login-card[b-r6gbyxj2iq] {
        padding: 32px 24px !important;
        border-radius: 16px !important;
    }

    .brand-icon[b-r6gbyxj2iq] {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .login-wrapper[b-r6gbyxj2iq] {
        padding: 16px 12px;
        align-items: flex-start;
        padding-top: 40px;
    }
}
/* /Pages/Superadmin/Tenants.razor.rz.scp.css */
/* ── Tenants (Superadmin) page CSS ── */

.superadmin-search[b-5m3e7ff64z] {
    /* O campo de busca fica sempre visível, fora da toolbar */
}

/* Cards de tenant */
.tenant-card[b-5m3e7ff64z] {
    border-radius: 14px !important;
    overflow: hidden;
    transition: box-shadow 0.15s ease !important;
}

.tenant-card:hover[b-5m3e7ff64z] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.tenant-card-content[b-5m3e7ff64z] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.tenant-avatar[b-5m3e7ff64z] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    user-select: none;
}

.tenant-avatar-sm[b-5m3e7ff64z] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    user-select: none;
}

.tenant-info[b-5m3e7ff64z] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tenant-nome[b-5m3e7ff64z] {
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-doc[b-5m3e7ff64z] {
    opacity: 0.55;
    font-size: 0.78rem !important;
}

.tenant-actions[b-5m3e7ff64z] {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

/* Estados loading/empty herdados via admin-page */
.loading-container[b-5m3e7ff64z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
}

.empty-state[b-5m3e7ff64z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    text-align: center;
    gap: 8px;
}
