/* ===================================================
   SISTEMA DE ACOMPANHAMENTO ESCOLAR
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Segoe UI",sans-serif;

    background:#edf1f5;

}

/*===================================================
TOPO
===================================================*/

.topo{

    background:#fff;
    box-shadow:0 2px 2px rgba(0,0,0,.08);
    padding:0;

}

.topoConteudo{

    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;

    align-items:end;

    height:95px;

    padding:0 30px 12px;

    position:relative;

}

.dataCabecalho{

    display:flex;
    justify-content:flex-end;
    align-items:center;

    height:25px;

    padding:0 30px;

    font-family:"Segoe UI",sans-serif;
    font-size:14px;
    font-weight:400;

    color:#333;

}

.textoUsuario{

    text-align:right;

    margin-top:10px;

}

.cabecalhoPrincipal{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:1px 30px 12px;

}

.logo img{

    height:75px;

}

.usuario{

    display:flex;

    align-items:center;

    gap:15px;

}

.foto{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #ddd;

}

.topoSistema{

    position:relative;

}

.topoSistema .dataCabecalho{

    position:absolute;

    top:8px;

    right:35px;

    width:auto;

    text-align:right;

    font-size:12px;

    color:#666;

}

.topoSistema .usuarioArea{

    margin-top:18px;

}

/*=========================================
SELEÇÃO DE VÍNCULO
=========================================*/

.paginaSelecao #btnMenuApps,
.paginaSelecao #btnTrocarVinculo{
    display: none !important;
}

.paginaSelecao #escolaAtual,
.paginaSelecao #perfilUsuarioTopo{
    visibility: hidden;
    height: 20px;
}

/*=========================================
DADOS DO USUÁRIO
=========================================*/

.dadosUsuario{

    text-align:right;

    line-height:1.4;

}

.linhaUsuario,
.textoUsuarioTopo{

    font-family:"Segoe UI",sans-serif;

    font-size:14px;

    font-weight:400;

    color:#333;

    line-height:1.4;

}

/* Nome do usuário */

#nomeUsuario{

    font-family:"Segoe UI",sans-serif;

    font-size:14px;

    font-weight:700;

    color:#29458d;

    line-height:1.35;
    

}


/*===================================================

BOTÕES DO TOPO

===================================================*/

.icone{

    border:none;

    background:none;

    color:#31498d;

    font-size:30px;

    cursor:pointer;

    transition:.2s;

}

.icone:hover{

    transform:scale(1.1);

}

/*===================================================

MENU

===================================================*/

.menu{

    background:#31498d;

    display:flex;

    align-items:center;

    height:46px;

    padding-left:15px;

}

.menu a{

    color:white;

    text-decoration:none;

    padding:0 18px;

    display:flex;

    align-items:center;

    height:46px;

    font-size:15px;

    transition:.2s;

}

.menu a:hover{

    background:#24396f;

}

.menu a.ativo{

    background:#20325f;

    border-bottom:4px solid orange;

}

/*===================================================

CONTEÚDO

===================================================*/

#conteudo{

    padding:25px;

    max-width:1700px;

    margin:auto;

}

/*===================================================

CARDS

===================================================*/

.cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:25px;

}

