:root {
    color-scheme: only light;

    --sidebar-width: 286px;
    --topbar-height: 100px;

    --navy: #082f68;
    --navy-dark: #062858;
    --blue: #0876ec;
    --blue-dark: #0564d7;

    --text: #0b2e67;
    --muted: #6e82a0;

    --border: #dce7f3;

    --surface: #ffffff;
    --background: #f4f9fe;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color-scheme: only light;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            135deg,
            #f9fcff,
            #eef6fd
        );

    color: var(--text);
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

/* ============================================================
   APP
   ============================================================ */

.app-shell {
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;

    width: var(--sidebar-width);
    height: 100vh;

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    background:
        linear-gradient(
            180deg,
            #0864c9 0%,
            #0757af 35%,
            #073d7c 72%,
            #062d61 100%
        );

    color: white;

    z-index: 100;
}

.sidebar-client {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px 24px;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}

.logo-unipac {
    display: block;

    width: 190px;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}

.sidebar-nav {
    padding: 22px 17px 10px;
}

.side-item {
    width: 100%;

    min-height: 55px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 0 18px;

    margin: 0 0 7px;

    border: 0;
    border-radius: 9px;

    background: transparent;

    color: rgba(255,255,255,.96);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .15s ease,
        opacity .15s ease;
}

.side-item:hover {
    background:
        rgba(255,255,255,.08);
}

.side-active {
    background:
        linear-gradient(
            135deg,
            #1689ff,
            #0968e4
        );

    box-shadow:
        0 8px 20px rgba(0, 40, 100, .18);
}

.side-icon {
    flex: 0 0 25px;

    width: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
    line-height: 1;
}

.side-disabled {
    opacity: .72;

    cursor: default;
}

.side-disabled:hover {
    background: transparent;
}

.side-form {
    margin: 0;
}

.side-button {
    text-align: left;
}

.sidebar-bottom {
    margin-top: auto;

    padding:
        0 17px 20px;
}

.sidebar-separator {
    height: 1px;

    margin:
        8px 10px 12px;

    background:
        rgba(255,255,255,.32);
}

.help-item {
    margin-bottom: 9px;
}

.developer {
    padding-top: 5px;

    text-align: center;
}

.developer-label {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.75);

    font-size: 11px;
}

.logo-innova-sidebar {
    display: block;

    width: 170px;
    max-width: 90%;
    height: auto;

    margin: 0 auto 10px;

    object-fit: contain;
}

.developer strong {
    display: block;

    margin-bottom: 10px;

    font-size: 13px;
}

.version-badge {
    display: inline-block;

    margin-bottom: 9px;

    padding: 6px 9px;

    border-radius: 6px;

    background:
        #0879e9;

    font-size: 10px;
    font-weight: 700;
}

.developer small {
    display: block;

    font-size: 11px;

    color:
        rgba(255,255,255,.92);
}

/* ============================================================
   BODY / TOPBAR
   ============================================================ */

.app-body {
    min-height: 100vh;

    margin-left:
        var(--sidebar-width);

    display: flex;
    flex-direction: column;
}

.topbar {
    min-height:
        var(--topbar-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0 40px;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid #e1eaf4;

    box-shadow:
        0 3px 16px rgba(20,70,125,.04);
}

.system-brand strong {
    display: block;

    margin-bottom: 6px;

    color:
        #17365c;

    font-size: 21px;
}

.system-brand span {
    color:
        #6e829d;

    font-size: 13px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-innova-top {
    display: block;

    width: 135px;
    height: auto;

    object-fit: contain;
}

.topbar-divider {
    width: 1px;
    height: 48px;

    background:
        #dce5ef;
}

.user-avatar {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        #0876ec;

    color: white;

    font-size: 16px;
    font-weight: 700;
}

.user-info {
    min-width: 85px;
}

.user-info > span {
    display: block;

    color:
        #627894;

    font-size: 12px;
}

.user-info strong {
    display: block;

    margin-top: 2px;

    color:
        #123469;

    font-size: 14px;
}

.user-info small {
    display: block;

    margin-top: 3px;

    color:
        #7c8ea5;

    font-size: 10px;
}

/* ============================================================
   MAIN
   ============================================================ */

.main-area {
    flex: 1;

    width: 100%;

    padding:
        32px 38px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(220,239,255,.45),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #f9fcff,
            #eef6fd
        );
}

.central-page {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
}

.page-heading {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 25px;
}

.page-grid-icon {
    width: 40px;
    height: 40px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 4px;
}

.page-grid-icon span {
    display: block;

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            #21a8ff,
            #0872e8
        );
}

.page-heading h1 {
    margin: 0;

    color:
        #082c68;

    font-size: 35px;
    line-height: 1.1;
}

.page-heading p {
    margin: 7px 0 0;

    color:
        #607b9e;

    font-size: 14px;
}

/* ============================================================
   FILTER
   ============================================================ */

.filter-panel {
    padding: 22px 25px;

    margin-bottom: 24px;

    background:
        rgba(255,255,255,.98);

    border:
        1px solid var(--border);

    border-radius: 11px;

    box-shadow:
        0 9px 28px rgba(24,74,132,.06);
}

.filter-panel form {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px;

    align-items: end;

    gap: 22px;
}

.filter-field label {
    display: block;

    margin-bottom: 9px;

    color:
        #173e70;

    font-size: 12px;
    font-weight: 700;
}

.input-with-icon {
    position: relative;
}

.input-with-icon span {
    position: absolute;

    left: 16px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        #7488a3;

    font-size: 19px;

    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    height: 49px;

    padding:
        0 15px 0 48px;

    border:
        1px solid #cbd9e9;

    border-radius: 7px;

    background:
        #ffffff;

    color:
        #18385f;

    outline: none;
}

.input-with-icon input:focus {
    border-color:
        #0b7cf1;

    box-shadow:
        0 0 0 3px rgba(11,124,241,.10);
}

.input-with-icon input::placeholder {
    color:
        #94a4b6;
}

.primary-filter-button {
    height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #168aff,
            #0767e2
        );

    color: white;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 18px rgba(7,103,226,.16);
}

/* ============================================================
   SUMMARY
   ============================================================ */

.summary-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 24px;
}

.summary-box {
    min-height: 126px;

    display: flex;
    align-items: center;
    gap: 17px;

    padding:
        19px 21px;

    border:
        1px solid #e0e9f3;

    border-radius: 11px;

    box-shadow:
        0 8px 26px rgba(20,69,125,.05);
}

.summary-box-icon {
    flex: 0 0 59px;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: white;

    font-size: 25px;
    font-weight: 700;
}

.summary-box .summary-label {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 700;
}

.summary-box strong {
    display: block;

    color:
        #082e69;

    font-size: 25px;
    line-height: 1;
}

.summary-box .summary-word {
    font-size: 17px;
}

.summary-box small {
    display: block;

    margin-top: 7px;

    color:
        #71859f;

    font-size: 11px;
}

.summary-available {
    background:
        linear-gradient(
            135deg,
            #f8fffb,
            #eefaf4
        );
}

.summary-available .summary-box-icon {
    background:
        linear-gradient(
            135deg,
            #1dca75,
            #05a851
        );
}

.summary-available .summary-label {
    color:
        #109452;
}

.summary-profile {
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5ff
        );
}

.summary-profile .summary-box-icon {
    background:
        linear-gradient(
            135deg,
            #1293ff,
            #0869e4
        );
}

.summary-profile .summary-label {
    color:
        #176cc4;
}

.summary-publish {
    background:
        linear-gradient(
            135deg,
            #fffaf4,
            #fff0df
        );
}

.summary-publish .summary-box-icon {
    background:
        linear-gradient(
            135deg,
            #ff9c19,
            #f37300
        );
}

.summary-publish .summary-label {
    color:
        #e36e00;
}

.summary-limit {
    background:
        linear-gradient(
            135deg,
            #fbfcfe,
            #f2f5f9
        );
}

.summary-limit .summary-box-icon {
    background:
        linear-gradient(
            135deg,
            #889bb3,
            #697b91
        );
}

.summary-limit .summary-label {
    color:
        #60748c;
}

.summary-100 {
    font-size: 13px;
}

/* ============================================================
   TABLE / DOCUMENTS
   ============================================================ */

.documents-panel {
    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid #dfe8f2;

    border-radius: 11px;

    box-shadow:
        0 9px 30px rgba(20,70,126,.06);
}

.documents-header {
    min-height: 70px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        14px 24px;

    border-bottom:
        1px solid #e6edf5;
}

.document-title-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background:
        #ebf4ff;

    color:
        #096edc;

    font-size: 20px;
}

.documents-header h2 {
    margin: 0;

    color:
        #0c3270;

    font-size: 20px;
}

.documents-header p {
    margin: 4px 0 0;

    color:
        #7689a2;

    font-size: 10px;
}

.table-scroll {
    width: 100%;

    overflow-x: auto;
}

.employees-table {
    width: 100%;

    border-collapse: collapse;

    background:
        #ffffff;
}

.employees-table th {
    padding:
        14px 16px;

    background:
        #f3f7fc;

    color:
        #234b79;

    border-bottom:
        1px solid #e1eaf3;

    text-align: left;

    font-size: 11px;
    font-weight: 700;
}

.employees-table td {
    padding:
        14px 16px;

    color:
        #284663;

    border-bottom:
        1px solid #edf2f7;

    background:
        #ffffff;

    font-size: 11px;
}

.employees-table tbody tr:hover td {
    background:
        #f7fbff;
}

.employee-name {
    color:
        #153d71 !important;

    font-weight: 700;
}

.row-actions {
    display: flex;
    gap: 8px;

    white-space: nowrap;
}

.document-button {
    min-height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        7px 12px;

    border-radius: 6px;

    color: white;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
}

.document-blue {
    background:
        #0872e6;
}

.document-green {
    background:
        #0aab5e;
}

.empty-state {
    height: 255px;

    text-align: center;
}

.empty-state > * {
    display: block;
}

.empty-icon {
    margin-bottom: 12px;

    color:
        #94a7bf;

    font-size: 46px;
}

.empty-state strong {
    color:
        #0c3270;

    font-size: 17px;
}

.empty-state small {
    margin-top: 7px;

    color:
        #7d90a9;

    font-size: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.app-footer {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        18px 38px;

    margin-left: 0;

    border-top:
        1px solid #dce7f2;

    background:
        #f6faff;

    color:
        #7590b2;

    font-size: 11px;
}

/* ============================================================
   GENERIC / OTHER SCREENS
   ============================================================ */

.card {
    padding: 22px;

    margin-bottom: 20px;

    background: white;

    border:
        1px solid #dfe8f2;

    border-radius: 10px;

    box-shadow:
        0 7px 24px rgba(20,70,125,.05);
}

.btn,
button {
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        9px 12px;

    border-radius: 6px;

    background:
        #0872e6;

    color: white;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
}

.btn-secondary {
    background:
        #0aaa5c;
}

input,
select {
    max-width: 100%;
}

table {
    max-width: 100%;
}

.alert {
    padding:
        12px 15px;

    margin-bottom: 18px;

    border:
        1px solid #ecd66e;

    border-radius: 7px;

    background:
        #fff7d5;

    color:
        #5e5320;
}

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #073a79,
            #076bcf
        );
}

