/* =========================================================
   TRANSPARÊNCIA SESI - CSS ORGANIZADO
   Estrutura:
   01. Variáveis
   02. Reset / Base
   03. Header / Busca
   04. Barra de acessibilidade
   05. Layout principal
   06. Conteúdo padrão
   07. Sidebar / TCU
   08. Componentes gerais
   09. Cards / downloads / tabelas
   10. Páginas específicas
   11. Alto contraste
   12. Responsivo
========================================================= */

/* =========================================================
   01. VARIÁVEIS
========================================================= */
:root {
    --container-width: 1200px;
    --sidebar-width: 300px;
    --layout-gap: 30px;

    --orange: #e84910;
    --green: #52ae32;
    --dark: #4b555c;
    --light-gray: #f1f1f1;
    --card-bg: #f7f7f7;
    --text-muted: #7d8b96;

    --header-height: 52.8px;
    --access-height: 32px;

    --font-scale: 1;
}

/* =========================================================
   02. RESET / BASE
========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}

html {
    font-size: 100%;
}

body {
    padding-top: 96px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: calc(16px * var(--font-scale));
    color: #687693;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

a {
    color: var(--green);
    text-decoration: none;
}

button {
    font-family: inherit;
}

.table-custom {
    font-size: 0.88rem;
    vertical-align: middle;
}

.table-custom thead th {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    border-color: #48972c;
    padding: 10px 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.table-custom tbody td {
    padding: 9px 8px;
    border-color: #e3e6ea;
}

.table-custom tbody tr:nth-child(even) {
    background: #f9fafb;
}

.table-custom tbody tr:hover {
    background: #f3fff0;
}

.table-custom td:nth-child(6) {
    text-align: right;
    font-weight: 500;
}

.table-custom .col-data {
    width: 90px;
    white-space: nowrap;
}

.table-custom .col-valor {
    width: 115px;
    text-align: right;
    white-space: nowrap;
}

.table-custom .col-valor-peq {
    width: 20px;
    text-align: right;
    white-space: nowrap;
}

.table-custom .col-detalhar {
    width: 70px;
    text-align: center;
}

.destaque {
    color: var(--green);
}

.btn-sesi {
    background-color: #52ae32;
    border-color: #52ae32;
    color: #fff;
}

.btn-sesi:hover {
    background-color: #46962b;
    border-color: #46962b;
    color: #fff;
}

.btn-detalhar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e3e6ea;
    background: #fff;
    color: var(--green);
    transition: all 0.2s ease;
}

.btn-detalhar:hover {
    background: var(--green);
    color: #fff;
    transform: scale(1.05);
}

.table-scroll-hint {
    display: none;
    margin-bottom: 8px;
    font-size: 13px;
    color: #6b7280;
}

.table-responsive {
    position: relative;
}

.large-font {
    font-size: 1.15rem;
}

/* =========================================================
   03. HEADER / BUSCA
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: var(--header-height);
    min-height: var(--header-height);
    padding: 0;
    background: var(--green);
}

.site-header::before {
    display: none;
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.header-inner {
    width: 100%;
    max-width: var(--container-width);
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.header-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    color: #fff;
    line-height: 1;
}

.header-links .fa-solid {
    color: #fff;
    font-size: 16px;
}

.header-links img {
    display: block;
    width: auto;
    height: 18px;
    object-fit: contain;
}

.header-links a:hover img,
.header-links a:hover .fa-solid {
    opacity: 0.85;
}

.header-search {
    width: 300px;
    max-width: 300px;
    margin-left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-form {
    display: flex;
    width: 100%;
    height: 17px;
}

.search-form input {
    width: 100%;
    height: 34px;
    border: 0;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 3px 0 0 3px;
}

.search-form button {
    width: 44px;
    min-width: 44px;
    height: 34px;
    border: 0;
    background: var(--dark);
    color: #fff;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

/* Google Custom Search */
.gsc-control-cse {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

form.gsc-search-box,
table.gsc-search-box {
    position: static !important;
    width: 300px !important;
    height: 34px !important;
    margin: 0 !important;
}

.gsc-search-box td {
    padding: 0 !important;
    vertical-align: middle !important;
}

.gsc-input-box {
    height: 34px !important;
    border: 0 !important;
    border-radius: 3px 0 0 3px !important;
}

.gsc-input {
    height: 32px !important;
    padding: 0 8px !important;
    font-size: 13px !important;
}

td.gsc-search-button {
    width: 44px !important;
}

button.gsc-search-button,
.gsc-search-button-v2 {
    width: 44px !important;
    min-width: 44px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 3px 3px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gsc-search-button-v2 svg {
    width: 14px !important;
    height: 14px !important;
}

.gsc-clear-button {
    display: none !important;
}

/* =========================================================
   04. BARRA DE ACESSIBILIDADE
========================================================= */
.accessibility-wrapper {
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 3px;
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    background: #f0efef;
    backdrop-filter: blur(6px);
}

.accessibility-wrapper::before {
    display: none;
}

.accessibility-bar {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    color: #000;
}

.acc-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.acc-line > * {
    position: relative;
    margin-right: 8px;
    padding-right: 8px;
}


.accessibility-bar span,
.accessibility-bar a,
.accessibility-bar button {
    border: 0;
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--green);
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
}

.accessibility-bar .label {
    font-weight: 500;
}

.accessibility-bar i {
    font-size: 11px;
    margin-right: 3px;
}

.accessibility-bar a:hover,
.accessibility-bar button:hover {
    color: var(--green);
}

@media (min-width: 769px) {
    .accessibility-wrapper {
        padding: 3px 0;
    }

    .accessibility-bar {
        padding: 4px 15px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .acc-line {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
    }

    .acc-line > * {
        position: relative;
        margin: 0;
        padding: 0 10px;
    }

    .acc-line > *:not(.label):not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
        color: #b8b8b8;
    }

    .accessibility-bar a,
    .accessibility-bar button {
        background: transparent;
        border: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 0;
    }
}

/* =========================================================
   05. LAYOUT PRINCIPAL
========================================================= */
.page-shell {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 15px 60px;
}

.main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
    grid-template-areas:
        "intro sidebar"
        "cards sidebar";
    gap: var(--layout-gap);
    align-items: start;
}