.cardPainel{

    background:white;

    border-radius:10px;

    padding:25px;

    text-align:center;

    cursor:pointer;

    transition:.25s;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.cardPainel:hover{

    transform:translateY(-4px);

}

.cardPainel h1{

    font-size:42px;

    color:#31498d;

}

.cardPainel p{

    margin-top:8px;

    font-size:17px;

}

/*===================================================

DASHBOARD

===================================================*/

.grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.box{

    background:white;

    border-radius:10px;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.boxTitulo{

    background:#31498d;

    color:white;

    padding:12px 20px;

    font-size:18px;

    font-weight:bold;

    border-radius:10px 10px 0 0;

}

.boxConteudo{

    padding:20px;

    font-size:15px;

}

.boxConteudo ul{

    list-style:none;

}

.boxConteudo li{

    padding:10px;

    border-bottom:1px solid #eee;

    font-size:15px;

}

/*===================================================

MODAL

===================================================*/

.modalSistema{

    display:none;

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    justify-content:center;

    align-items:center;

}

.janela{

    width:700px;

    background:white;

    border-radius:10px;

    padding:30px;

}

.itemEscola{

    padding:20px;

    margin-top:15px;

    border:1px solid #ddd;

    border-radius:8px;

    cursor:pointer;

    transition:.2s;

    font-size:17px;

}

.itemEscola:hover{

    background:#edf3ff;

}

/*==================================
CABEÇALHO DO MODAL
==================================*/

.cabecalhoModal{

    background:#31498d;

    color:#fff;

    position:relative;

    padding:18px 25px;

    display:flex;

    align-items:center;

}

.cabecalhoModal .modal-title{

    font-size:20px;

    font-weight:600;

    margin:0;

}

/*==================================
BOTÃO FECHAR
==================================*/

.btnFecharModal{

    position:absolute;

    top:14px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#dc3545;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transition:.25s;

    cursor:pointer;

}

.btnFecharModal:hover{

    background:#bb2d3b;

    transform:rotate(90deg) scale(1.08);

}

/*===================================================

TABELAS

===================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

thead{

    background:#31498d;

    color:white;

}

th{

    padding:12px;

    font-size:15px;

}

td{

    padding:12px;

    font-size:15px;

    border-bottom:1px solid #eee;

}

/*===================================================

BOTÕES

===================================================*/

.btnSistema{

    background:#31498d;

    color:white;

    border:none;

    padding:10px 18px;

    border-radius:6px;

    cursor:pointer;

}

.btnSistema:hover{

    background:#24396f;

}

/*===================================================

RESPONSIVO

===================================================*/

@media(max-width:1200px){

.cards{

grid-template-columns:repeat(2,1fr);

}

.grid{

grid-template-columns:1fr;

}

}

@media(max-width:900px){

.topo{

flex-direction:column;

height:auto;

padding:15px;

}

.usuario{

margin-top:10px;

}

.menu{

overflow:auto;

}

.menu a{

white-space:nowrap;

}

.cards{

grid-template-columns:1fr;

}

}

.cabecalhoModulo{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.cabecalhoModulo h2{

margin:0;

font-size:28px;

}

.cabecalhoModulo p{

margin:0;

color:#777;

font-size:14px;

}

.barraPesquisa{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.tabelaSistema{

width:100%;

background:white;

border-collapse:collapse;

border-radius:10px;

overflow:hidden;

box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.tabelaSistema thead{

background:#31498d;

color:white;

}

.tabelaSistema th{

padding:15px;

font-size:15px;

}

.tabelaSistema td{

padding:15px;

font-size:14px;

border-bottom:1px solid #ececec;

}

.tabelaSistema tbody tr:nth-child(even){

background:#fafafa;

}

.tabelaSistema tbody tr:hover{

background:#eef3ff;

}

.btnEditar{

background:#1976d2;

color:white;

border:none;

padding:6px 10px;

border-radius:5px;

cursor:pointer;

}

.btnStatus{

background:#f9a825;

color:white;

border:none;

padding:6px 10px;

border-radius:5px;

cursor:pointer;

margin-left:4px;

}

.btnExcluir{

background:#d32f2f;

color:white;

border:none;

padding:6px 10px;

border-radius:5px;

cursor:pointer;

margin-left:4px;

}


/*=========================================
MÓDULO PADRÃO
=========================================*/

.modulo{

    background:#fff;

    border-radius:12px;

    padding:25px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.topoModulo{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:20px;

}

.tituloModulo h2{

    margin:0;

    color:#31498d;

    font-size:26px;

    font-weight:600;

}

.tituloModulo p{

    margin-top:4px;

    color:#777;

    font-size:14px;

}

.acoesTabelaSuperior{

    display:flex;

    align-items:center;

    gap:12px;

}

.acoesTabelaSuperior input{

    width:320px;

}

.btnNovo{

    background:#198754;

    color:#fff;

    border:none;

    border-radius:8px;

    padding:10px 18px;

    font-size:14px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:8px;

    transition:.2s;

}


.table-responsive{

    border-radius:10px;

    overflow-x:auto;

    overflow-y:visible;

}

.tabelaSistema{

    margin-bottom:0;

}

.tabelaSistema thead th{

    background:#31498d;

    color:white;

    font-weight:600;

    vertical-align:middle;

    text-align:center;

}

    .tabelaSistema tbody td{

        vertical-align:middle;

        text-align:center;

    }

    .tabelaSistema tbody tr:hover{

        background:#f3f7ff;

    }

.acoesTabela{

    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;

    gap:8px;

    white-space:nowrap;

}

.btnIcone{

    width:38px;

    height:38px;

    border:none;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    cursor:pointer;

    transition:.2s;

}

.btnIcone:hover{

    transform:scale(1.08);

}

.btnEditar{

    background:#0d6efd;

}

.btnStatus{

    background:#ffc107;

    color:#222;

}

.btnExcluir{

    background:#dc3545;

}

.btnAlunos{
    background:#17a2b8;
    color:#fff;
}

.btnAtividades{
    background:#6f42c1;
    color:#fff;
}

.btnRegistros{
    background:#20c997;
    color:#fff;
}

.rodapeTabela strong{

    font-weight:650;

    margin-right:4px;

}


.badgeAtiva{

    background:#2e7d32;

    color:white;

    padding:4px 10px;

    border-radius:20px;

    font-size:12px;

}

.badgeInativa{

    background:#c62828;

    color:white;

    padding:4px 10px;

    border-radius:20px;

    font-size:12px;

}

.btnIcone{

    width:34px;

    height:34px;

    border:none;

    border-radius:6px;

    color:white;

    cursor:pointer;

}

.btnEditar{

    background:#1976d2;

}

.btnStatus{

    background:#f9a825;

}

.btnExcluir{

    background:#d32f2f;

}



.acoesTabela{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

}

.btnIcone{

    width:35px;

    height:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:none;

    border-radius:12px;

    color:white;

    font-size:14px;

    cursor:pointer;

    transition:0.2s;

}

.btnIcone:hover{

    transform:scale(1);

}

.btnEditar{

    background:#1976d2;

}

.btnStatus{

    background:#f9a825;

}

.btnExcluir{

    background:#d32f2f;

}

.modulo{

background:white;

padding:25px;

border-radius:12px;

box-shadow:0 2px 10px rgba(0,0,0,.08);

}


.tituloModulo h2{

margin:0;

font-size:26px;

color:#233f85;

}

.tituloModulo p{

margin:5px 0 0;

font-size:14px;

color:#777;

}

.pesquisaModulo{

display:flex;

justify-content:flex-end;

margin-bottom:20px;

}

.table-responsive{

    border-radius:10px;

    overflow-x:auto;

    overflow-y:visible;

}

.tabelaSistema{

margin-bottom:0;

}

.tabelaSistema thead th{

background:#31498d;

color:white;

vertical-align:middle;

}

.tabelaSistema tbody tr:hover{

background:#f5f9ff;

}

.acoesTabela{

display:flex;

justify-content:center;

align-items:center;

gap:8px;

}

.btnIcone{

width:30px;

height:30px;

display:flex;

justify-content:center;

align-items:center;

border:none;

border-radius:8px;

color:white;

font-size:16px;

cursor:pointer;

transition:.2s;

}

.btnIcone:hover{

transform:scale(1.08);

}

.rodapeTabela{

display:flex;

justify-content:flex-end;

align-items:center;

gap:6px;

margin-top:15px;

padding-top:15px;

border-top:1px solid #e5e5e5;

font-size:14px;

color:#000;

width:100%;

}

.barraSuperior{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:25px 0 20px 0;

}

.acoesTabelaSuperior{

    display:flex;

    align-items:center;

    gap:12px;

}

.acoesTabelaSuperior input{

    width:320px;

}



.btnNovo:hover{

    background:#157347;

}

.infoTabela{

    font-size:15px;

    color:#555;

}

.infoTabela i{

    color:#31498d;

    margin-right:6px;

}
.btnCancelar{

    background:#6c757d;

    color:white;

    border:none;

    border-radius:8px;

    padding:10px 20px;

    font-weight:600;

}

.btnCancelar:hover{

    background:#5c636a;

}

.btnFecharModal{

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:#dc3545;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    transition:.2s;

}

.btnFecharModal:hover{

    background:#bb2d3b;

    transform:scale(1.1);

}

/*=========================================
ATIVIDADES DOS REGISTROS
=========================================*/

.atividadeRegistroCheck{

width:18px !important;

height:18px !important;

cursor:pointer;

margin-top:8px;

}

/*=========================================
CARD ATIVIDADE
=========================================*/

.atividadeCard{

transition:all .25s ease;

}

/* CARD NÃO SELECIONADO */

.atividadeCard:hover{

background:#eaf4ff !important;

border-left:10px solid #1976d2 !important;

box-shadow:0 5px 15px rgba(25,118,210,.20) !important;

transform:translateY(-2px);

}

/* CARD SELECIONADO */

.atividadeSelecionada{

background:#eef8ee !important;

border-left:10px solid #2e7d32 !important;

box-shadow:0 3px 10px rgba(46,125,50,.25) !important;

}

/* HOVER NO CARD SELECIONADO */

.atividadeSelecionada:hover{

background:#eef8ee !important;

border-left:10px solid #2e7d32 !important;

box-shadow:0 3px 10px rgba(46,125,50,.25) !important;

transform:none !important;

}


/*=========================================
HOVER TABELAS
=========================================*/

.tabelaSistema tbody tr:hover td{
    background-color:#dbe7f5 !important;
    cursor:pointer;
}

/*=========================================
PAINEL DO ALUNO
=========================================*/

/*-----------------------------------------
TABELAS
-----------------------------------------*/

#historicoAtividadesAluno tr,
#historicoComunicadosAluno tr{

    cursor:pointer;

}

/*-----------------------------------------
CABEÇALHO
-----------------------------------------*/

#historicoAtividadesAluno th,
#historicoComunicadosAluno th{

    text-align:center;
    vertical-align:middle;
    font-size:12px;
    font-weight:700;
    padding:8px 10px;

}

/*-----------------------------------------
CÉLULAS
-----------------------------------------*/

#historicoAtividadesAluno td,
#historicoComunicadosAluno td{

    text-align:center;
    vertical-align:middle;
    font-size:14px;
    padding:8px 12px;
    line-height:1.15;

}

/*-----------------------------------------
LINHAS VERDES
-----------------------------------------*/

#historicoAtividadesAluno tr.linhaRealizada td,
#historicoComunicadosAluno tr.linhaRealizada td{

    background:#edf8ed !important;
    border-color:#d7ead7;

}

/*-----------------------------------------
LINHAS VERMELHAS
-----------------------------------------*/

#historicoAtividadesAluno tr.linhaPendente td,
#historicoComunicadosAluno tr.linhaPendente td{

    background:#fdecec !important;
    border-color:#f2d1d1;

}

/*-----------------------------------------
HOVER
-----------------------------------------*/

#historicoAtividadesAluno tr.linhaRealizada:hover td,
#historicoComunicadosAluno tr.linhaRealizada:hover td{

    background:#dff2df !important;

}