.auth-content {
    width:
        min(480px, 100%);
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    :root {
        --sidebar-width: 235px;
    }

    .summary-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .main-area {
        padding:
            28px 25px 20px;
    }

    .logo-unipac {
        width: 165px;
    }

}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {

    :root {
        --sidebar-width: 0px;
    }

    .app-shell {
        display: block;
    }

    .sidebar {
        position: static;

        width: 100%;
        height: auto;

        overflow: visible;
    }

    .sidebar-client {
        min-height: 100px;
    }

    .logo-unipac {
        width: 145px;
    }

    .sidebar-nav {
        padding:
            12px 14px;

        display: flex;
        gap: 7px;

        overflow-x: auto;
    }

    .side-item {
        flex:
            0 0 auto;

        width: auto;
        min-height: 44px;

        margin: 0;

        padding:
            0 13px;

        white-space: nowrap;
    }

    .side-disabled {
        display: none;
    }

    .sidebar-bottom {
        display: none;
    }

    .app-body {
        margin-left: 0;
    }

    .topbar {
        min-height: 85px;

        padding:
            15px 18px;
    }

    .system-brand span,
    .topbar-divider {
        display: none;
    }

    .logo-innova-top {
        width: 95px;
    }

    .user-info {
        display: none;
    }

    .user-avatar {
        width: 39px;
        height: 39px;
    }

    .main-area {
        padding:
            22px 15px 18px;
    }

    .page-heading {
        gap: 13px;
    }

    .page-grid-icon {
        flex: 0 0 33px;

        width: 33px;
        height: 33px;
    }

    .page-heading h1 {
        font-size: 27px;
    }

    .page-heading p {
        line-height: 1.45;
    }

    .filter-panel {
        padding: 18px;
    }

    .filter-panel form {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-box {
        min-height: 105px;
    }

    .row-actions {
        flex-direction: column;
    }

    .app-footer {
        flex-direction: column;

        align-items: flex-start;

        padding:
            18px 15px;
    }

}
/* ============================================================
   AJUSTE SIDEBAR APROVADA 2026-08-21
   ============================================================ */

/* Azul mais próximo da referência aprovada */

.sidebar {
    background:
        linear-gradient(
            180deg,
            #0b5fb7 0%,
            #0954a3 40%,
            #074487 72%,
            #06366f 100%
        ) !important;
}

/* Área da UNIPAC acompanha o mesmo azul */

.sidebar-client {
    background: transparent !important;
}

/* Ícones SVG */

.side-icon {
    flex: 0 0 26px !important;

    width: 26px !important;
    height: 26px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.side-icon svg {
    width: 22px !important;
    height: 22px !important;

    fill: none !important;

    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Central de Emissões usa quadrados preenchidos */

.side-active .side-icon svg rect {
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* Cor dos ícones e textos */

.side-item {
    color:
        rgba(255,255,255,.96) !important;
}

.side-disabled {
    color:
        rgba(220,235,250,.78) !important;

    opacity: 1 !important;
}

/* Botão selecionado mais próximo da referência */

.side-active {
    background:
        linear-gradient(
            135deg,
            #1687f7,
            #0969e2
        ) !important;

    box-shadow:
        0 7px 18px rgba(0,42,105,.18) !important;
}

/* Linha acima da ajuda */

.sidebar-separator {
    background:
        rgba(205,232,255,.45) !important;
}

/* Logo Innova no rodapé */

.logo-innova-sidebar {
    width: 168px !important;

    margin:
        4px auto 12px !important;

    filter:
        brightness(1.35)
        saturate(1.2) !important;
}

.developer-label {
    color:
        rgba(235,246,255,.84) !important;
}

/* Mantém responsividade */

@media (max-width: 760px) {

    .side-icon {
        width: 22px !important;
        height: 22px !important;
        flex-basis: 22px !important;
    }

    .side-icon svg {
        width: 19px !important;
        height: 19px !important;
    }

}


/* ============================================================
   TEXTO DO MENU LATERAL - 2026-08-21
   ============================================================ */

.side-item,
.sidebar-logout {
    font-size: 15px !important;
    font-weight: 700 !important;
}

.side-disabled {
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Ajuda */
.sidebar-help,
.sidebar-help a {
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Mantém tamanho confortável em celular */
@media (max-width: 760px) {
    .side-item,
    .sidebar-logout,
    .side-disabled,
    .sidebar-help,
    .sidebar-help a {
        font-size: 14px !important;
    }
}


/* ============================================================
   MENU LATERAL MAIOR - AJUSTE FINAL 2026-08-21
   ============================================================ */

/* Textos principais do menu */
.side-item,
.sidebar-logout,
.side-disabled,
.sidebar-help,
.sidebar-help a {
    font-size: 17px !important;
    font-weight: 700 !important;
}

/* Área reservada para cada ícone */
.side-icon {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Tamanho real dos SVGs */
.side-icon svg {
    width: 25px !important;
    height: 25px !important;

    stroke-width: 2 !important;
}

/* Dá um pouco mais de espaço entre ícone e texto */
.side-item,
.sidebar-logout {
    gap: 15px !important;
}

/* Ajuda */
.sidebar-help {
    gap: 15px !important;
}

/* Mantém proporção no celular */
@media (max-width: 760px) {

    .side-item,
    .sidebar-logout,
    .side-disabled,
    .sidebar-help,
    .sidebar-help a {
        font-size: 16px !important;
    }

    .side-icon {
        width: 27px !important;
        height: 27px !important;
        flex-basis: 27px !important;
    }

    .side-icon svg {
        width: 23px !important;
        height: 23px !important;
    }
}


/* ============================================================
   ICONES MAIORES DOS CARDS - 2026-08-21
   ============================================================ */

.summary-box-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 30px !important;
    font-weight: 700 !important;

    border-radius: 12px !important;
}

/* Caso os ícones sejam SVG */
.summary-box-icon svg {
    width: 32px !important;
    height: 32px !important;
}

/* Tablet */
@media (max-width: 1000px) {
    .summary-box-icon {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        font-size: 27px !important;
    }

    .summary-box-icon svg {
        width: 29px !important;
        height: 29px !important;
    }
}

/* Celular */
@media (max-width: 700px) {
    .summary-box-icon {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        font-size: 25px !important;
    }

    .summary-box-icon svg {
        width: 27px !important;
        height: 27px !important;
    }
}


/* ============================================================
   CENTRAL REFERENCIA EXATA 2026-08-21
   ============================================================ */


/* TITULO */

.central-reference {
    max-width: 1450px !important;
}

.reference-heading {
    margin-bottom: 25px !important;
}

.reference-heading h1 {
    font-size: 37px !important;
    font-weight: 700 !important;
    letter-spacing: -0.7px !important;
}

.reference-heading p {
    margin-top: 5px !important;

    font-size: 15px !important;
    line-height: 1.35 !important;
}

.reference-grid-icon {
    width: 42px !important;
    height: 42px !important;

    gap: 4px !important;
}

.reference-grid-icon span {
    border-radius: 4px !important;
}


/* ============================================================
   PAINEL DO FILTRO
   ============================================================ */

.reference-filter-panel {
    margin-bottom: 23px !important;

    padding:
        20px 28px
        25px !important;

    background:
        rgba(255,255,255,.98) !important;

    border:
        1px solid #dbe6f2 !important;

    border-radius:
        13px !important;

    box-shadow:
        0 8px 25px
        rgba(25,73,130,.055) !important;
}

.reference-intro {
    margin-bottom:
        17px !important;

    color:
        #0765ca !important;

    font-size:
        16px !important;

    font-weight:
        700 !important;
}

.reference-filter-grid {
    display: grid !important;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr)
        310px !important;

    gap:
        27px !important;

    align-items:
        end !important;
}

.reference-filter-group label {
    display:
        block !important;

    margin:
        0 0 8px 43px !important;

    color:
        #12346b !important;

    font-size:
        14px !important;

    font-weight:
        700 !important;
}

.reference-select-line {
    display:
        grid !important;

    grid-template-columns:
        44px
        minmax(0,1fr) !important;

    gap:
        8px !important;
}

.reference-calendar-icon {
    width:
        44px !important;

    height:
        49px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    border-radius:
        8px !important;

    background:
        #f2f6fb !important;

    color:
        #0d3474 !important;
}

.reference-calendar-icon svg {
    width:
        25px !important;

    height:
        25px !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        2 !important;

    stroke-linecap:
        round !important;

    stroke-linejoin:
        round !important;
}

.reference-filter-group select {
    width:
        100% !important;

    height:
        49px !important;

    padding:
        0 17px !important;

    border:
        1px solid
        #c6d7e9 !important;

    border-radius:
        7px !important;

    outline:
        none !important;

    background:
        #ffffff !important;

    color:
        #123467 !important;

    font-size:
        16px !important;

    font-weight:
        600 !important;
}

.reference-filter-button {
    height:
        49px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    gap:
        13px !important;

    padding:
        0 25px !important;

    border:
        0 !important;

    border-radius:
        7px !important;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0766df
        ) !important;

    color:
        white !important;

    font-size:
        17px !important;

    font-weight:
        700 !important;

    box-shadow:
        0 8px 18px
        rgba(7,102,223,.16) !important;

    cursor:
        pointer !important;
}

.reference-filter-button svg {
    width:
        24px !important;

    height:
        24px !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        2.3 !important;

    stroke-linecap:
        round !important;
}


/* ============================================================
   CARDS
   ============================================================ */

.reference-summary-grid {
    display:
        grid !important;

    grid-template-columns:
        repeat(4,minmax(0,1fr)) !important;

    gap:
        18px !important;

    margin-bottom:
        23px !important;
}

.reference-summary-card {
    min-height:
        132px !important;

    display:
        flex !important;

    align-items:
        center !important;

    gap:
        20px !important;

    padding:
        21px 24px !important;

    border:
        1px solid
        #dfe8f2 !important;

    border-radius:
        13px !important;

    box-shadow:
        0 7px 23px
        rgba(24,69,124,.055) !important;
}

.reference-summary-icon {
    flex:
        0 0 78px !important;

    width:
        78px !important;

    height:
        78px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    border-radius:
        11px !important;

    color:
        white !important;
}

.reference-summary-icon svg {
    width:
        39px !important;

    height:
        39px !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        2 !important;

    stroke-linecap:
        round !important;

    stroke-linejoin:
        round !important;
}

.reference-summary-content {
    min-width:
        0 !important;
}

.reference-summary-title {
    display:
        block !important;

    margin-bottom:
        5px !important;

    font-size:
        15px !important;

    font-weight:
        700 !important;

    line-height:
        1.2 !important;
}

.reference-summary-content strong {
    display:
        block !important;

    margin-bottom:
        6px !important;

    color:
        #082d68 !important;

    font-size:
        26px !important;

    font-weight:
        700 !important;

    line-height:
        1 !important;
}

.reference-summary-content small {
    display:
        block !important;

    color:
        #607895 !important;

    font-size:
        13px !important;

    line-height:
        1.25 !important;
}

.reference-green {
    background:
        linear-gradient(
            135deg,
            #f8fffb,
            #f0faf5
        ) !important;
}

.reference-green
.reference-summary-icon {
    background:
        linear-gradient(
            135deg,
            #20c978,
            #05aa52
        ) !important;
}

.reference-green
.reference-summary-title {
    color:
        #109451 !important;
}


.reference-blue {
    background:
        linear-gradient(
            135deg,
            #f9fcff,
            #f1f6ff
        ) !important;
}

.reference-blue
.reference-summary-icon {
    background:
        linear-gradient(
            135deg,
            #1594ff,
            #0969e7
        ) !important;
}

.reference-blue
.reference-summary-title {
    color:
        #0870dc !important;
}


.reference-orange {
    background:
        linear-gradient(
            135deg,
            #fffaf5,
            #fff1e4
        ) !important;
}

.reference-orange
.reference-summary-icon {
    background:
        linear-gradient(
            135deg,
            #ffa01c,
            #f37800
        ) !important;
}

.reference-orange
.reference-summary-title {
    color:
        #ea7000 !important;
}


.reference-gray {
    background:
        linear-gradient(
            135deg,
            #fbfcfe,
            #f4f6f9
        ) !important;
}

.reference-gray
.reference-summary-icon {
    background:
        linear-gradient(
            135deg,
            #8497af,
            #66788d
        ) !important;
}

.reference-gray
.reference-summary-title {
    color:
        #425b78 !important;
}

.reference-update-value {
    font-size:
        26px !important;
}


/* ============================================================
   CABECALHO DA TABELA
   ============================================================ */

.reference-documents {
    border-radius:
        13px !important;
}

.reference-documents
.documents-header {
    min-height:
        74px !important;

    padding:
        15px 26px !important;
}

.reference-documents
.document-title-icon {
    width:
        43px !important;

    height:
        43px !important;

    border-radius:
        8px !important;
}

.reference-documents
.document-title-icon svg {
    width:
        25px !important;

    height:
        25px !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        2 !important;
}

.reference-documents
.documents-header h2 {
    font-size:
        25px !important;
}

.reference-documents
.documents-header p {
    margin-top:
        3px !important;

    font-size:
        12px !important;
}


/* TABELA */

.reference-table th {
    padding:
        16px 17px !important;

    font-size:
        13px !important;

    font-weight:
        700 !important;
}

.reference-table td {
    padding:
        15px 17px !important;

    font-size:
        13px !important;
}

.reference-table
.employee-name {
    font-size:
        13px !important;

    font-weight:
        700 !important;
}

.reference-table
.document-button {
    min-height:
        36px !important;

    padding:
        8px 14px !important;

    border-radius:
        6px !important;

    font-size:
        12px !important;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .reference-filter-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;
    }

    .reference-filter-button {
        grid-column:
            1 / -1 !important;
    }

    .reference-summary-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .reference-filter-grid {
        grid-template-columns:
            1fr !important;
    }

    .reference-filter-button {
        grid-column:
            auto !important;
    }

    .reference-summary-grid {
        grid-template-columns:
            1fr !important;
    }

    .reference-summary-card {
        min-height:
            115px !important;
    }

    .reference-summary-icon {
        width:
            65px !important;

        height:
            65px !important;

        flex-basis:
            65px !important;
    }

}


/* ============================================================
   LOGIN NOVO INNOVA RH 2026-08-24
   ============================================================ */

.auth-page {
    min-height: 100vh !important;
    padding: 0 !important;
    background: #f4f9fe !important;
}

.auth-content {
    width: 100% !important;
    min-height: 100vh !important;
}

.login-shell {
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(420px, 46%)
        minmax(0, 54%);

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef6fd
        );
}


/* ============================================================
   PAINEL ESQUERDO
   ============================================================ */

.login-brand-panel {
    position: relative;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 18%,
            rgba(33,145,255,.42),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #0b68c9 0%,
            #0754a6 45%,
            #073d7e 72%,
            #052e62 100%
        );

    color: #ffffff;
}

.login-brand-panel::before {
    content: "";

    position: absolute;
    inset: auto -90px -140px auto;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.10);
}