.content-intro {
    grid-area: intro;
    min-width: 0;
}

.cards-area {
    grid-area: cards;
    min-width: 0;
}

.main-content {
    min-width: 0;
    margin-top: 20px;
}

.right-sidebar {
    grid-area: sidebar;
    width: var(--sidebar-width);
}

/* =========================================================
   06. CONTEÚDO PADRÃO
========================================================= */
.page-title {
    margin: 0 0 12px;
    color: #101820;
    font-size: calc(28px * var(--font-scale));
    line-height: 1.2;
    font-weight: 700;
}

.breadcrumb {
    width: 100%;
    margin: 0;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: calc(14px * var(--font-scale));
}

.breadcrumb-list li::after {
    content: "/";
    margin-left: 6px;
    color: #999;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list a {
    color: var(--green);
}

.section-title {
    margin: 24px 0 10px;
    color: var(--green);
    font-size: calc(28px * var(--font-scale));
    line-height: 1.2;
    font-weight: normal;
}

.regional-title {
    margin: 0 0 10px;
    font-size: calc(16px * var(--font-scale));
    font-weight: normal;
    color: #000;
}

.description {
    margin: 0 0 24px;
    line-height: 1.45;
}

.badge-api {
    background: var(--green);
    color: #fff;
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 6px;
}

#overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
}

/* =========================================================
   07. SIDEBAR / TCU
========================================================= */
.sidebar-card {
    width: 100%;
}

.tcu-box {
    width: 100%;
    margin-bottom: 18px;
}

.tcu-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 13px;
    border: 1px solid #d8d8d8;
    border-left: 4px solid var(--green);
    border-radius: 3px;
    background: #f7f7f7;
    color: #424b54;
    font-size: calc(12px * var(--font-scale)) !important;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tcu-icon {
    display: inline-block;
    color: #777;
    font-size: calc(11px * var(--font-scale)) !important;
    line-height: 1;
}

.tcu-link:hover {
    background: #efefef;
    color: var(--green);
    border-color: #cfcfcf;
    border-left-color: var(--green);
}

.tcu-link:hover .tcu-icon {
    color: var(--green);
}

.tcu-dropdown {
    display: none;
    width: 100%;
    margin-top: 6px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.tcu-box:hover .tcu-dropdown,
.tcu-box.is-open .tcu-dropdown {
    display: block;
}

.tcu-dropdown a {
    display: block;
    padding: 12px 10px;
    color: #5a6772;
    font-size: calc(11.8px * var(--font-scale)) !important;
    line-height: 1.25;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.tcu-dropdown a:last-child {
    border-bottom: 0;
}

.tcu-dropdown a:hover {
    background: #e5e5e5;
    color: var(--green);
}

.sidebar-group {
    background: #efefef;
    border-radius: 2px;
    overflow: hidden;
	margin-bottom:20px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    padding: 14px 12px;
    font-size: calc(12px * var(--font-scale)) !important;
    font-weight: 600;
}

.sidebar-title .arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    transition: all 0.3s ease;
}

.sidebar-title:hover {
    background: #4b9a2f;
}

.sidebar-title:hover .arrow {
    border-top-color: #c8ffb4;
}

.sidebar-group.ativo .arrow {
    transform: rotate(180deg);
}

.sidebar-group a {
    display: block;
    padding: 12px 10px;
    background: #f1f1f1;
    color: #5a6772;
    font-size: calc(11.8px * var(--font-scale)) !important;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
}

.sidebar-group a:hover {
    background: #e5e5e5;
    color: var(--green);
}

.sidebar-group a.ativo {
    background: #dcdcdc;
    color: var(--green);
    font-weight: 600;
}

/* =========================================================
   08. CARDS SAC / OUTROS CANAIS / INFO
========================================================= */
.sac-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    margin-top: 30px;
}