#historicoAtividadesAluno tr.linhaPendente:hover td,
#historicoComunicadosAluno tr.linhaPendente:hover td{

    background:#fadede !important;

}

/*-----------------------------------------
BOTÃO VISUALIZAR
-----------------------------------------*/

.btnVisualizar{

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border-radius:50%!important;

    font-size:12px;

    transition:.2s;

}

.btnVisualizar i{

    font-size:14px;

}

.btnVisualizar:hover{

    transform:scale(1.08);

}

/*-----------------------------------------
BADGES
-----------------------------------------*/

#historicoComunicadosAluno .badge{

    font-size:11px;
    padding:8px 12px;

}

#historicoAtividadesAluno .badge{

    font-size:11px;
    padding:8px 12px;

}

/*=========================================
PAINEL USUÁRIO
=========================================*/

.painelUsuario{

position:fixed;

top:72px;

right:18px;

width:310px;

background:#fff;

border-radius:16px;

box-shadow:0 18px 45px rgba(0,0,0,.18);

overflow:hidden;

display:none;

z-index:9999;

animation:abrirPainel .25s;

}

.painelUsuarioCabecalho{

padding:25px;

text-align:center;

}

.fotoPainel{

width:95px;

height:95px;

border-radius:50%;

object-fit:cover;

border:4px solid #0d6efd;

cursor:pointer;

transition:.25s;

}