.login-brand-panel::after {
    content: "";

    position: absolute;
    inset: 70px auto auto -150px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);
}

.login-brand-content {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    flex-direction: column;

    padding:
        54px 58px 46px;
}

.login-unipac-logo {
    width: 235px;
    max-width: 82%;

    height: auto;

    object-fit: contain;
}

.login-brand-text {
    margin: auto 0;
}

.login-brand-kicker {
    display: inline-block;

    margin-bottom: 13px;

    color:
        rgba(255,255,255,.78);

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}

.login-brand-text h1 {
    max-width: 560px;

    margin: 0;

    font-size: 42px;
    line-height: 1.08;

    letter-spacing: -1px;
}

.login-brand-text p {
    max-width: 540px;

    margin:
        20px 0 0;

    color:
        rgba(255,255,255,.82);

    font-size: 17px;
    line-height: 1.65;
}

.login-developed {
    display: flex;
    align-items: center;
    gap: 18px;

    padding-top: 28px;

    border-top:
        1px solid rgba(255,255,255,.25);
}

.login-developed span {
    color:
        rgba(255,255,255,.72);

    font-size: 12px;
}

.login-innova-logo {
    width: 145px;
    height: auto;

    object-fit: contain;

    filter:
        brightness(1.28)
        saturate(1.1);
}


/* ============================================================
   PAINEL DIREITO
   ============================================================ */

.login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        50px;
}

.login-card {
    width: 100%;
    max-width: 490px;

    padding:
        42px 44px 38px;

    background:
        rgba(255,255,255,.98);

    border:
        1px solid #dce7f2;

    border-radius:
        18px;

    box-shadow:
        0 20px 55px rgba(20,67,120,.10);
}

.login-card-header {
    margin-bottom: 30px;

    text-align: center;
}

.login-card-logo {
    width: 150px;
    height: auto;

    margin-bottom: 24px;

    object-fit: contain;
}

.login-card-header h2 {
    margin: 0;

    color:
        #0b326f;

    font-size: 31px;
    line-height: 1.1;
}

.login-card-header p {
    margin:
        9px 0 0;

    color:
        #7387a2;

    font-size: 14px;
}

.login-error {
    margin-bottom: 20px;

    padding:
        13px 15px;

    border:
        1px solid #f3b4b4;

    border-radius:
        8px;

    background:
        #fff2f2;

    color:
        #b42318;

    font-size: 13px;
    font-weight: 700;
}

.login-form {
    display: grid;
    gap: 20px;
}

.login-field label {
    display: block;

    margin-bottom: 8px;

    color:
        #173e70;

    font-size: 13px;
    font-weight: 700;
}

.login-input-wrap {
    position: relative;
}

.login-field-icon {
    position: absolute;

    left: 15px;
    top: 50%;

    width: 22px;
    height: 22px;

    transform:
        translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        #7890ad;

    pointer-events: none;
}

.login-field-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.login-input-wrap input {
    width: 100% !important;
    height: 52px !important;

    padding:
        0 15px 0 48px !important;

    border:
        1px solid #cbd9e8 !important;

    border-radius:
        8px !important;

    background:
        #ffffff !important;

    color:
        #17385e !important;

    outline: none !important;

    font-size:
        14px !important;
}

.login-input-wrap input:focus {
    border-color:
        #0b7cf0 !important;

    box-shadow:
        0 0 0 3px rgba(11,124,240,.10) !important;
}

.login-submit {
    height: 52px;

    margin-top: 3px;

    border: 0;

    border-radius:
        8px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0768e3
        );

    color:
        #ffffff;

    font-size:
        15px;
    font-weight:
        700;

    cursor:
        pointer;

    box-shadow:
        0 10px 24px rgba(7,104,227,.18);
}

.login-submit:hover {
    filter:
        brightness(.98);
}

.login-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top:
        25px;

    padding-top:
        20px;

    border-top:
        1px solid #e6edf4;

    color:
        #7a8da6;

    font-size:
        11px;
}

.login-security svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        #0a76e9;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .login-shell {
        grid-template-columns:
            42%
            58%;
    }

    .login-brand-content {
        padding:
            42px 35px;
    }

    .login-brand-text h1 {
        font-size:
            34px;
    }

    .login-form-panel {
        padding:
            35px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .login-shell {
        display: block;
    }

    .login-brand-panel {
        min-height: 245px;
    }

    .login-brand-content {
        min-height: 245px;

        padding:
            28px 25px;
    }

    .login-unipac-logo {
        width:
            160px;
    }

    .login-brand-text {
        margin:
            25px 0 0;
    }

    .login-brand-kicker {
        font-size:
            11px;
    }

    .login-brand-text h1 {
        max-width:
            390px;

        font-size:
            28px;
    }

    .login-brand-text p {
        display:
            none;
    }

    .login-developed {
        display:
            none;
    }

    .login-form-panel {
        padding:
            25px 17px 35px;
    }

    .login-card {
        max-width:
            100%;

        padding:
            30px 23px;

        border-radius:
            14px;
    }

    .login-card-logo {
        width:
            125px;
    }

    .login-card-header h2 {
        font-size:
            27px;
    }

}


/* ============================================================
   CENTRAL DE IMPORTACOES INNOVA RH 2026-08-24
   ============================================================ */

.imports-page {
    width: 100%;
    max-width: 1450px;
}

.imports-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.imports-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0865dc
        );

    color: #ffffff;

    box-shadow:
        0 9px 20px rgba(8,101,220,.18);
}

.imports-heading-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 35px;
    line-height: 1.1;

    letter-spacing: -.6px;
}

.imports-heading p {
    margin: 5px 0 0;

    color: #6c8199;

    font-size: 14px;
}


/* ============================================================
   AVISO
   ============================================================ */

.imports-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 22px;

    padding: 17px 20px;

    border:
        1px solid #cfe2f7;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #f4f9ff,
            #edf6ff
        );
}

.imports-notice-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #e0efff;

    color: #0872df;
}

.imports-notice-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-notice strong {
    display: block;

    margin-bottom: 3px;

    color: #12508d;

    font-size: 14px;
}

.imports-notice p {
    margin: 0;

    color: #54728f;

    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   CARDS DE ACAO
   ============================================================ */

.imports-actions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 22px;
}

.imports-action-card {
    padding: 24px;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.imports-action-blue {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f6faff
        );
}

.imports-action-green {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f5fcf8
        );
}

.imports-action-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin-bottom: 22px;
}

.imports-action-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #ffffff;
}

.imports-action-blue
.imports-action-icon {
    background:
        linear-gradient(
            135deg,
            #168df8,
            #0767df
        );
}

.imports-action-green
.imports-action-icon {
    background:
        linear-gradient(
            135deg,
            #20c979,
            #08a956
        );
}

.imports-action-icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-action-top h2 {
    margin: 2px 0 5px;

    color: #123d72;

    font-size: 21px;
}

.imports-action-top p {
    margin: 0;

    color: #71859b;

    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   UPLOAD
   ============================================================ */

.imports-upload-form {
    display: grid;
    gap: 13px;
}

.imports-file-field {
    min-height: 75px;

    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        12px 15px;

    border:
        1px dashed #b8ccdf;

    border-radius: 9px;

    background: #ffffff;

    cursor: pointer;
}

.imports-file-field:hover {
    border-color: #5b9ee3;

    background: #fbfdff;
}

.imports-file-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fd;

    color: #176ec4;
}

.imports-file-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-file-text {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.imports-file-text strong {
    color: #244b73;

    font-size: 13px;
}

.imports-file-text small {
    margin-top: 3px;

    color: #8495a8;

    font-size: 11px;
}

.imports-file-field input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}

.imports-main-button {
    min-height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding:
        10px 18px;

    border: 0;

    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.imports-main-button svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-button-blue {
    background:
        linear-gradient(
            135deg,
            #158cf7,
            #0768df
        );

    box-shadow:
        0 8px 18px rgba(7,104,223,.15);
}

.imports-button-green {
    background:
        linear-gradient(
            135deg,
            #1fc678,
            #08a653
        );

    box-shadow:
        0 8px 18px rgba(8,166,83,.14);
}


/* ============================================================
   HISTORICO
   ============================================================ */

.imports-history {
    overflow: hidden;

    border:
        1px solid #dde7f1;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.imports-history-header {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        15px 23px;

    border-bottom:
        1px solid #e4ebf3;
}

.imports-history-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fe;

    color: #0b72de;
}

.imports-history-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-history-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 23px;
}

.imports-history-header p {
    margin: 3px 0 0;

    color: #7a8da2;

    font-size: 12px;
}


/* ============================================================
   TABELA
   ============================================================ */

.imports-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.imports-table {
    width: 100%;

    border-collapse: collapse;
}