.sac-card {
    min-width: 0;
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.06);
}

.sac-card-header {
    background: var(--green);
    color: #fff;
    padding: 16px 18px;
    font-size: calc(15px * var(--font-scale));
    font-weight: 600;
}

.sac-card-header i {
    margin-right: 6px;
}

.sac-card-body {
    min-height: 135px;
    padding: 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
}

.sac-card-body p {
    margin: 0 0 18px;
    line-height: 1.35;
    font-size: calc(14px * var(--font-scale));
}

.sac-info {
    display: none;
    margin-top: 18px;
    color: #5d6670;
}

.sac-info.is-visible {
    display: block;
}

.outros-canais-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.canal-card {
    background: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.04);
}

.canal-card-header {
    background: #4b555c;
    color: #fff;
    text-align: center;
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 500;
}

.sac-button {
    align-self: flex-start;
    margin-top: auto;
    display: inline-block;
    background: linear-gradient(#f7f7f7, #e5e5e5);
    border: 0;
    border-radius: 4px;
    padding: 9px 20px;
    color: #000;
    font-size: calc(13px * var(--font-scale));
    cursor: pointer;
}

.sac-button:hover {
    color: #000;
    filter: brightness(0.96);
}

.canal-card-body {
    min-height: 205px;
    padding: 28px 32px;
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.45;
}

.canal-card-body p {
    margin: 0 0 18px;
    display: flex;
    gap: 12px;
}

.canal-card-body i {
    color: #9a9a9a;
    min-width: 18px;
    margin-top: 3px;
}

.canal-presencial {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 20px;
    align-items: start;
}

.pdf-card {
    width: 140px;
    min-height: 118px;
    background: #28a8e8;
    color: #fff;
    text-align: center;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.pdf-card:hover {
    color: #fff;
    filter: brightness(0.95);
}

.pdf-card span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
}

.pdf-card small {
    font-size: 9px;
    line-height: 1.1;
}

.pdf-card i {
    color: #fff;
    font-size: 34px;
    margin: 4px 0;
}

.pdf-card strong {
    background: #fff;
    color: #28a8e8;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-card {
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
}

.info-card-header {
    background: #eaeaea;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7780;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.info-card-body {
    padding: 20px;
    font-size: 14px;
    color: #5f6b75;
    line-height: 1.5;
}

.info-card-body ol {
    padding-left: 18px;
    margin-bottom: 15px;
}

.info-card-body li {
    margin-bottom: 12px;
}

.info-card-body strong {
    color: #101820;
}

/* =========================================================
   09. DOWNLOADS / INTEGRIDADE / RELATÓRIOS
========================================================= */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 6px;
    margin-top: 18px;
    margin-bottom: 40px;
}

.download-card {
    min-height: 134px;
    padding: 12px;
    background: #f6f7f8;
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}

.download-card.active,
.download-card:hover {
    background: #d1d1d1;
    color: #000;
}

.download-card span {
    font-size: 15px;
    line-height: 1.3;
}

.download-card strong {
    font-size: 16px;
}

.download-card small {
    font-size: 15px;
}

.download-card i {
    font-size: 18px;
}

.download-section {
    margin-top: 24px;
}

.download-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}

.download-section .download-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100%;
    min-height: 56px;
    padding: 14px 22px;
    border: 1px solid #eeeeee;
    border-left: 3px solid var(--green);
    border-radius: 4px;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    margin-bottom: 8px;
}

.download-section .download-card:hover {
    border-color: var(--green);
    background: #fff8f3;
    color: #111827;
}

.download-file-icon {
    width: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 20px;
}

.download-text {
    flex: 1;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    padding-left: 18px;
}

.download-action {
    width: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 18px;
}

.integridade-download-card {
    display: block;
    text-decoration: none;
    color: #000;
    border: 1px solid #d8dee4;
    border-radius: 6px;
    padding: 14px;
    background: #fff;
    transition: 0.2s ease;
}

.integridade-download-card:hover {
    background: #f4fff1;
    border-color: var(--green);
    color: #000;
}

.integridade-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--green);
    padding-left: 10px;
}

.integridade-card-content strong,
.integridade-card-content small {
    display: block;
}

.integridade-card-content i,
.integridade-file-icon,
.integridade-download-icon {
    color: var(--green);
}

