/* =========================================
   TABELA
   ========================================= */

.tabela-inscricoes {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;

    border: 1px solid #d7dee5;
    border-radius: 10px;
    overflow: hidden;
}

/* =========================================
   COLUNAS
   ========================================= */

.tabela-inscricoes th:first-child,
.tabela-inscricoes td:first-child {
    width: 46%;
}

.tabela-inscricoes th:not(:first-child),
.tabela-inscricoes td:not(:first-child) {
    width: 13.5%;
}


/* =========================================
   TÍTULO DA TABELA
   ========================================= */

.tabela-inscricoes .titulo-tabela th {
    background-color: #227CAF;
    color: #ffffff;

    padding: 16px;

    font-size: 24px;
    font-weight: 700;
    text-align: left;

    border-bottom: 3px solid #176B98;
}


/* =========================================
   CABEÇALHO - PERÍODOS
   ========================================= */

.tabela-inscricoes .cabecalho-periodos th {
    background-color: #EAF3F8;
    color: #227CAF;

    padding: 12px 10px;

    font-size: 14px;
    font-weight: 700;
    text-align: center;

    border-right: 1px solid #D9E5EC;
    border-bottom: 1px solid #D9E5EC;
}

.tabela-inscricoes .cabecalho-periodos th:first-child {
    text-align: left;
    padding-left: 16px;
}

.tabela-inscricoes .cabecalho-periodos th:last-child {
    border-right: none;
}


/* =========================================
   CABEÇALHO - DATAS
   ========================================= */

.tabela-inscricoes .cabecalho-datas th {
    background-color: #F5F9FB;
    color: #5F7180;

    padding: 10px 8px;

    font-size: 12px;
    font-weight: 500;
    text-align: center;

    border-right: 1px solid #E3EBF0;
    border-bottom: 1px solid #E3EBF0;
}

.tabela-inscricoes .cabecalho-datas th:last-child {
    border-right: none;
}


/* =========================================
   CATEGORIAS
   ========================================= */

.tabela-inscricoes .categoria-graduacao {
    background-color: #F9E7A8;
}

.tabela-inscricoes .categoria-pos-graduacao {
    background-color: #EFC3A8;
}

.tabela-inscricoes .categoria-profissional {
    background-color: #BFD8AE;
}

.tabela-inscricoes .categoria-professor-educacao-basica {
    background-color: #AFCFE8;
}

.tabela-inscricoes .categoria-professor-educacao-basica-federal {
    background-color: #D9C7E8;
}


/* =========================================
   TEXTO DAS CATEGORIAS
   ========================================= */

.tabela-inscricoes .categoria-graduacao td,
.tabela-inscricoes .categoria-pos-graduacao td,
.tabela-inscricoes .categoria-profissional td,
.tabela-inscricoes .categoria-professor-educacao-basica td,
.tabela-inscricoes .categoria-professor-educacao-basica-federal td {
    padding: 11px 14px;

    color: #263238;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   LINHAS
   ========================================= */

.tabela-inscricoes .linha-graduacao {
    background-color: #FFFBEA;
}

.tabela-inscricoes .linha-pos-graduacao {
    background-color: #FCF0E8;
}

.tabela-inscricoes .linha-profissional {
    background-color: #EDF5E8;
}

.tabela-inscricoes .linha-professor-educacao-basica {
    background-color: #EDF5FC;
}

.tabela-inscricoes .linha-professor-educacao-basica-federal {
    background-color: #F5EFF9;
}


/* =========================================
   CÉLULAS
   ========================================= */

.tabela-inscricoes tbody td {
    padding: 13px 14px;

    vertical-align: middle;

    border-right: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tabela-inscricoes tbody td:last-child {
    border-right: none;
}


/* =========================================
   VALORES
   ========================================= */

.tabela-inscricoes tbody td:not(:first-child) {
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================
   ÚLTIMA LINHA
   ========================================= */

.tabela-inscricoes tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   HOVER
   ========================================= */

.tabela-inscricoes .linha-graduacao:hover td {
    background-color: #FFF3C4;
}

.tabela-inscricoes .linha-pos-graduacao:hover td {
    background-color: #F8DFCF;
}

.tabela-inscricoes .linha-profissional:hover td {
    background-color: #E2F0DA;
}

.tabela-inscricoes .linha-professor-educacao-basica:hover td {
    background-color: #DDEDF9;
}

.tabela-inscricoes .linha-professor-educacao-basica-federal:hover td {
    background-color: #ECE0F4;
}

.area-inscricao {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn-inscreva-se {
    display: inline-block;

    padding: 14px 42px;

    background-color: #227CAF;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 6px;

    transition: all 0.2s ease;
}

.btn-inscreva-se:hover {
    background-color: #176B98;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================
   TABELA - PUBLICAÇÃO DE ARTIGOS
   ========================================= */

.tabela-publicacao {
    width: 100%;
    table-layout: fixed;

    border-collapse: separate;
    border-spacing: 0;

    border: 1px solid #d7dee5;
    border-radius: 10px;
    overflow: hidden;

    font-family: inherit;
    font-size: 15px;
}


/* Cabeçalho */

.tabela-publicacao thead th {
    padding: 13px 16px;

    background-color: #227CAF;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-align: left;
    border-right: 1px solid #D9E5EC;
    border-bottom: 1px solid #D9E5EC;
}


/* Conteúdo */

.tabela-publicacao tbody td {
    padding: 16px;

    background-color: #EDF5FC;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


/* Coluna do valor */

.tabela-publicacao tbody td:last-child {
    width: 180px;

    text-align: center;

    font-weight: 700;
    font-size: 16px;

    white-space: nowrap;
}


/* Última linha */

.tabela-publicacao tbody tr:last-child td {
    border-bottom: none;
}


/* Hover */

.tabela-publicacao tbody tr:hover td {
    background-color: #E0EFFA;
}



/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 900px) {

    .tabela-inscricoes {
        font-size: 13px;
    }

    .tabela-inscricoes th,
    .tabela-inscricoes td {
        padding: 9px 7px !important;
    }

    .tabela-inscricoes .cabecalho-periodos th {
        font-size: 12px;
    }

    .tabela-inscricoes .cabecalho-datas th {
        font-size: 10px;
    }

    .tabela-inscricoes .categoria-graduacao td,
    .tabela-inscricoes .categoria-pos-graduacao td,
    .tabela-inscricoes .categoria-profissional td,
    .tabela-inscricoes .categoria-professor-educacao-basica td,
    .tabela-inscricoes .categoria-professor-educacao-basica-federal td {
        font-size: 14px;
    }
}