.imports-table th {
    padding:
        14px 15px;

    background: #f4f8fc;

    color: #345a7f;

    border-bottom:
        1px solid #dce6f0;

    font-size: 11px;
    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}

.imports-table td {
    padding:
        14px 15px;

    border-bottom:
        1px solid #edf1f5;

    color: #344f69;

    font-size: 12px;

    vertical-align: middle;
}

.imports-table tbody tr:hover td {
    background: #f8fbff;
}

.imports-id,
.imports-competencia {
    color: #174a7e !important;

    font-weight: 700;
}

.imports-file-name {
    max-width: 340px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* ============================================================
   STATUS
   ============================================================ */

.imports-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding:
        5px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;
}

.imports-status-blue {
    background: #e9f3ff;
    color: #0968c9;
}

.imports-status-orange {
    background: #fff1df;
    color: #c66500;
}

.imports-status-green {
    background: #e8f8ef;
    color: #07894b;
}

.imports-status-gray {
    background: #edf1f5;
    color: #64758a;
}


/* ============================================================
   ACOES DA TABELA
   ============================================================ */

.imports-row-actions {
    display: flex;
    align-items: center;
    gap: 7px;

    white-space: nowrap;
}

.imports-row-actions form {
    margin: 0;
}

.imports-action-button {
    min-height: 31px;

    padding:
        6px 10px;

    border: 0;

    border-radius: 6px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}

.imports-process-button {
    background: #1278e1;
}

.imports-cancel-button {
    background: #cf4b4b;
}

.imports-check-button {
    background: #0b9d57;
}

.imports-no-action {
    color: #7a8c9e;

    font-size: 11px;
}


/* ============================================================
   VAZIO
   ============================================================ */

.imports-empty {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;
}

.imports-empty-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 12px;

    background: #eff5fb;

    color: #6c89a7;
}

.imports-empty-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.imports-empty strong {
    color: #345675;

    font-size: 15px;
}

.imports-empty p {
    margin:
        5px 0 0;

    color: #8797a8;

    font-size: 12px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .imports-actions-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .imports-heading {
        align-items: flex-start;
    }

    .imports-heading h1 {
        font-size: 28px;
    }

    .imports-heading-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .imports-notice {
        padding: 15px;
    }

    .imports-action-card {
        padding: 18px;
    }

    .imports-action-top {
        gap: 12px;
    }

    .imports-action-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .imports-action-top h2 {
        font-size: 19px;
    }

    .imports-history-header {
        padding:
            14px 16px;
    }

    .imports-history-header h2 {
        font-size: 20px;
    }

}


/* ============================================================
   PREPARAR HOLERITE INNOVA RH 2026-08-24
   ============================================================ */

.holerite-page {
    width: 100%;
    max-width: 1450px;
}


/* CABECALHO */

.holerite-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 23px;
}

.holerite-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.holerite-heading-icon svg,
.holerite-section-icon svg,
.holerite-document-icon svg,
.holerite-pdf-button svg,
.holerite-filter-button svg,
.holerite-file-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.holerite-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 35px;

    line-height: 1.1;
}

.holerite-heading p {
    margin: 5px 0 0;

    color: #6d8198;

    font-size: 14px;
}


/* CARDS */

.holerite-employee-card,
.holerite-filter-card,
.holerite-result-card,
.holerite-document-card,
.holerite-upload-card,
.holerite-existing-card {
    margin-bottom: 20px;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.holerite-section-header {
    min-height: 72px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        14px 22px;

    border-bottom:
        1px solid #e5edf5;
}

.holerite-section-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fe;

    color: #0b72de;
}

.holerite-section-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 21px;
}

.holerite-section-header p {
    margin: 3px 0 0;

    color: #7a8da2;

    font-size: 12px;
}


/* FUNCIONARIO */

.holerite-employee-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        2fr;

    gap: 0;

    padding:
        0 22px 22px;
}

.holerite-info-item {
    min-height: 82px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        16px;

    border-right:
        1px solid #edf1f5;
}

.holerite-info-item:last-child {
    border-right: 0;
}

.holerite-info-item span {
    margin-bottom: 5px;

    color: #7589a0;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.holerite-info-item strong {
    color: #163f70;

    font-size: 14px;

    word-break: break-word;
}


/* FILTRO */

.holerite-filter-form {
    display: grid;

    grid-template-columns:
        1fr
        1.25fr
        1fr
        240px;

    align-items: end;

    gap: 16px;

    padding:
        20px 22px 22px;
}

.holerite-filter-field label {
    display: block;

    margin-bottom: 7px;

    color: #274d79;

    font-size: 12px;
    font-weight: 700;
}

.holerite-filter-field input,
.holerite-filter-field select {
    width: 100%;
    height: 48px;

    padding:
        0 13px;

    border:
        1px solid #cad9e8;

    border-radius: 7px;

    background: #ffffff;

    color: #163d6d;

    outline: none;
}

.holerite-filter-field input:focus,
.holerite-filter-field select:focus {
    border-color: #0b7cf0;

    box-shadow:
        0 0 0 3px rgba(11,124,240,.10);
}

.holerite-filter-button {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 0;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #168cf8,
            #0767df
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


/* RESULTADO */

.holerite-result-header {
    padding:
        20px 22px;

    border-bottom:
        1px solid #e5edf5;
}

.holerite-result-label {
    display: block;

    margin-bottom: 4px;

    color: #6e87a2;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.holerite-result-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 24px;
}

.holerite-result-info {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-bottom:
        1px solid #e6edf5;
}

.holerite-result-info > div {
    padding:
        17px 22px;

    border-right:
        1px solid #edf1f5;
}

.holerite-result-info > div:last-child {
    border-right: 0;
}

.holerite-result-info span {
    display: block;

    margin-bottom: 5px;

    color: #768ba3;

    font-size: 11px;
}

.holerite-result-info strong {
    color: #153e70;

    font-size: 14px;
}


/* TABELAS */

.holerite-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.holerite-events-table,
.holerite-documents-table {
    width: 100%;

    border-collapse: collapse;
}

.holerite-events-table th,
.holerite-documents-table th {
    padding:
        13px 15px;

    background: #f4f8fc;

    color: #345a7f;

    border-bottom:
        1px solid #dce6f0;

    font-size: 11px;
    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}

.holerite-events-table td,
.holerite-documents-table td {
    padding:
        13px 15px;

    border-bottom:
        1px solid #edf1f5;

    color: #344f69;

    font-size: 12px;
}

.holerite-events-table tbody tr:hover td,
.holerite-documents-table tbody tr:hover td {
    background: #f8fbff;
}

.holerite-value {
    white-space: nowrap;

    font-weight: 700;

    color: #174a7e !important;
}


/* TOTAIS */

.holerite-totals {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    padding:
        19px 22px 22px;
}

.holerite-total {
    min-height: 82px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        15px 18px;

    border-radius: 9px;
}

.holerite-total span {
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
}

.holerite-total strong {
    font-size: 21px;
}

.holerite-total-green {
    background: #ecfaf3;
    color: #09884b;
}

.holerite-total-red {
    background: #fff0f0;
    color: #b83b3b;
}

.holerite-total-blue {
    background: #edf5ff;
    color: #0867cb;
}


/* DOCUMENTO */

.holerite-document-card {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding:
        18px 22px;
}

.holerite-document-text {
    display: flex;
    align-items: center;
    gap: 13px;
}

.holerite-document-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf5fe;

    color: #0b72de;
}

.holerite-document-text h2 {
    margin: 0;

    color: #103d74;

    font-size: 19px;
}

.holerite-document-text p {
    margin: 4px 0 0;

    color: #7b8da2;

    font-size: 12px;
}

.holerite-pdf-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding:
        10px 18px;

    border-radius: 7px;

    background: #0872e6;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}


/* UPLOAD */

.holerite-green-icon {
    background: #eaf9f1;
    color: #09a85a;
}

.holerite-upload-form {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        180px;

    gap: 15px;

    padding:
        20px 22px 22px;
}

.holerite-file-field {
    min-height: 67px;

    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        11px 15px;

    border:
        1px dashed #bbccdc;

    border-radius: 8px;

    cursor: pointer;
}

.holerite-file-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fe;

    color: #0b72de;
}

.holerite-file-field > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.holerite-file-field strong {
    color: #244b73;

    font-size: 12px;
}

.holerite-file-field small {
    margin-top: 3px;

    color: #8495a8;

    font-size: 10px;
}

.holerite-file-field input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.holerite-upload-button {
    border: 0;

    border-radius: 7px;

    background: #0aaa5c;

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


/* DOCUMENTOS EXISTENTES */

.holerite-status {
    display: inline-flex;

    padding:
        5px 9px;

    border-radius: 999px;

    background: #edf3f9;

    color: #486782;

    font-size: 10px;
    font-weight: 700;
}

.holerite-publish-button {
    min-height: 32px;

    padding:
        6px 12px;

    border: 0;

    border-radius: 6px;

    background: #0aab5e;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


/* TABLET */

@media (max-width: 1050px) {

    .holerite-employee-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .holerite-filter-form {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .holerite-heading h1 {
        font-size: 28px;
    }

    .holerite-employee-grid,
    .holerite-result-info,
    .holerite-totals,
    .holerite-filter-form,
    .holerite-upload-form {
        grid-template-columns: 1fr;
    }

    .holerite-info-item,
    .holerite-result-info > div {
        border-right: 0;

        border-bottom:
            1px solid #edf1f5;
    }

    .holerite-document-card {
        align-items: stretch;
        flex-direction: column;
    }

    .holerite-pdf-button {
        width: 100%;
    }

}


/* ============================================================
   FICHA FINANCEIRA INNOVA RH 2026-08-24
   ============================================================ */

.financial-page {
    width: 100%;
    max-width: 1450px;
}


/* ============================================================
   CABECALHO
   ============================================================ */

.financial-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 23px;
}

.financial-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.financial-heading-icon svg,
.financial-section-icon svg,
.financial-document-icon svg,
.financial-pdf-button svg,
.financial-filter-button svg,
.financial-periods-icon svg,
.financial-info-note-icon svg,
.financial-empty-icon svg,
.financial-bases-title svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.financial-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 35px;
    line-height: 1.1;
}

.financial-heading p {
    margin: 5px 0 0;

    color: #6d8198;

    font-size: 14px;
}


/* ============================================================
   CARDS / CABECALHOS
   ============================================================ */

.financial-card,
.financial-summary-card,
.financial-period-card {
    margin-bottom: 20px;

    overflow: hidden;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.financial-section-header {
    min-height: 72px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        14px 22px;

    border-bottom:
        1px solid #e5edf5;
}

.financial-section-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fe;

    color: #0b72de;
}

.financial-section-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 21px;
}

.financial-section-header p {
    margin: 3px 0 0;

    color: #7a8da2;

    font-size: 12px;
}


/* ============================================================
   FUNCIONARIO
   ============================================================ */

.financial-employee-grid {
    display: grid;

    grid-template-columns:
        2fr
        .8fr
        1.2fr
        1.7fr
        1fr
        1fr;

    padding:
        0 22px 22px;
}

.financial-info-item {
    min-height: 82px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        15px;

    border-right:
        1px solid #edf1f5;
}

.financial-info-item:last-child {
    border-right: 0;
}

.financial-info-item span {
    margin-bottom: 5px;

    color: #7589a0;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.financial-info-item strong {
    color: #163f70;

    font-size: 13px;

    word-break: break-word;
}


/* ============================================================
   FILTRO
   ============================================================ */

.financial-filter-form {
    display: grid;

    grid-template-columns:
        1fr
        1.25fr
        1fr
        1.25fr
        220px;

    align-items: end;

    gap: 15px;

    padding:
        20px 22px 22px;
}