.table-header-sub {
    background: var(--green);
    color: #fff;
}

.integridade-table {
    table-layout: fixed;
    width: 100%;
}

.integridade-table th,
.integridade-table td {
    word-wrap: break-word;
    word-break: break-word;
    vertical-align: top;
    font-size: 14px;
}

.integridade-table th:nth-child(1),
.integridade-table td:nth-child(1) {
    width: 90px;
}

.integridade-table th:nth-child(2),
.integridade-table td:nth-child(2) {
    width: 90px;
}

.integridade-table th:nth-child(3),
.integridade-table td:nth-child(3) {
    width: 110px;
}

.integridade-table th:nth-child(4),
.integridade-table td:nth-child(4) {
    width: 55%;
}

.integridade-table th:nth-child(5),
.integridade-table td:nth-child(5) {
    width: 25%;
}

.relatorios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 6px;
    margin-top: 16px;
}

.relatorio-card {
    min-height: 135px;
    background: #f7f8fa;
    border-radius: 6px;
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.relatorio-card:hover {
    background: #eef2f7;
    transform: translateY(-2px);
}

.relatorio-card i {
    color: var(--green);
    font-size: 18px;
}

.relatorio-card small {
    font-size: 15px;
    color: #111;
}

/* =========================================================
   10. TABELAS / DEMONSTRAÇÃO / INFRAESTRUTURA
========================================================= */
.table-sm-custom {
    font-size: 13px;
}

.table-sm-custom th,
.table-sm-custom td {
    padding: 6px 8px;
}

.col-nome {
    max-width: 220px;
}

.col-objeto {
    max-width: 300px;
}

.demonstracao-resultados {
    margin-top: 40px;
}

.demonstracao-tabs {
    border-bottom: 1px solid #d7dde5;
}

.demonstracao-tabs .nav-link {
    color: #005cff;
    border-radius: 6px 6px 0 0;
    padding: 14px 18px;
    font-weight: 500;
}

.demonstracao-tabs .nav-link.active {
    color: #333;
    border-color: #d7dde5 #d7dde5 #fff;
}

.demonstracao-tab-content {
    padding-top: 24px;
}

.demonstracao-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.demonstracao-actions .form-select {
    min-width: 90px;
}

.demonstracao-download {
    color: #005cff;
    text-decoration: none;
}

.demonstracao-download i {
    color: var(--green);
}

.table-custom thead tr:first-child {
    background: var(--green);
    color: #fff;
}

.table-custom thead tr:nth-child(2) {
    background: #f5f5f5;
    color: #333;
}

.table-custom tbody tr {
    background: #fff;
}

.table-custom tbody tr:nth-child(even) {
    background: #fafafa;
}

.table-custom th,
.table-custom td {
    border: 1px solid #ddd;
}

.infraestrutura-content {
    margin-top: 28px;
}

.infraestrutura-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.infraestrutura-actions .form-select {
    min-width: 95px;
}

.infraestrutura-table {
    width: 100%;
    table-layout: fixed;
    font-size: 14px;
}

.infraestrutura-table thead th,
.infraestrutura-detail-table thead th {
    background: var(--green);
    color: #FFFFFF;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}

.infraestrutura-table th,
.infraestrutura-table td {
    padding: 12px;
    vertical-align: middle;
    word-break: break-word;
}

.infraestrutura-table th:first-child,
.infraestrutura-table td:first-child {
    width: 80%;
    text-align: center;
}

.infraestrutura-table th:last-child,
.infraestrutura-table td:last-child {
    width: 20%;
    text-align: center;
}

.infraestrutura-total th {
    background: #dadada;
    text-align: center;
}

.infraestrutura-detail-table {
    font-size: 13px;
}

.infraestrutura-detail-table th,
.infraestrutura-detail-table td {
    padding: 10px;
    vertical-align: top;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.infraestrutura-content .btn-light {
    min-width: 54px;
    background: #f7f8fa;
    border: 1px solid #edf0f4;
}

/* =========================================================
   11. PRESTAÇÃO TCU / MODAL / LISTAS
========================================================= */
.prestacao-tcu-content {
    margin-top: 30px;
}

.prestacao-tcu-list,
.prestacao-sublist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.prestacao-tcu-list > li {
    margin-bottom: 12px;
}

.prestacao-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 700;
    text-align: left;
    padding: 10px 0;
    border-bottom: 3px solid var(--green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prestacao-sublist {
    display: none;
    padding: 12px 0 10px 22px;
}

.prestacao-sublist li {
    margin-bottom: 10px;
}

.prestacao-sublist a {
    text-decoration: none;
}

.prestacao-sublist a:hover {
    text-decoration: underline;
}

.prestacao-file-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 700;
    padding: 12px 14px;
    border-bottom: 4px solid var(--green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prestacao-file-toggle i {
    color: var(--green);
}

.prestacao-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 0 26px;
}

.prestacao-card {
    width: 114px;
    min-height: 82px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    padding: 15px 8px 12px 14px;
    text-decoration: none;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.prestacao-card div {
    border-left: 4px solid var(--green);
    padding-left: 10px;
}

.prestacao-card strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
}

.prestacao-card small {
    display: block;
    font-size: 12px;
    color: #000;
}

.prestacao-card i {
    color: var(--green);
    font-size: 14px;
    margin-top: 28px;
}

.list-group-item.senai {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
    color: #fff !important;
    font-weight: 600;
}

.modal-laranja .modal-header,
.indicador-modal-title {
    background: var(--green);
    color: #fff;
    padding: 12px;
}

.indicador-modal-title {
    margin-bottom: 20px;
    font-weight: 700;
}

.indicador-detail-row {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 20px;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.indicador-detail-row strong {
    color: #374151;
}

.indicador-detail-row span {
    color: #111827;
}

/* =========================================================
   12. PÁGINAS ESPECÍFICAS
========================================================= */
/* Acessibilidade */
.acessibilidade-info-list {
    margin-top: 30px;
}

.acessibilidade-info-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.acessibilidade-info-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.acessibilidade-info-content h3 {
    margin: 0 0 10px;
    color: #868585;
    font-size: calc(18px * var(--font-scale));
    font-weight: 700;
    text-transform: uppercase;
}

.acessibilidade-info-content p {
    margin: 0 0 10px;
    line-height: 1.5;
}

/* Unidades */
.unidades-area {
    margin-top: 25px;
}

.unidades-filtro {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px;
    width: fit-content;
    width: 100%;
    padding: 12px;
    border: 2px solid var(--green);
    border-radius: 7px;
    margin-bottom: 25px;
}


.unidades-campo {
    min-width: 0;
}

.unidades-campo label {
    margin-bottom: 5px;
    color: var(--green);
    font-size: calc(14px * var(--font-scale));
}

.unidades-campo select {
    width: 100%;
    padding: 7px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #101820;
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.unidade-card {
    border: 2px solid var(--green);
    border-radius: 10px;
    padding: 14px 10px;
    background: #fff;
}

.unidade-card h3 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: calc(15px * var(--font-scale));
    line-height: 1.45;
    font-weight: 700;
}

.unidade-card strong {
    display: block;
    margin: 14px 0 8px;
    color: #000;
}

.unidade-card p {
    margin: 0;
    line-height: 1.45;
}

.unidades-vazio {
    grid-column: 1 / -1;
    color: #5d6670;
}

.unidades-notas {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .unidades-filtro {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* =========================================================
   13. ALTO CONTRASTE
========================================================= */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast a,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast .destaque,
body.high-contrast .nav-link,
body.high-contrast .download-title {
    color: #ffd700 !important;
}

body.high-contrast p,
body.high-contrast .description,
body.high-contrast .regional-title {
    color: #fff !important;
}

body.high-contrast .site-header,
body.high-contrast .accessibility-wrapper {
    background: #000 !important;
}

body.high-contrast .site-header {
    border-bottom: 2px solid #ffd700;
}

body.high-contrast .header-links a,
body.high-contrast .header-links i,
body.high-contrast .accessibility-bar,
body.high-contrast .accessibility-bar .label,
body.high-contrast .accessibility-bar a,
body.high-contrast .accessibility-bar button {
    color: #ffd700 !important;
}

body.high-contrast .header-links img,
body.high-contrast .acessibilidade-info-icon img {
    filter: grayscale(1) brightness(0) invert(1);
}

body.high-contrast .acc-line > *::after {
    color: #777 !important;
}

body.high-contrast .breadcrumb {
    background: #111 !important;
    border: 1px solid #ffd700;
}

body.high-contrast .breadcrumb-list,
body.high-contrast .breadcrumb-list li {
    color: #fff !important;
}

body.high-contrast .breadcrumb-list a,
body.high-contrast .breadcrumb-list li::after {
    color: #ffd700 !important;
}

body.high-contrast .sac-card,
body.high-contrast .canal-card,
body.high-contrast .info-card,
body.high-contrast .unidades-filtro,
body.high-contrast .unidade-card {
    background: #000 !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .sac-card-header,
body.high-contrast .canal-card-header,
body.high-contrast .info-card-header,
body.high-contrast .sidebar-title {
    background: #111 !important;
    color: #ffd700 !important;
    border-bottom: 1px solid #ffd700 !important;
}

body.high-contrast .tcu-link {
    background: #111 !important;
    border: 1px solid #ffd700 !important;
    border-left: 4px solid #ffd700 !important;
    color: #ffd700 !important;
}

body.high-contrast .tcu-icon {
    color: #ffd700 !important;
}

body.high-contrast .tcu-dropdown {
    background: #000 !important;
    border-color: #333 !important;
}

body.high-contrast .tcu-box {
    background: transparent !important;
    border: 0 !important;
}

body.high-contrast .sidebar-title .arrow {
    border-top-color: #ffd700 !important;
}

body.high-contrast .sidebar-group a,
body.high-contrast .tcu-dropdown a {
    background: #000 !important;
    color: #fff !important;
    border-bottom: 1px solid #333 !important;
}

body.high-contrast .sidebar-group a:hover,
body.high-contrast .tcu-dropdown a:hover {
    background: #111 !important;
    color: #ffd700 !important;
}

body.high-contrast #rodape {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast #rodape .titulo-secao,
body.high-contrast #rodape #menu-aba button {
    background: #111 !important;
    color: #ffd700 !important;
    border: 1px solid #333 !important;
}

body.high-contrast #rodape a {
    color: #ffd700 !important;
}

body.high-contrast #rodape a:hover {
    color: #fff !important;
}

body.high-contrast #rodape .linha {
    border-bottom: 1px solid #333 !important;
}

body.high-contrast #rodape #menu-aba button.ativo {
    background: #000 !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast #rodape .logos-rodape li {
    border-color: #444 !important;
}

body.high-contrast #rodape .barra-inferior {
    background: #000 !important;
    border-top: 1px solid #333 !important;
}

body.high-contrast #rodape .linha-endereco,
body.high-contrast #rodape .linha-copyright {
    color: #fff !important;
}

body.high-contrast .canal-card-body,
body.high-contrast .canal-card-body p,
body.high-contrast .canal-card-body i,
body.high-contrast .info-card-body,
body.high-contrast .info-card-body p,
body.high-contrast .info-card-body li,
body.high-contrast .unidade-card strong,
body.high-contrast .unidade-card p,
body.high-contrast .unidades-notas,
body.high-contrast .unidades-vazio,
body.high-contrast .acessibilidade-info-content p,
body.high-contrast .acessibilidade-info-content strong {
    color: #fff !important;
}

body.high-contrast .info-card-body strong,
body.high-contrast .acessibilidade-info-content h3,
body.high-contrast .unidades-campo label,
body.high-contrast .unidade-card h3,
body.high-contrast .info-card-header i {
    color: #ffd700 !important;
}

body.high-contrast .pdf-card,
body.high-contrast .integridade-download-card,
body.high-contrast .relatorio-card,
body.high-contrast .prestacao-card {
    background: #111 !important;
    border: 1px solid #ffd700 !important;
    color: #ffd700 !important;
}

body.high-contrast .pdf-card i,
body.high-contrast .pdf-card span,
body.high-contrast .pdf-card small,
body.high-contrast .download-text,
body.high-contrast .download-file-icon,
body.high-contrast .download-action,
body.high-contrast .integridade-download-card strong,
body.high-contrast .integridade-download-card small,
body.high-contrast .integridade-download-card i,
body.high-contrast .relatorio-card span,
body.high-contrast .relatorio-card strong,
body.high-contrast .relatorio-card small,
body.high-contrast .relatorio-card i,
body.high-contrast .prestacao-card i {
    color: #ffd700 !important;
}

body.high-contrast .download-card {
    background: #111 !important;
    border: 1px solid #ffd700 !important;
    border-left: 4px solid #ffd700 !important;
    color: #ffd700 !important;
}

body.high-contrast .download-card:hover,
body.high-contrast .integridade-download-card:hover,
body.high-contrast .relatorio-card:hover {
    background: #000 !important;
    border-color: #fff !important;
    color: #fff !important;
    transform: none !important;
}

body.high-contrast .integridade-card-content,
body.high-contrast .prestacao-card div {
    border-left-color: #ffd700 !important;
}

body.high-contrast table,
body.high-contrast .table,
body.high-contrast .demonstracao-table,
body.high-contrast .infraestrutura-table {
    background: #000 !important;
    color: #fff !important;
    border-color: #ffd700 !important;
}

body.high-contrast table thead th,
body.high-contrast .table thead th,
body.high-contrast .demonstracao-table th,
body.high-contrast .infraestrutura-table thead th {
    background: #111 !important;
    color: #ffd700 !important;
    border-color: #ffd700 !important;
}

body.high-contrast table td,
body.high-contrast .table td,
body.high-contrast .demonstracao-table td,
body.high-contrast .infraestrutura-table td {
    color: #fff !important;
    border-color: #333 !important;
}

body.high-contrast table tr {
    background: #000 !important;
}

body.high-contrast table tbody tr:nth-child(even) {
    background: #0d0d0d !important;
}

body.high-contrast table tbody tr:hover {
    background: #111 !important;
}

body.high-contrast .table-light,
body.high-contrast .table-light th,
body.high-contrast .table-light td,
body.high-contrast .table-primary,
body.high-contrast .table-primary th,
body.high-contrast .table-primary td {
    background: #111 !important;
    color: #fff !important;
}

body.high-contrast .table-info,
body.high-contrast .table-info th,
body.high-contrast .table-info td,
body.high-contrast .infraestrutura-total th,
body.high-contrast .infraestrutura-total td,
body.high-contrast .demonstracao-table .table-section th,
body.high-contrast .demonstracao-table .table-section td {
    background: #1a1a1a !important;
    color: #ffd700 !important;
    border-color: #ffd700 !important;
}

body.high-contrast .demonstracao-table .table-subsection th,
body.high-contrast .demonstracao-table .table-subsection td {
    background: #111 !important;
    color: #fff !important;
    border-color: #ffd700 !important;
}

body.high-contrast .accordion,
body.high-contrast .accordion-item {
    background: #000 !important;
    color: #fff !important;
    border-color: #333 !important;
}

body.high-contrast .accordion-button {
    background: #111 !important;
    color: #ffd700 !important;
    border: 1px solid #333 !important;
    box-shadow: none !important;
}

body.high-contrast .accordion-button:not(.collapsed) {
    background: #111 !important;
    color: #ffd700 !important;
    border-color: #ffd700 !important;
}

body.high-contrast .accordion-button::after {
    filter: invert(1);
}

body.high-contrast .accordion-body {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
}

body.high-contrast .modal-content {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .modal-header {
    background: #111 !important;
    border-bottom: 1px solid #ffd700 !important;
}

body.high-contrast .modal-title {
    color: #ffd700 !important;
}

body.high-contrast .btn-close {
    filter: invert(1);
}

body.high-contrast .modal-body,
body.high-contrast .modal-footer {
    background: #000 !important;
}

body.high-contrast .modal-footer {
    border-top: 1px solid #333 !important;
}

body.high-contrast .indicador-modal-title {
    background: #111 !important;
    color: #ffd700 !important;
    border: 1px solid #ffd700;
}

body.high-contrast .indicador-detail-row {
    border-bottom: 1px solid #333 !important;
}

body.high-contrast .indicador-detail-row strong {
    color: #ffd700 !important;
}

body.high-contrast .indicador-detail-row span {
    color: #fff !important;
}

body.high-contrast .btn-secondary,
body.high-contrast .modal-footer .btn-secondary,
body.high-contrast .btn-outline-secondary,
body.high-contrast .btn-light {
    background: #111 !important;
    color: #ffd700 !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .btn-secondary:hover,
body.high-contrast .modal-footer .btn-secondary:hover,
body.high-contrast .btn-outline-secondary:hover,
body.high-contrast .btn-light:hover {
    background: #ffd700 !important;
    color: #000 !important;
}

body.high-contrast .form-select,
body.high-contrast .unidades-campo select {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .text-primary {
    color: #ffd700 !important;
}

body.high-contrast .nav-tabs {
    border-bottom: 1px solid #ffd700 !important;
}

body.high-contrast .nav-tabs .nav-link {
    background: transparent !important;
    color: #ffd700 !important;
    border: 1px solid transparent !important;
    border-bottom: 0 !important;
    font-weight: 500;
}

body.high-contrast .nav-tabs .nav-link:hover {
    background: #111 !important;
    color: #fff !important;
    border-color: #ffd700 !important;
}

body.high-contrast .nav-tabs .nav-link.active {
    background: #ffd700 !important;
    color: #000 !important;
    border-color: #ffd700 !important;
    font-weight: 700;
}

body.high-contrast .tab-content {
    background: #000 !important;
    color: #fff !important;
}


body.high-contrast .prestacao-toggle {
    color: #ffd700 !important;
    border-bottom: 3px solid #ffd700 !important;
}

/* =========================
   ALTO CONTRASTE - FORMULÁRIOS / TABELAS / ACCORDION
========================= */

/* CARD / CONTAINER */
body.high-contrast .content-card {
    background: #000 !important;
}

/* ACCORDION */
body.high-contrast .accordion-item {
    background: #000 !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .accordion-button {
    background: #000 !important;
    color: #ffd700 !important;
    border: none !important;
    box-shadow: none !important;
}

body.high-contrast .accordion-button:not(.collapsed) {
    background: #111 !important;
    color: #fff !important;
}

body.high-contrast .accordion-body {
    background: #000 !important;
    color: #fff !important;
}

/* INPUTS */
body.high-contrast .form-control,
body.high-contrast .form-select {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .form-control::placeholder {
    color: #ccc !important;
}

/* LABELS */
body.high-contrast .form-label {
    color: #ffd700 !important;
}

/* BOTÕES */
body.high-contrast .btn-primary {
    background: #ffd700 !important;
    color: #000 !important;
    border: none !important;
}

body.high-contrast .btn-secondary {
    background: transparent !important;
    color: #ffd700 !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .btn-outline-secondary {
    background: transparent !important;
    color: #ffd700 !important;
    border: 1px solid #ffd700 !important;
}

/* TABELA */
body.high-contrast .table {
    color: #fff !important;
}

body.high-contrast .table thead {
    background: #111 !important;
    color: #ffd700 !important;
}

body.high-contrast .table th,
body.high-contrast .table td {
    border-color: #ffd700 !important;
}

/* MODAL */
body.high-contrast .modal-content {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #ffd700 !important;
}

body.high-contrast .modal-header {
    border-bottom: 1px solid #ffd700 !important;
}

body.high-contrast .modal-footer {
    border-top: 1px solid #ffd700 !important;
}

.description,
.breadcrumb-list,
.accessibility-bar,
.accessibility-bar span,
.accessibility-bar a,
.accessibility-bar button,
.sidebar-list a,
.tcu-icon,
.sac-card-header,
.sac-card-body p,
.sac-button {
    font-size: calc(1em * var(--font-scale)) !important;
}

@media (max-width: 768px) {
    body.high-contrast .accessibility-bar a,
    body.high-contrast .accessibility-bar button {
        background: #111 !important;
        border: 1px solid #ffd700 !important;
        color: #ffd700 !important;
    }

    body.high-contrast .accessibility-bar a:hover,
    body.high-contrast .accessibility-bar button:hover {
        background: #ffd700 !important;
        color: #000 !important;
    }
}

/* =========================================================
   14. RESPONSIVO
========================================================= */
@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 158px;
    }

    .site-header {
        height: 94px;
        min-height: 94px;
    }

    .header-inner {
        height: 94px;
        padding: 6px 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .header-links {
        height: 34px;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .header-search {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .search-form {
        width: 100%;
    }

    form.gsc-search-box,
    table.gsc-search-box {
        width: 100% !important;
    }

    .accessibility-wrapper {
        top: 94px;
    }

    .page-shell {
        padding-bottom: 40px;
    }

    .main-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "cards"
            "sidebar";
        gap: 26px;
    }

    .right-sidebar {
        width: 100%;
    }

    .sac-grid {
        grid-template-columns: 1fr;
    }

    .unidades-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .accessibility-wrapper {
        padding: 5px 10px;
        margin-bottom: 22px;
    }

    .accessibility-bar {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
	}

	.acc-line {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 6px 8px;
	}

	.acc-line > * {
		margin: 0;
		padding: 0;
	}

	.acc-line > *::after,
	.acc-secondary::before {
		display: none;
	}

	.accessibility-bar a,
	.accessibility-bar button {
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 20px;
		padding: 4px 10px;
	}

	.accessibility-bar a:hover,
	.accessibility-bar button:hover {
		background: #f3f3f3;
		border-color: #ccc;
	}

    .accessibility-bar span,
    .accessibility-bar a,
    .accessibility-bar button {
        font-size: 12px !important;
        white-space: nowrap;
    }

    .acc-secondary,
    .acc-secondary a,
    .acc-secondary button {
        color: var(--green);
    }

    .page-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 27px;
        line-height: 1.18;
    }

    .sac-grid {
        gap: 24px;
    }

    .outros-canais-grid,
    .canal-presencial,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .demonstracao-actions,
    .infraestrutura-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .relatorios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .indicador-detail-row,
    .acessibilidade-info-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .page-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .page-title {
        font-size: 23px;
    }

    .section-title {
        font-size: 24px;
    }

    .sac-card-header {
        font-size: 14px;
    }

    .sac-card-body {
        min-height: auto;
        padding: 16px;
    }

    .accessibility-bar {
        display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 5px;
    }

    .acc-line {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 0;
    }

    .acc-main {
        margin-bottom: 4px;
    }

    .accessibility-bar span,
    .accessibility-bar a,
    .accessibility-bar button {
        font-size: 12px !important;
        line-height: 1.4;
    }

    .downloads-grid,
    .unidades-grid {
        grid-template-columns: 1fr;
    }

    .unidades-filtro {
        width: 100%;
    }

    .unidades-campo,
    .unidades-campo select {
        width: 100%;
    }
}

/* LOADING OVERLAY */
#page-loader {
    position: fixed;
    inset: 0;
    background: #2f3e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOADING OVERLAY */
#page-loader {
    position: fixed;
    inset: 0;
    background: #2f3e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transform: translateY(-10px);
}

.loader-logo {
    width: 105px;
    max-width: 45vw;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: loaderSpin 0.9s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 0.75;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}