.fotoPainel:hover{

transform:scale(1.05);

opacity:.9;

}

.painelUsuarioCabecalho h5{

margin-top:14px;

margin-bottom:4px;

font-weight:700;

}

.painelUsuarioCabecalho span{

display:block;

color:#6c757d;

}

.painelUsuarioCabecalho small{

display:block;

margin-top:6px;

color:#0d6efd;

}

.painelUsuarioRodape{

padding:18px;

border-top:1px solid #ececec;

}

.btnAlterarFoto{

width:100%;

border:none;

background:#f5f7fb;

padding:12px;

border-radius:10px;

font-weight:600;

transition:.2s;

}

.btnAlterarFoto:hover{

background:#0d6efd;

color:#fff;

}

@keyframes abrirPainel{

from{

opacity:0;

transform:translateY(-12px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==============================
PERFIL
==============================*/

.perfilUsuario{

    display:none;

    position:fixed;

    top:75px;

    right:20px;

    width:290px;

    background:#fff;

    border-radius:15px;

    box-shadow:0 10px 35px rgba(0,0,0,.18);

    overflow:hidden;

    z-index:99999;

    animation:perfil .25s;

}

@keyframes perfil{

    from{

        opacity:0;

        transform:translateY(-15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.perfilCabecalho{

    padding:18px 20px 8px;

    text-align:center;

}

.perfilCabecalho img{

    width:95px;

    height:95px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #0d6efd;

}

.perfilCabecalho h5{

    margin-top:8px;

    margin-bottom:2px;

    font-weight:700;

    font-size:14px;

    color:#2b2b2b;

}

.perfilCabecalho span{

    display:block;

    color:#6c757d;

    font-size:12px;

    font-weight:500;

    margin-bottom:6px;

}

/*=================================
INFORMAÇÕES
=================================*/

.perfilInformacoes{

    padding:5px 15px 10px;

}

.perfilItem{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px;

    margin-bottom:8px;

    border-radius:10px;

    background:#f8f9fc;

    transition:.2s;

}

.perfilItem:hover{

    background:#eef3ff;

}

.perfilItem i{

    font-size:18px;

    color:#2F4A92;

    width:22px;

    text-align:center;

}

.perfilItem small{

    display:block;

    color:#777;

    font-size:11px;

}

.perfilItem strong{

    display:block;

    color:#333;

    font-size:13px;

    font-weight:600;

}

/*=================================
BOTÕES
=================================*/

.perfilRodape{

    padding:12px 15px 15px;

    border-top:1px solid #eee;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:8px;

}

.perfilRodape button{

    width:100%;

    height:42px;

    border:none;

    border-radius:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.2s;

    font-size:18px;

    background:#f5f5f5;

}

.perfilRodape button:hover{

    transform:translateY(-2px);

}

.perfilRodape button i{

    font-size:18px;

}

/*=================================
BOTÃO ALTERAR FOTO
=================================*/

.perfilRodape button:first-child{

    background:#0d6efd;

    color:#fff;

}

.perfilRodape button:first-child:hover{

    background:#0b5ed7;

    color:#fff;

}

/*=================================
BOTÃO REMOVER FOTO
=================================*/

.perfilRodape .btnPerfilExcluir{

    background:#dc3545;

    color:#fff;

}

.perfilRodape .btnPerfilExcluir:hover{

    background:#bb2d3b;

    color:#fff;

}

/*=================================
BOTÃO SAIR
=================================*/

.perfilRodape .btnPerfilSair{

    background:#6c757d;

    color:#fff;

}

.perfilRodape .btnPerfilSair:hover{

    background:#5c636a;

    color:#fff;

}

/*=================================
CARDS DOS RELATÓRIOS
=================================*/

.indicadorRelatorio{

    border:none;

    border-radius:14px;

    transition:.2s;

    cursor:pointer;

}

.indicadorRelatorio:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.indicadorRelatorio h2{

    font-size:34px;

    font-weight:700;

    color:#31498d;

    margin-bottom:5px;

}

.indicadorRelatorio p{

    margin:0;

    font-size:15px;

    font-weight:600;

    color:#666;

}

/*=====================================
RELATÓRIOS
=====================================*/

.indicadorRelatorio{

    border:none;

    border-radius:14px;

    transition:.25s;

    cursor:pointer;

}

.indicadorRelatorio:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.indicadorRelatorio h2{

    font-size:34px;

    font-weight:700;

    color:#27408b;

    margin-bottom:6px;

}

.indicadorRelatorio p{

    margin:0;

    font-size:15px;

    font-weight:600;

    color:#666;

}

.indicadorRelatorio{

border:0;

border-radius:12px;

transition:.25s;

}

.indicadorRelatorio:hover{

transform:translateY(-4px);

box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.indicadorRelatorio h2{

font-size:34px;

font-weight:700;

color:#21409a;

margin:0;

}

.indicadorRelatorio small{

font-size:14px;

font-weight:600;

color:#666;

}

@media print{

header{

display:none;

}

.menu{

display:none;

}

.btn{

display:none;

}

.btnNovo{

display:none;

}

input{

display:none;

}

select{

display:none;

}

body{

background:#fff;

}

#conteudo{

width:100%;

margin:0;

padding:0;

}

.card{

border:none!important;

box-shadow:none!important;

}

}

.indicadorRelatorio{

border:0;

border-radius:12px;

box-shadow:0 3px 10px rgba(0,0,0,.08);

transition:.25s;

}

.indicadorRelatorio:hover{

transform:translateY(-4px);

}

.indicadorRelatorio h2{

font-size:36px;

font-weight:700;

color:#21409a;

margin-bottom:5px;

}

/*=========================================
 SELEÇÃO DE VÍNCULOS
=========================================*/
.painelCentral{

background:#fff;

max-width:1150px;

margin:35px auto;

padding:35px;

border-radius:12px;

box-shadow:0 8px 30px rgba(0,0,0,.12);

}


/*=========================================
CARDS DAS ATIVIDADES
=========================================*/

.atividadeCard{

    background:#233F85 !important;

    border:none;

    border-radius:12px;

    color:#fff;

    cursor:pointer;

    transition:.25s;

}

.atividadeCard:hover{

    background:#1D3570 !important;

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 .5rem 1rem rgba(35,63,133,.35)!important;

}

.atividadeCard .card-body{

    padding:.20rem .55rem !important;

}

.atividadeCard *{

    background:transparent !important;

    color:#fff !important;

}


/*=========================================
TABELA REGISTROS
=========================================*/

.tabelaSistema{

    border-collapse:separate;

    border-spacing:0;

    overflow:hidden;

    border-radius:16px;

    background:#fff;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.tabelaSistema thead{

    background:#233F85;

}

.tabelaSistema thead th{

    background:#233F85;

    color:#fff;

    border:none;

    font-size:14px;

    font-weight:600;

    text-align:center;

    vertical-align:middle;

    padding:18px 10px;

}

.tabelaSistema tbody td{

    vertical-align:middle;

    padding:18px 10px;

}

.tabelaSistema tbody tr{

    transition:.2s;

}

.tabelaSistema tbody tr:hover{

    background:#E9F1FF !important;

}

.tabelaSistema tbody tr:hover td{

    background:#E9F1FF !important;

}

.tabelaSistema tfoot{

    background:#fff;

    font-size:20px;

    font-weight:700;

}

/*=========================================
REGISTROS DA TABELA
=========================================*/

.registro-ok,
.registro-nao{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:34px;

    height:34px;

    border-radius:10px;

    cursor:pointer;

    user-select:none;

    font-size:18px;

    font-weight:700;

    transition:.20s;

    box-shadow:0 2px 6px rgba(0,0,0,.12);

}

.registro-ok{

    background:#198754;

    color:#fff;

}

.registro-nao{

    background:#dc3545;

    color:#fff;

}

.registro-ok:hover{

    background:#157347;

    transform:scale(1.08);

}

.registro-nao:hover{

    background:#bb2d3b;

    transform:scale(1.08);

}

/*=========================================
ATIVIDADES QR CODE
=========================================*/

.atividadeQRCard{

    position:relative;

}

.atividadeQRSelecionada{

    border:2px solid #6EA8FE !important;

    box-shadow:0 .35rem .8rem rgba(35,63,133,.25)!important;

}

.atividadeQRSelecionada::after{

    content:"✓";

    position:absolute;

    top:8px;

    right:8px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#fff;

    color:#233F85;

    font-size:15px;

    font-weight:bold;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:5;

}

.atividadeQRCard{

    position:relative;

    height:40px;

    overflow:hidden;

}

.atividadeQRCard .fw-bold{

    margin-bottom:2px !important;

    line-height:1 !important;

}

.atividadeQRCard small{

    display:block;

    line-height:1 !important;

    margin-top:0 !important;

}

#tabelaRelatorio tr{

    transition:.2s;

}

#tabelaRelatorio tr:hover{

    filter:brightness(96%);

}


.cabecalho img{

    display:block;
    margin:0 auto 20px auto;

    height:160px;

    width:auto;

    max-width:none;

}

.topoCalendarioDashboard{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    height:42px;

    margin-bottom:12px;

}

.tituloCalendarioDashboard{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    font-size:16px;

    font-weight:600;

    color:#29458d;

    white-space:nowrap;

}

.acoesCalendarioDashboard{

    display:flex;

    align-items:center;

    gap:6px;

}


/*=================================================
RODAPÉ
=================================================*/

html{
    height:100%;
}

body{

    font-family:"Segoe UI",sans-serif;
    background:#edf1f5;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    margin:0;
}

#conteudo{

    flex:1;

    width:100%;

    max-width:1700px;

    margin:25px auto 0;

    padding:0 25px;

}


.rodapeSistema{

    width:100%;

    min-height:42px;

    padding:10px 20px;

    background:#233F85;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

}

.rodapeConteudo{

    width:100%;

    text-align:center;

}

/*=========================================
TELA DE SELEÇÃO DE VÍNCULO
=========================================*/

.telaSelecao{

    display:flex;

    flex-direction:column;

    min-height:100vh;

}

.telaSelecao .containerPrincipal{

    flex:1;

    max-width:1000px;

    width:100%;

    margin:0 auto;

    padding:25px;

}

/*=========================================
APLICATIVOS
=========================================*/

.cardAplicativo{

    border:none;

    border-radius:16px;

    transition:.25s;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.cardAplicativo:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.iconeAplicativo{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#31498d;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

}

/*=========================================
SCROLLBAR GLOBAL
=========================================*/

html{

    overflow-y:scroll;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:transparent;

}

::-webkit-scrollbar-thumb{

    background:#b7b7b7;

    border-radius:20px;

    border:2px solid transparent;

    background-clip:content-box;

}

::-webkit-scrollbar-thumb:hover{

    background:#8a8a8a;

    background-clip:content-box;

}

/* Firefox */

*{

    scrollbar-width:thin;

    scrollbar-color:#b7b7b7 transparent;

}


/*=========================================
COMUNICADO
=========================================*/
.comunicado-documento{
    max-width:720px;
    margin:0 auto;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    line-height:1.6;
    color:#000;
    text-align:left !important;
}

.comunicado-documento p{
    text-align:justify !important;
    margin:12px 0;
    font-size:15px;
    font-weight:normal;
    color:#000;
}

.comunicado-cabecalho{
    text-align:center;
}

.comunicado-documento strong{
    font-weight:bold;
}

.modal{
    padding-right:0 !important;
}

.modal.show{
    padding-right:0 !important;
}

body.modal-open{

    overflow:hidden !important;

}

/* Não esconda a barra do documento inteiro */

html{

    scrollbar-gutter:stable;

}

/* Apenas evita o deslocamento quando o modal abre */

body.modal-open{

    padding-right:0 !important;

}

.btnQRCode{

    background:#6f42c1;
    color:#fff;
    border-color:#6f42c1;

}

.btnQRCode:hover{

    background:#5b35a3;
    border-color:#5b35a3;
    color:#fff;

}