.financial-filter-field label {
    display: block;

    margin-bottom: 7px;

    color: #274d79;

    font-size: 12px;
    font-weight: 700;
}

.financial-filter-field input,
.financial-filter-field select {
    width: 100%;
    height: 48px;

    padding:
        0 13px;

    border:
        1px solid #cad9e8;

    border-radius: 7px;

    background: #ffffff;

    color: #163d6d;

    outline: none;
}

.financial-filter-field input:focus,
.financial-filter-field select:focus {
    border-color: #0b7cf0;

    box-shadow:
        0 0 0 3px rgba(11,124,240,.10);
}

.financial-filter-button {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 0;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #168cf8,
            #0767df
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


/* ============================================================
   RESUMO
   ============================================================ */

.financial-totals {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    padding:
        19px 22px 22px;
}

.financial-total {
    min-height: 86px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        15px 18px;

    border-radius: 9px;
}

.financial-total span {
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
}

.financial-total strong {
    font-size: 21px;
}

.financial-total-green {
    background: #ecfaf3;
    color: #09884b;
}

.financial-total-red {
    background: #fff0f0;
    color: #b83b3b;
}

.financial-total-blue {
    background: #edf5ff;
    color: #0867cb;
}


/* ============================================================
   GERAR PDF
   ============================================================ */

.financial-document-card {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 22px;

    padding:
        18px 22px;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.financial-document-text {
    display: flex;
    align-items: center;
    gap: 13px;
}

.financial-document-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf5fe;

    color: #0b72de;
}

.financial-document-text h2 {
    margin: 0;

    color: #103d74;

    font-size: 19px;
}

.financial-document-text p {
    margin: 4px 0 0;

    color: #7b8da2;

    font-size: 12px;
}

.financial-pdf-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding:
        10px 18px;

    border-radius: 7px;

    background: #0872e6;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   CABECALHO DAS COMPETENCIAS
   ============================================================ */

.financial-periods-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin:
        5px 0 14px;
}

.financial-periods-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf5fe;

    color: #0b72de;
}

.financial-periods-heading h2 {
    margin: 0;

    color: #103d74;

    font-size: 22px;
}

.financial-periods-heading p {
    margin: 3px 0 0;

    color: #7b8da2;

    font-size: 12px;
}


/* ============================================================
   COMPETENCIA
   ============================================================ */

.financial-period-header {
    min-height: 104px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding:
        18px 22px;

    border-bottom:
        1px solid #e5edf5;
}

.financial-period-label {
    display: block;

    margin-bottom: 3px;

    color: #748aa2;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.financial-period-header h2 {
    margin: 0 0 6px;

    color: #103d74;

    font-size: 24px;
}

.financial-period-badge {
    display: inline-flex;

    padding:
        4px 9px;

    border-radius: 999px;

    background: #edf5ff;

    color: #0b6fd7;

    font-size: 10px;
    font-weight: 700;
}

.financial-period-totals {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(130px, 1fr));

    gap: 12px;
}

.financial-period-totals > div {
    min-width: 135px;

    padding:
        10px 13px;

    border:
        1px solid #e4ebf2;

    border-radius: 8px;

    background: #fafcff;
}

.financial-period-totals span {
    display: block;

    margin-bottom: 4px;

    color: #73869b;

    font-size: 9px;

    text-transform: uppercase;
}

.financial-period-totals strong {
    font-size: 13px;
}

.financial-text-green {
    color: #09884b;
}

.financial-text-red {
    color: #b83b3b;
}

.financial-text-blue {
    color: #0867cb;
}


/* ============================================================
   TABELA
   ============================================================ */

.financial-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.financial-events-table {
    width: 100%;

    border-collapse: collapse;
}

.financial-events-table th {
    padding:
        13px 15px;

    background: #f4f8fc;

    color: #345a7f;

    border-bottom:
        1px solid #dce6f0;

    font-size: 11px;
    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}

.financial-events-table td {
    padding:
        13px 15px;

    border-bottom:
        1px solid #edf1f5;

    color: #344f69;

    font-size: 12px;
}

.financial-events-table tbody tr:hover td {
    background: #f8fbff;
}

.financial-value {
    color: #174a7e !important;

    font-weight: 700;

    white-space: nowrap;
}

.financial-empty-row {
    padding:
        25px !important;

    text-align: center;

    color: #7c8da0 !important;
}


/* ============================================================
   BASES FINANCEIRAS
   ============================================================ */

.financial-bases {
    padding:
        18px 22px 22px;

    background: #fbfdff;
}

.financial-bases-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 13px;

    color: #315a82;

    font-size: 12px;
}

.financial-bases-title svg {
    width: 19px;
    height: 19px;
}

.financial-bases-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;
}

.financial-bases-grid > div {
    min-height: 67px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        11px 13px;

    border:
        1px solid #e2eaf2;

    border-radius: 7px;

    background: #ffffff;
}

.financial-bases-grid span {
    margin-bottom: 4px;

    color: #7a8ca0;

    font-size: 9px;

    text-transform: uppercase;
}

.financial-bases-grid strong {
    color: #214a72;

    font-size: 12px;
}


/* ============================================================
   NOTA
   ============================================================ */

.financial-info-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-bottom: 20px;

    padding:
        16px 19px;

    border:
        1px solid #d6e6f6;

    border-radius: 10px;

    background: #f4f9ff;
}

.financial-info-note-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #e4f1ff;

    color: #0b72de;
}

.financial-info-note strong {
    color: #20558a;

    font-size: 12px;
}

.financial-info-note p {
    margin: 3px 0 0;

    color: #66819b;

    font-size: 11px;
}


/* ============================================================
   ESTADO VAZIO
   ============================================================ */

.financial-empty-card {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.financial-empty-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 12px;

    background: #eff5fb;

    color: #6c89a7;
}

.financial-empty-card strong {
    color: #345675;

    font-size: 15px;
}

.financial-empty-card p {
    margin:
        5px 0 0;

    color: #8797a8;

    font-size: 12px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .financial-employee-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .financial-filter-form {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .financial-filter-button {
        grid-column:
            span 2;
    }

    .financial-period-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .financial-period-totals {
        width: 100%;
    }

    .financial-bases-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .financial-heading h1 {
        font-size: 28px;
    }

    .financial-employee-grid,
    .financial-filter-form,
    .financial-totals,
    .financial-period-totals,
    .financial-bases-grid {
        grid-template-columns: 1fr;
    }

    .financial-filter-button {
        grid-column: auto;
    }

    .financial-info-item {
        border-right: 0;

        border-bottom:
            1px solid #edf1f5;
    }

    .financial-document-card {
        align-items: stretch;
        flex-direction: column;
    }

    .financial-pdf-button {
        width: 100%;
    }

}


/* ============================================================
   MEUS HOLERITES PROFESSOR INNOVA RH 2026-08-24
   ============================================================ */

.professor-holerites-page {
    width: 100%;
    max-width: 1450px;
}


/* ============================================================
   CABECALHO
   ============================================================ */

.professor-holerites-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 22px;
}

.professor-holerites-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.professor-holerites-heading-icon svg,
.professor-holerites-note-icon svg,
.professor-holerites-card-icon svg,
.professor-holerites-empty-icon svg,
.professor-holerites-download svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.professor-holerites-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 35px;
    line-height: 1.1;
}

.professor-holerites-heading p {
    margin: 5px 0 0;

    color: #6d8198;

    font-size: 14px;
}


/* ============================================================
   NOTA
   ============================================================ */

.professor-holerites-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-bottom: 20px;

    padding:
        16px 19px;

    border:
        1px solid #d6e6f6;

    border-radius: 10px;

    background: #f4f9ff;
}

.professor-holerites-note-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #e4f1ff;

    color: #0b72de;
}

.professor-holerites-note strong {
    color: #20558a;

    font-size: 12px;
}

.professor-holerites-note p {
    margin: 3px 0 0;

    color: #66819b;

    font-size: 11px;
}


/* ============================================================
   CARD
   ============================================================ */

.professor-holerites-card {
    overflow: hidden;

    border:
        1px solid #dce6f1;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.professor-holerites-card-header {
    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        15px 22px;

    border-bottom:
        1px solid #e5edf5;
}

.professor-holerites-card-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #edf5fe;

    color: #0b72de;
}

.professor-holerites-card-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 21px;
}

.professor-holerites-card-header p {
    margin: 3px 0 0;

    color: #7a8da2;

    font-size: 12px;
}


/* ============================================================
   TABELA
   ============================================================ */

.professor-holerites-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.professor-holerites-table {
    width: 100%;

    border-collapse: collapse;
}

.professor-holerites-table th {
    padding:
        14px 16px;

    background: #f4f8fc;

    color: #345a7f;

    border-bottom:
        1px solid #dce6f0;

    font-size: 11px;
    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}

.professor-holerites-table td {
    padding:
        15px 16px;

    border-bottom:
        1px solid #edf1f5;

    color: #344f69;

    font-size: 12px;

    vertical-align: middle;
}

.professor-holerites-table tbody tr:hover td {
    background: #f8fbff;
}

.professor-holerites-competencia {
    color: #174a7e !important;

    font-weight: 700;
}


/* ============================================================
   STATUS
   ============================================================ */

.professor-holerites-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding:
        5px 9px;

    border-radius: 999px;

    background: #e8f8ef;

    color: #07894b;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;
}


/* ============================================================
   DOWNLOAD
   ============================================================ */

.professor-holerites-download {
    min-height: 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        7px 12px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #168cf8,
            #0767df
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    box-shadow:
        0 6px 14px rgba(7,103,223,.12);
}

.professor-holerites-download svg {
    width: 17px;
    height: 17px;
}


/* ============================================================
   VAZIO
   ============================================================ */

.professor-holerites-empty {
    min-height: 285px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding:
        35px 25px;

    text-align: center;
}

.professor-holerites-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 13px;

    background: #eff5fb;

    color: #7892ad;
}

.professor-holerites-empty-icon svg {
    width: 32px;
    height: 32px;
}

.professor-holerites-empty strong {
    color: #345675;

    font-size: 16px;
}

.professor-holerites-empty p {
    max-width: 410px;

    margin:
        6px 0 0;

    color: #8797a8;

    font-size: 12px;

    line-height: 1.5;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .professor-holerites-heading {
        align-items: flex-start;
    }

    .professor-holerites-heading h1 {
        font-size: 28px;
    }

    .professor-holerites-card-header {
        padding:
            14px 16px;
    }

    .professor-holerites-empty {
        min-height: 240px;
    }

}


/* ============================================================
   CORRECAO SEGURA ICONES PROFESSOR 2026-08-24
   ============================================================ */

.professor-holerites-page svg {
    display: none !important;
}

.professor-safe-icon {
    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-weight: 700;

    line-height: 1;

    text-align: center;

    overflow: hidden;
}

.professor-holerites-heading-icon.professor-safe-icon {
    font-size: 25px;
}

.professor-holerites-note-icon.professor-safe-icon {
    font-size: 17px;
}

.professor-holerites-card-icon.professor-safe-icon {
    font-size: 24px;
}

.professor-holerites-empty-icon.professor-safe-icon {
    font-size: 29px;
}

.professor-download-symbol {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}


/* ============================================================
   PAGINACAO E ALFABETO CENTRAL 2026-08-24
   ============================================================ */

.central-list-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding:
        16px 20px;

    border-bottom:
        1px solid #e5edf5;

    background:
        #fbfdff;
}

.central-list-summary {
    display: flex;
    align-items: baseline;
    gap: 6px;

    color:
        #637b94;

    font-size:
        12px;
}

.central-list-summary strong {
    color:
        #0b5eac;

    font-size:
        18px;
}

.central-page-size-form {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;

    color:
        #637b94;

    font-size:
        11px;
}

.central-page-size-form label {
    margin: 0;
}

.central-page-size-form select {
    min-width: 76px;
    height: 36px;

    padding:
        0 10px;

    border:
        1px solid #cad9e8;

    border-radius:
        7px;

    background:
        #ffffff;

    color:
        #17436f;

    font-weight:
        700;
}


/* ALFABETO */

.central-alphabet {
    display: flex;
    align-items: center;
    gap: 5px;

    padding:
        13px 20px;

    overflow-x:
        auto;

    border-bottom:
        1px solid #e5edf5;

    background:
        #ffffff;
}

.central-letter {
    min-width: 31px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 7px;

    flex:
        0 0 auto;

    border:
        1px solid #d8e4ef;

    border-radius:
        6px;

    background:
        #ffffff;

    color:
        #486782;

    text-decoration:
        none;

    font-size:
        11px;

    font-weight:
        700;
}

.central-letter:first-child {
    min-width:
        55px;
}

.central-letter:hover {
    border-color:
        #84b9ed;

    background:
        #f2f8ff;

    color:
        #0867cb;
}

.central-letter-active {
    border-color:
        #0872e6;

    background:
        #0872e6;

    color:
        #ffffff;
}


/* PAGINACAO */

.central-pagination {
    min-height:
        66px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    padding:
        14px 20px;

    border-top:
        1px solid #e5edf5;

    background:
        #fbfdff;
}

.central-page-link,
.central-page-number {
    min-height:
        34px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        7px 11px;

    border:
        1px solid #d6e2ed;

    border-radius:
        6px;

    background:
        #ffffff;

    color:
        #365b7c;

    text-decoration:
        none;

    font-size:
        11px;

    font-weight:
        700;
}

.central-page-numbers {
    display:
        flex;

    align-items:
        center;

    gap:
        5px;
}

.central-page-number {
    min-width:
        34px;

    padding:
        7px;
}

.central-page-current {
    border-color:
        #0872e6;

    background:
        #0872e6;

    color:
        #ffffff;
}

.central-page-disabled {
    color:
        #aab7c3;

    background:
        #f5f7fa;

    cursor:
        default;
}

.central-page-info {
    color:
        #778ba0;

    font-size:
        11px;

    white-space:
        nowrap;
}


/* TABLET */

@media (max-width: 900px) {

    .central-list-tools {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .central-pagination {
        flex-wrap:
            wrap;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .central-page-info {
        width:
            100%;

        text-align:
            center;
    }

}

/* ============================================================
   CONFERENCIA COMPETENCIA LEGADA 2026-08-24
   ============================================================ */

.legacy-review-card,
.legacy-reviewed-card {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 20px;
    padding: 18px 22px;

    border: 1px solid #f0d78f;
    border-radius: 12px;

    background: #fffaf0;

    box-shadow:
        0 7px 22px rgba(93,72,18,.05);
}

.legacy-review-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.legacy-review-icon,
.legacy-reviewed-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff0bf;
    color: #a06c00;

    font-size: 21px;
    font-weight: 800;
}

.legacy-review-card h2 {
    margin: 0;

    color: #725000;

    font-size: 18px;
}

.legacy-review-card p,
.legacy-reviewed-card p {
    margin: 4px 0 0;

    color: #846e35;

    font-size: 11px;
    line-height: 1.45;
}

.legacy-review-card form {
    margin: 0;
}

.legacy-review-button {
    min-height: 43px;

    padding: 9px 17px;

    border: 0;
    border-radius: 7px;

    background: #e7a800;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;
}

.legacy-review-button:hover {
    background: #d39700;
}


/* CONFERIDA */

.legacy-reviewed-card {
    justify-content: flex-start;

    border-color: #bfe8d0;

    background: #f1fbf5;
}

.legacy-reviewed-icon {
    background: #dff5e8;
    color: #07894b;
}

.legacy-reviewed-card strong {
    color: #087944;

    font-size: 13px;
}

.legacy-reviewed-card p {
    color: #5d806d;
}


@media (max-width: 700px) {

    .legacy-review-card {
        align-items: stretch;
        flex-direction: column;
    }

    .legacy-review-button {
        width: 100%;
    }

}


/* ============================================================
   ADMINISTRACAO USUARIOS INNOVA RH 2026-08-24
   ============================================================ */

.admin-users-page,
.admin-user-form-page {
    width: 100%;
    max-width: 1450px;
}

.admin-users-heading {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 22px;
}

.admin-users-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    color: #ffffff;

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.admin-users-heading-text {
    flex: 1;
}

.admin-users-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 35px;
}

.admin-users-heading p {
    margin: 5px 0 0;

    color: #6d8198;

    font-size: 13px;
}

.admin-users-new-button {
    margin-left: auto;

    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 16px;

    border-radius: 7px;

    background: #0872e6;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}


/* RESUMO */

.admin-users-summary {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 20px;
}

.admin-users-summary article {
    min-height: 85px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 14px 17px;

    border: 1px solid #dce6f1;
    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 7px 20px rgba(22,69,122,.04);
}

.admin-users-summary span {
    color: #73879c;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.admin-users-summary strong {
    margin-top: 5px;

    color: #0b5eac;

    font-size: 22px;
}


/* CARD */

.admin-users-card,
.admin-user-form-card {
    overflow: hidden;

    border: 1px solid #dce6f1;
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.055);
}

.admin-users-card-header {
    padding: 17px 21px;

    border-bottom: 1px solid #e5edf5;
}

.admin-users-card-header h2 {
    margin: 0;

    color: #103d74;

    font-size: 20px;
}

.admin-users-card-header p {
    margin: 4px 0 0;

    color: #7a8da2;

    font-size: 11px;
}


/* FILTROS */

.admin-users-filters {
    display: grid;

    grid-template-columns:
        minmax(250px, 2fr)
        1fr
        1fr
        130px;

    align-items: end;

    gap: 14px;

    padding: 18px 21px;

    border-bottom: 1px solid #e5edf5;
}

.admin-users-filters label,
.admin-user-form-field label {
    display: block;

    margin-bottom: 6px;

    color: #315474;

    font-size: 11px;
    font-weight: 700;
}

.admin-users-filters input,
.admin-users-filters select,
.admin-user-form-field input,
.admin-user-form-field select {
    width: 100%;
    height: 44px;

    padding: 0 12px;

    border: 1px solid #cad9e8;
    border-radius: 7px;

    background: #ffffff;

    color: #173f69;

    outline: none;
}

.admin-users-filters input:focus,
.admin-users-filters select:focus,
.admin-user-form-field input:focus,
.admin-user-form-field select:focus {
    border-color: #0b7cf0;

    box-shadow:
        0 0 0 3px rgba(11,124,240,.10);
}

.admin-users-filter-button {
    height: 44px;

    border: 0;
    border-radius: 7px;

    background: #0872e6;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.admin-users-count {
    padding: 12px 21px;

    color: #74879a;

    font-size: 11px;
}

.admin-users-count strong {
    color: #0b5eac;
}


/* TABELA */

.admin-users-table-wrap {
    overflow-x: auto;
}

.admin-users-table {
    width: 100%;

    border-collapse: collapse;
}

.admin-users-table th {
    padding: 13px 14px;

    background: #f4f8fc;

    color: #345a7f;

    border-bottom: 1px solid #dce6f0;

    font-size: 10px;
    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}

.admin-users-table td {
    padding: 14px;

    border-bottom: 1px solid #edf1f5;

    color: #39546c;

    font-size: 11px;

    vertical-align: middle;
}

.admin-user-identity strong,
.admin-user-identity span {
    display: block;
}

.admin-user-identity strong {
    color: #164a7d;
}

.admin-user-identity span {
    margin-top: 3px;

    color: #8090a0;

    font-size: 10px;
}

.admin-user-profile,
.admin-user-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}

.admin-profile-master {
    background: #eaf2ff;
    color: #075fc3;
}

.admin-profile-rh {
    background: #f2edff;
    color: #6942b8;
}

.admin-profile-professor {
    background: #edf7f2;
    color: #277155;
}

.admin-user-active {
    background: #e6f8ee;
    color: #07894b;
}

.admin-user-inactive {
    background: #fff0f0;
    color: #b83b3b;
}

.admin-user-edit-button {
    display: inline-flex;

    min-height: 32px;

    align-items: center;
    justify-content: center;

    padding: 6px 11px;

    border: 1px solid #bed8f3;
    border-radius: 6px;

    background: #f4f9ff;

    color: #0b67c8;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
}

.admin-users-empty {
    padding: 30px !important;

    text-align: center;

    color: #8797a8 !important;
}


/* PAGINACAO */

.admin-users-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    padding: 16px 20px;

    background: #fbfdff;
}

.admin-users-pagination a {
    color: #0867cb;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
}

.admin-users-pagination span {
    color: #778ba0;

    font-size: 11px;
}


/* NOTA SEGURANCA */

.admin-users-security-note {
    margin-top: 17px;

    padding: 15px 18px;

    border: 1px solid #d6e6f6;
    border-radius: 9px;

    background: #f4f9ff;
}

.admin-users-security-note strong {
    color: #20558a;

    font-size: 11px;
}

.admin-users-security-note p {
    margin: 3px 0 0;

    color: #66819b;

    font-size: 10px;
}


/* FORMULARIO */

.admin-user-form-card {
    padding: 23px;
}

.admin-user-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.admin-user-checkbox-field {
    display: flex;
    align-items: center;
}

.admin-user-checkbox-field label {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 20px 0 0;
}

.admin-user-checkbox-field input {
    width: 18px;
    height: 18px;
}

.admin-user-password-note {
    margin-top: 18px;

    padding: 12px 14px;

    border: 1px solid #f0d78f;
    border-radius: 7px;

    background: #fffaf0;

    color: #806a31;

    font-size: 10px;
}

.admin-user-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 23px;

    padding-top: 18px;

    border-top: 1px solid #e7edf3;
}

.admin-user-cancel-button,
.admin-user-save-button {
    min-height: 41px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;
}

.admin-user-cancel-button {
    border: 1px solid #ccd9e6;

    background: #ffffff;

    color: #506a82;

    text-decoration: none;
}

.admin-user-save-button {
    border: 0;

    background: #0872e6;

    color: #ffffff;

    cursor: pointer;
}

.admin-user-form-field .errorlist {
    margin: 5px 0 0;
    padding: 0;

    list-style: none;

    color: #b83b3b;

    font-size: 10px;
}


/* RESPONSIVO */

@media (max-width: 1050px) {

    .admin-users-summary {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .admin-users-filters {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .admin-users-heading {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .admin-users-heading h1 {
        font-size: 28px;
    }

    .admin-users-new-button {
        width: 100%;

        margin-left: 0;
    }

    .admin-users-summary,
    .admin-users-filters,
    .admin-user-form-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   PONTO 8 - MEU PERFIL E SENHA
   ============================================================ */

.profile-page,
.password-page {
    width: 100%;
}

.profile-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.profile-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.profile-heading h1 {
    margin: 0;
    color: #0b3973;
    font-size: 34px;
}

.profile-heading p {
    margin: 5px 0 0;
    color: #71859a;
    font-size: 12px;
}

.profile-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(300px, 1fr);

    gap: 20px;
}

.profile-card,
.password-card {
    border: 1px solid #dce6f1;
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.05);
}

.profile-card header {
    padding: 18px 21px;
    border-bottom: 1px solid #e6edf4;
}

.profile-card h2 {
    margin: 0;
    color: #103d74;
    font-size: 19px;
}

.profile-card header p {
    margin: 4px 0 0;
    color: #7c8fa2;
    font-size: 10px;
}

.profile-data {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    padding: 6px 21px 20px;
}

.profile-data div {
    padding: 15px 5px;
    border-bottom: 1px solid #edf2f7;
}

.profile-data span {
    display: block;

    margin-bottom: 4px;

    color: #7a8ea2;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}

.profile-data strong {
    color: #164a7d;
    font-size: 12px;
}

.profile-security-body {
    padding: 20px 21px;
}

.profile-security-body p {
    margin: 0 0 18px;

    color: #687f95;

    font-size: 11px;
    line-height: 1.55;
}

.profile-password-button,
.profile-secondary-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    cursor: pointer;
}

.profile-password-button {
    border: 0;
    background: #0872e6;
    color: #ffffff;
}

.profile-secondary-button {
    border: 1px solid #cad8e6;
    background: #ffffff;
    color: #516b84;
}

.password-page {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.password-card {
    width: min(100%, 680px);
    padding: 28px;
}

.password-badge {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 999px;

    background: #eaf3ff;
    color: #0865c7;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
}

.password-card h1 {
    margin: 10px 0 7px;

    color: #0b3973;

    font-size: 28px;
}

.password-intro {
    margin: 0;

    color: #71859a;

    font-size: 11px;
    line-height: 1.55;
}

.password-form {
    margin-top: 24px;
}

.password-field {
    margin-bottom: 18px;
}

.password-field label {
    display: block;

    margin-bottom: 6px;

    color: #315474;

    font-size: 11px;
    font-weight: 700;
}

.password-field input {
    width: 100%;
    min-height: 44px;

    box-sizing: border-box;

    padding: 0 12px;

    border: 1px solid #cad9e8;
    border-radius: 7px;

    outline: none;
}

.password-field input:focus {
    border-color: #0b7cf0;

    box-shadow:
        0 0 0 3px rgba(11,124,240,.10);
}

.password-help {
    margin-top: 8px;

    color: #7b8da0;

    font-size: 10px;
    line-height: 1.5;
}

.password-help ul {
    margin: 5px 0 0 17px;
    padding: 0;
}

.password-errors {
    margin-top: 6px;

    color: #b83b3b;

    font-size: 10px;
}

.password-errors ul {
    margin: 0;
    padding-left: 17px;
}

.password-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid #e7edf3;
}

@media (max-width: 800px) {

    .profile-grid,
    .profile-data {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   PONTO 9 - DOCUMENTACAO
   ============================================================ */

.docs-page {
    width: 100%;
}

.docs-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.docs-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #168cff,
        #0767df
    );

    color: #ffffff;
    font-size: 21px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(7,103,223,.18);
}

.docs-heading h1 {
    margin: 0;

    color: #0b3973;

    font-size: 34px;
}

.docs-heading p {
    margin: 5px 0 0;

    color: #71859a;

    font-size: 12px;
}

.docs-intro {
    margin-bottom: 20px;

    padding: 15px 18px;

    border: 1px solid #cfe0f2;
    border-radius: 10px;

    background: #f5f9fe;
}

.docs-intro strong {
    display: block;

    margin-bottom: 3px;

    color: #174f87;

    font-size: 12px;
}

.docs-intro p {
    margin: 0;

    color: #6d8297;

    font-size: 10px;
}

.docs-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.docs-card {
    position: relative;

    padding: 21px;

    border: 1px solid #dce6f1;
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(22,69,122,.045);
}

.docs-card-number {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 8px;

    background: #eaf3ff;

    color: #0871df;

    font-size: 10px;
    font-weight: 800;
}

.docs-card h2 {
    margin: 0 0 8px;

    color: #123f73;

    font-size: 17px;
}

.docs-card > p {
    margin: 0 0 13px;

    color: #6e8296;

    font-size: 10px;

    line-height: 1.55;
}

.docs-card ul {
    margin: 0;

    padding-left: 18px;

    color: #405f7d;

    font-size: 10px;

    line-height: 1.65;
}

.docs-card li + li {
    margin-top: 3px;
}

.docs-card-security {
    border-color: #cce8db;
    background: #fbfefd;
}

.docs-card-security .docs-card-number {
    background: #e8f7ef;
    color: #13945c;
}

@media (max-width: 850px) {

    .docs-grid {
        grid-template-columns: 1fr;
    }

}



/* ============================================================
   LOGIN - MOSTRAR / OCULTAR SENHA
   ============================================================ */

.login-password-wrapper {
    position: relative;
}

.login-password-wrapper input {
    padding-right: 82px !important;
}

.login-password-toggle {
    position: absolute;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    border: 0;
    background: transparent;

    color: #0872e6;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    padding: 6px 4px;
}

.login-password-toggle:hover {
    text-decoration: underline;
}

.login-password-toggle:focus-visible {
    outline: 2px solid #0872e6;
    outline-offset: 2px;
    border-radius: 4px;
}


/* ============================================================
   PONTO 10.2 - AUDITORIA
   ============================================================ */

.audit-page {
    width: 100%;
}

.audit-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.audit-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #168cff,
        #0767df
    );

    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.audit-heading h1 {
    margin: 0;
    color: #0b3973;
    font-size: 34px;
}

.audit-heading p {
    margin: 5px 0 0;
    color: #71859a;
    font-size: 12px;
}

.audit-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 18px;
    padding: 16px 18px;

    border: 1px solid #d9e5f1;
    border-radius: 10px;

    background: #f8fbff;
}

.audit-summary span {
    display: block;
    color: #71859a;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
}

.audit-summary strong {
    display: block;
    margin-top: 2px;
    color: #0b3973;
    font-size: 22px;
}

.audit-summary p {
    margin: 0;
    color: #6d8194;
    font-size: 10px;
}

.audit-card {
    margin-bottom: 18px;

    border: 1px solid #dce6f1;
    border-radius: 12px;

    background: #fff;

    overflow: hidden;
}

.audit-filters {
    display: grid;

    grid-template-columns:
        minmax(220px, 2fr)
        minmax(150px, 1fr)
        minmax(150px, 1fr)
        minmax(135px, .8fr)
        minmax(135px, .8fr)
        100px
        auto;

    gap: 12px;

    align-items: end;

    padding: 18px;
}

.audit-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.audit-field label {
    color: #244d77;
    font-size: 9px;
    font-weight: 700;
}

.audit-field input,
.audit-field select {
    min-height: 38px;

    padding: 0 10px;

    border: 1px solid #cddbeb;
    border-radius: 7px;

    background: #fff;

    color: #173f69;
    font-size: 10px;
}

.audit-filter-actions {
    display: flex;
    gap: 7px;
}

.audit-button {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    border: 0;
    border-radius: 7px;

    background: #0875e8;
    color: #fff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;
}

.audit-button-secondary {
    background: #eef4fb;
    color: #315a83;
}

.audit-table-wrap {
    overflow-x: auto;
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
}

.audit-table th {
    padding: 11px 12px;

    border-bottom: 1px solid #dce6f1;

    background: #f2f7fd;

    color: #294f75;

    font-size: 9px;
    font-weight: 700;

    text-align: left;
}

.audit-table td {
    padding: 11px 12px;

    border-bottom: 1px solid #edf2f7;

    color: #294d70;

    font-size: 9px;

    vertical-align: top;
}

.audit-table tr:last-child td {
    border-bottom: 0;
}

.audit-table strong {
    display: block;
    color: #123f73;
    font-size: 9px;
}

.audit-table small {
    display: block;
    margin-top: 2px;
    color: #7890a7;
    font-size: 8px;
}

.audit-event-tag {
    display: inline-flex;

    padding: 4px 7px;

    border-radius: 999px;

    background: #edf5ff;
    color: #0870d8;

    font-size: 8px;
    font-weight: 700;
}

.audit-system-user {
    color: #71859a;
}

.audit-details {
    min-width: 220px;
    max-width: 400px;
}

.audit-empty {
    padding: 30px !important;
    text-align: center;
    color: #7d8fa1 !important;
}

.audit-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    padding: 14px;

    border-top: 1px solid #edf2f7;
}

.audit-pagination a {
    color: #0870d8;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.audit-pagination span {
    color: #6d8194;
    font-size: 9px;
}

@media (max-width: 1200px) {

    .audit-filters {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 760px) {

    .audit-filters {
        grid-template-columns: 1fr;
    }

    .audit-summary {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   PONTO 10.2.1 - AUDITORIA LEGIBILIDADE
   ============================================================ */

.audit-heading h1 {
    font-size: 32px;
}

.audit-heading p {
    font-size: 13px;
    line-height: 1.45;
}

.audit-summary {
    padding: 18px 20px;
}

.audit-summary span {
    font-size: 10px;
}

.audit-summary strong {
    font-size: 24px;
}

.audit-summary p {
    font-size: 11px;
    line-height: 1.5;
}

.audit-filters {
    gap: 14px;
    padding: 20px;
}

.audit-field {
    gap: 7px;
}

.audit-field label {
    font-size: 11px;
}

.audit-field input,
.audit-field select {
    min-height: 42px;
    padding: 0 12px;

    font-size: 12px;

    border-radius: 8px;
}

.audit-button {
    min-height: 42px;

    padding: 0 18px;

    font-size: 11px;

    border-radius: 8px;
}

.audit-table th {
    padding: 13px 14px;

    font-size: 10px;
}

.audit-table td {
    padding: 13px 14px;

    font-size: 11px;

    line-height: 1.45;
}

.audit-table strong {
    font-size: 11px;
}

.audit-table small {
    margin-top: 3px;

    font-size: 9px;

    line-height: 1.35;
}

.audit-event-tag {
    padding: 5px 9px;

    font-size: 9px;
}

.audit-details {
    min-width: 260px;
    max-width: 520px;

    line-height: 1.5;
}

.audit-pagination {
    padding: 16px;
}

.audit-pagination a,
.audit-pagination span {
    font-size: 10px;
}

@media (min-width: 1400px) {

    .audit-table th {
        font-size: 11px;
    }

    .audit-table td {
        font-size: 11px;
    }

    .audit-table strong {
        font-size: 11px;
    }

}


/* ============================================================
   PONTO 11.1 - RELATORIOS
   ============================================================ */

.reports-page {
    width: 100%;
}

.reports-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reports-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #168cff,
        #0767df
    );

    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.reports-heading h1 {
    margin: 0;

    color: #0b3973;
    font-size: 32px;
}

.reports-heading p {
    margin: 5px 0 0;

    color: #71859a;
    font-size: 13px;
}

.reports-card {
    margin-bottom: 18px;

    border: 1px solid #dce6f1;
    border-radius: 12px;

    background: #fff;

    overflow: hidden;
}

.reports-filters {
    display: grid;

    grid-template-columns:
        120px
        150px
        110px
        minmax(230px, 1.6fr)
        150px
        auto;

    gap: 12px;

    align-items: end;

    padding: 20px;
}

.reports-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.reports-field label {
    color: #244d77;

    font-size: 11px;
    font-weight: 700;
}

.reports-field input,
.reports-field select {
    min-height: 42px;

    padding: 0 12px;

    border: 1px solid #cddbeb;
    border-radius: 8px;

    background: #fff;

    color: #173f69;
    font-size: 12px;
}

.reports-actions {
    display: flex;
    gap: 7px;
}

.reports-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border: 0;
    border-radius: 8px;

    background: #0875e8;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.reports-button-secondary {
    background: #eef4fb;
    color: #315a83;
}

.reports-competence {
    margin-bottom: 18px;
    padding: 17px 20px;

    border: 1px solid #d9e5f1;
    border-radius: 11px;

    background: #f8fbff;
}

.reports-competence span,
.reports-competence small {
    display: block;

    color: #71859a;
    font-size: 10px;
}

.reports-competence strong {
    display: block;

    margin: 4px 0;

    color: #0b3973;

    font-size: 18px;
}

.reports-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 18px;
}

.reports-summary-card {
    padding: 18px;

    border: 1px solid #dce6f1;
    border-radius: 11px;

    background: #fff;
}

.reports-summary-card span {
    color: #71859a;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.reports-summary-card strong {
    display: block;

    margin-top: 5px;

    color: #0b3973;

    font-size: 25px;
}

.reports-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 17px 18px;

    border-bottom: 1px solid #dce6f1;
}

.reports-table-header h2 {
    margin: 0;

    color: #123f73;

    font-size: 18px;
}

.reports-table-header p {
    margin: 4px 0 0;

    color: #7890a7;

    font-size: 10px;
}

.reports-table-header > strong {
    color: #4f6d89;

    font-size: 10px;
}

.reports-table-wrap {
    overflow-x: auto;
}

.reports-table {
    width: 100%;

    border-collapse: collapse;
}

.reports-table th {
    padding: 13px 14px;

    border-bottom: 1px solid #dce6f1;

    background: #f2f7fd;

    color: #294f75;

    font-size: 10px;
    font-weight: 700;

    text-align: left;
}

.reports-table td {
    padding: 13px 14px;

    border-bottom: 1px solid #edf2f7;

    color: #294d70;

    font-size: 11px;

    line-height: 1.45;
}

.reports-table strong {
    color: #123f73;
}

.reports-status {
    display: inline-flex;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;
}

.reports-status-publicado {
    background: #e7f8ed;
    color: #178243;
}

.reports-status-gerado {
    background: #edf5ff;
    color: #0870d8;
}

.reports-status-pendente {
    background: #fff1ef;
    color: #c14438;
}

.reports-empty {
    padding: 28px !important;

    text-align: center;

    color: #7d8fa1 !important;
}

.reports-pagination {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    padding: 15px;

    border-top: 1px solid #edf2f7;
}

.reports-pagination a {
    color: #0870d8;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}

.reports-pagination span {
    color: #6d8194;

    font-size: 10px;
}

.reports-empty-state {
    padding: 42px 25px;

    border: 1px dashed #cbdbea;
    border-radius: 12px;

    background: #f9fcff;

    text-align: center;
}

.reports-empty-state strong {
    display: block;

    color: #123f73;

    font-size: 17px;
}

.reports-empty-state p {
    margin: 6px 0 0;

    color: #71859a;

    font-size: 11px;
}

@media (max-width: 1200px) {

    .reports-filters {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .reports-filters,
    .reports-summary-grid {
        grid-template-columns: 1fr;
    }

}



/* ============================================================
   PONTO 11.2 - EXPORTACAO EXCEL
   ============================================================ */

.reports-button-excel {
    border: 1px solid #15803d;
    background: #ffffff;
    color: #166534;
}

.reports-button-excel:hover {
    background: #f0fdf4;
    color: #14532d;
}



/* ============================================================
   PONTO 12.1 - AJUDA E SUPORTE
   ============================================================ */

.documentation-help-section {
    margin-top: 22px;
    padding: 22px;

    border: 1px solid #dce6f1;
    border-radius: 12px;

    background: #ffffff;
}

.documentation-help-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}

.documentation-help-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eaf4ff;

    color: #0875e8;
    font-size: 20px;
    font-weight: 800;
}

.documentation-help-heading h2 {
    margin: 0;

    color: #123f73;
    font-size: 21px;
}

.documentation-help-heading p {
    margin: 4px 0 0;

    color: #71859a;
    font-size: 11px;
}

.documentation-help-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.documentation-help-card {
    padding: 17px;

    border: 1px solid #e1e9f2;
    border-radius: 10px;

    background: #f9fcff;
}

.documentation-help-card h3 {
    margin: 0 0 8px;

    color: #123f73;
    font-size: 14px;
}

.documentation-help-card p {
    margin: 5px 0;

    color: #5f758b;
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 800px) {

    .documentation-help-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   PONTO 13.4 - CONFIGURACAO HORA-AULA
   ============================================================ */

.hora-aula-page {
    width: 100%;
}

.hora-aula-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hora-aula-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0767df
        );

    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.hora-aula-heading h1 {
    margin: 0;

    color: #103f76;
    font-size: 30px;
    line-height: 1.1;
}

.hora-aula-heading p {
    margin: 5px 0 0;

    color: #668099;
    font-size: 13px;
}

.hora-aula-info {
    margin-bottom: 20px;
    padding: 16px 18px;

    border: 1px solid #d8e5f2;
    border-radius: 10px;

    background: #f7fbff;

    color: #365b7e;
}

.hora-aula-info strong {
    color: #123f73;
}

.hora-aula-info p {
    margin: 5px 0 0;
    line-height: 1.5;
}

.hora-aula-message {
    margin-bottom: 18px;
    padding: 13px 16px;

    border: 1px solid #bee2cb;
    border-radius: 9px;

    background: #f1fbf4;

    color: #176b37;
    font-weight: 700;
}

.hora-aula-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 360px)
        minmax(0, 1fr);

    gap: 20px;

    align-items: start;
}

.hora-aula-card {
    border: 1px solid #dbe5ef;
    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 4px 14px
        rgba(38, 79, 119, 0.04);
}

.hora-aula-form-card {
    padding: 21px;
}

.hora-aula-card-kicker {
    display: block;

    margin-bottom: 4px;

    color: #668099;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.hora-aula-card h2 {
    margin: 0;

    color: #123f73;

    font-size: 19px;
}

.hora-aula-form {
    margin-top: 20px;
}

.hora-aula-field {
    margin-bottom: 17px;
}

.hora-aula-field label {
    display: block;

    margin-bottom: 7px;

    color: #19476f;

    font-size: 13px;
    font-weight: 800;
}

.hora-aula-field input,
.hora-aula-field textarea {
    box-sizing: border-box;

    width: 100%;

    padding: 11px 12px;

    border: 1px solid #cbd9e6;
    border-radius: 8px;

    background: #fff;

    color: #153f67;

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

.hora-aula-field input:focus,
.hora-aula-field textarea:focus {
    border-color: #1682ef;
    outline: 2px solid rgba(22, 130, 239, .12);
}

.hora-aula-money-field {
    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #cbd9e6;
    border-radius: 8px;
}

.hora-aula-money-field:focus-within {
    border-color: #1682ef;
    outline: 2px solid rgba(22, 130, 239, .12);
}

.hora-aula-currency {
    padding: 11px 12px;

    border-right: 1px solid #d9e4ee;

    background: #f4f8fc;

    color: #315a80;

    font-size: 13px;
    font-weight: 800;
}

.hora-aula-money-field input {
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
}

.hora-aula-help {
    margin-top: 5px;

    color: #758ca2;

    font-size: 11px;
}

.hora-aula-field-error,
.hora-aula-errors {
    margin-top: 6px;

    color: #b42318;

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

.hora-aula-safety-note {
    margin: 4px 0 16px;

    padding: 11px 12px;

    border-radius: 8px;

    background: #fff9ed;

    color: #795719;

    font-size: 11px;
    line-height: 1.5;
}

.hora-aula-submit {
    width: 100%;

    padding: 11px 15px;

    border: 0;
    border-radius: 8px;

    background: #0878e8;

    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.hora-aula-submit:hover {
    background: #0669ce;
}

.hora-aula-history-card {
    overflow: hidden;
}

.hora-aula-history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 18px;

    padding: 20px;
}

.hora-aula-history-header p {
    margin: 5px 0 0;

    color: #758ba1;

    font-size: 11px;
}

.hora-aula-total {
    white-space: nowrap;

    color: #50708d;

    font-size: 11px;
    font-weight: 800;
}

.hora-aula-table-wrap {
    overflow-x: auto;

    border-top: 1px solid #e1e9f1;
}

.hora-aula-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 12px;
}

.hora-aula-table th {
    padding: 11px 13px;

    background: #f2f7fd;

    color: #345878;

    text-align: left;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.hora-aula-table td {
    padding: 12px 13px;

    border-top: 1px solid #e8eef4;

    color: #204d74;

    vertical-align: middle;
}

.hora-aula-date {
    white-space: nowrap;
}

.hora-aula-value {
    white-space: nowrap;

    color: #103f76 !important;

    font-weight: 800;
}

.hora-aula-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 999px;

    white-space: nowrap;

    font-size: 10px;
    font-weight: 800;
}

.hora-aula-status.vigente {
    background: #eaf8ee;
    color: #15723a;
}

.hora-aula-status.historico {
    background: #edf3f9;
    color: #536f88;
}

.hora-aula-muted {
    color: #8799aa;
}

.hora-aula-empty {
    padding: 28px !important;

    color: #72879a !important;

    text-align: center;
}


/* Configurações dentro da Documentação */

.doc-settings-section {
    margin-top: 22px;
    padding: 20px;

    border: 1px solid #d8e4ef;
    border-radius: 12px;

    background: #f8fbff;
}

.doc-settings-heading {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 16px;
}

.doc-settings-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    border-radius: 9px;

    background: #e7f2ff;

    font-size: 18px;
}

.doc-settings-kicker {
    display: block;

    color: #637e97;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.doc-settings-heading h2 {
    margin: 2px 0 3px;

    color: #123f73;

    font-size: 18px;
}

.doc-settings-heading p {
    margin: 0;

    color: #6f879d;

    font-size: 11px;
}

.doc-settings-card {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px;

    border: 1px solid #d7e3ee;
    border-radius: 10px;

    background: #fff;

    text-decoration: none;
}

.doc-settings-card:hover {
    border-color: #9fc9f5;

    box-shadow:
        0 4px 12px
        rgba(20, 89, 155, .06);
}

.doc-settings-card-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    border-radius: 8px;

    background: #eaf4ff;

    color: #0875e8;

    font-size: 12px;
    font-weight: 900;
}

.doc-settings-card-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.doc-settings-card-content strong {
    color: #123f73;

    font-size: 13px;
}

.doc-settings-card-content span {
    margin-top: 3px;

    color: #71879b;

    font-size: 11px;
}

.doc-settings-arrow {
    margin-left: auto;

    color: #1479df;

    font-size: 20px;
}


@media (max-width: 980px) {

    .hora-aula-layout {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   PONTO 13.4C - AJUSTE SIDEBAR COMPACTO
   ============================================================ */

.sidebar {
    min-height: 100vh;
    height: 100vh;

    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar .side-item {
    min-height: 42px;

    padding-top: 8px;
    padding-bottom: 8px;
}

.sidebar .sidebar-menu,
.sidebar .side-menu,
.sidebar nav {
    gap: 3px;
}

.sidebar .sidebar-separator {
    margin-top: 10px;
    margin-bottom: 10px;
}

.sidebar .developer {
    margin-top: 10px;
}

.sidebar .developer-label {
    margin-bottom: 4px;
}

.sidebar .logo-innova-sidebar {
    max-height: 72px;
}

.sidebar .sidebar-system-name {
    margin-top: 5px;
    margin-bottom: 4px;
}

.sidebar .sidebar-version {
    margin-top: 3px;
}

@media (max-height: 850px) {

    .sidebar .side-item {
        min-height: 38px;

        padding-top: 6px;
        padding-bottom: 6px;
    }

    .sidebar .side-icon {
        width: 20px;
        height: 20px;
    }

    .sidebar .developer {
        margin-top: 6px;
    }

    .sidebar .logo-innova-sidebar {
        max-height: 60px;
    }

    .sidebar .sidebar-separator {
        margin-top: 7px;
        margin-bottom: 7px;
    }

}

