:root {

    --wine: #9b0032;
    --wine-dark: #760024;
    --wine-light: #c21845;

    --red: #b00035;

    /* Cor vermelha institucional única do GHR Pulse -- valor extraído
       diretamente dos PIXELS do vídeo institucional (web/static/images/
       branding/ghr-pulse-institutional.mp4), não de uma cor de CSS
       parecida. Medido com ffmpeg (fps=1, 7 frames) + PIL, lendo
       cantos/bordas e a cor mais frequente de cada frame (~85-90% da
       área de cada frame): RGB(157, 0, 43) em 100% das amostras, nas 7
       imagens. Correção de uma tentativa anterior que usava #AA102B
       (valor da CSS do contêiner do vídeo, nunca medido no vídeo em
       si -- perceptível como um tom ligeiramente diferente). Todo
       elemento de identidade visual (sidebar, área do logo GHR,
       área/vídeo PULSE) referencia esta única variável -- nenhum novo
       hexadecimal de vermelho é introduzido. */
    --ghr-pulse-red: #9D002B;

    /* Tom metálico único do menu lateral -- usado nos ícones e na
       assinatura "Design by Vagner" (.sidebar-signature), para que os
       dois elementos pareçam a mesma identidade. Champagne/prata
       metálico escuro, sóbrio, sem brilho/gradiente -- cor sólida
       plana, propositalmente sem efeito. */
    --ghr-menu-metal: #B9AD91;

    --bg: #f6f6f4;
    --card: #ffffff;

    --text: #202124;
    --muted: #6b7280;

    --border: #e5e7eb;

    --green: #15803d;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    background: #f6f6f4;

    color: var(--text);

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    height: 100vh;

    overflow: hidden;

}



/* ========================= */
/* SIDEBAR GRAND HYATT */
/* ========================= */


.sidebar {

    width: 190px;

    height: 100vh;

    position: fixed;

    left: 0;
    top: 0;

    background: var(--ghr-pulse-red);


    padding: 15px 12px;

    display: flex;

    flex-direction: column;

    color: white;

}



.logo-ghr {

    width: 120px;

    margin: 0 auto 15px auto;

}



.opscenter {

    text-align: center;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 18px;

}



.opscenter small {

    display: block;

    font-size: 12px;

    font-weight: 400;

    margin-top: 8px;

}



.sidebar a {

    display: flex;

    align-items: center;

    gap: 8px;


    padding: 8px 10px;

    margin: 2px 0;


    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-size: 13px;

}



.sidebar a:hover {

    background:

        rgba(255, 255, 255, .18);

}



.sidebar hr {

    border:

        0;

    border-top:

        1px solid rgba(255, 255, 255, .25);

    margin: 15px 0;

}



.sidebar-footer {

    margin-top: auto;

    text-align: center;

    color: white;

    font-size: 11px;

    opacity: .9;

}



/* ========================= */
/* ÁREA PRINCIPAL */
/* ========================= */


.main-area {

    margin-left: 240px;

    width: calc(100% - 240px);

    height: 100vh;

    background: #f6f6f4;

}



.topbar {

    height: 70px;

    background: white;

    border-bottom:

        1px solid #eee;


    display: flex;

    align-items: center;

    justify-content: space-between;


    padding: 0 35px;

}



.system-title {

    color: var(--ghr-pulse-red);

    font-size: 22px;

    font-weight: 700;

}



.user-box {

    background: white;

    border:

        1px solid var(--border);

    padding: 10px 18px;

    border-radius: 20px;

}



.content {

    height:

        calc(100vh - 70px);

    padding: 25px;

    overflow: hidden;

}



/* ========================= */
/* HERO */
/* ========================= */


.hero {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

}



.hero h1 {

    font-size: 34px;

    color: #222;

}



.hero p {

    color: var(--muted);

}



/* SAÚDE */


.health-card {

    background: white;

    border-radius: 16px;

    padding: 18px 35px;

    box-shadow:

        0 5px 20px rgba(0, 0, 0, .08);

    text-align: center;

}



.health-title {

    color: var(--muted);

    font-size: 12px;

}



.health-value {

    color: var(--wine);

    font-size: 40px;

    font-weight: 800;

}

/* ========================= */
/* BANNER HYATT */
/* ========================= */


.hyatt-banner {

    width: 100%;

    height: 220px;

    border-radius: 18px;

    overflow: hidden;

    margin-bottom: 20px;

    background: white;

    box-shadow:

        0 5px 20px rgba(0, 0, 0, .08);

}



.hyatt-banner img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}



/* ========================= */
/* CARDS KPI */
/* ========================= */


.dashboard-grid {

    display: grid;

    grid-template-columns:

        repeat(5, 1fr);

    gap: 15px;

    margin-bottom: 20px;

}



.kpi {

    background: white;

    border-radius: 15px;

    padding: 22px;

    box-shadow:

        0 4px 15px rgba(0, 0, 0, .06);

    border:

        1px solid #eeeeee;

}



.kpi-icon {

    color: var(--wine);

    font-size: 28px;

    margin-bottom: 10px;

}



.kpi small {

    color: #777;

    font-size: 12px;

    text-transform: uppercase;

}



.kpi h2 {

    font-size: 32px;

    color: #202124;

    margin: 8px 0;

}



.kpi p {

    color: var(--muted);

    font-size: 13px;

}



/* ========================= */
/* CARDS PRINCIPAIS */
/* ========================= */


.card {

    background: white !important;

    border-radius: 16px !important;

    border:

        1px solid #eeeeee !important;


    box-shadow:

        0 5px 20px rgba(0, 0, 0, .06);

    overflow: hidden;

}



.card-header {

    background:

        linear-gradient(90deg,
            #fff1f5,
            #ffffff) !important;


    color: var(--wine) !important;

    font-weight: 700;

    padding: 14px 18px;

    border-bottom:

        1px solid #f1f1f1;

}



.card-body {

    padding: 18px;

}



/* ========================= */
/* TABELAS */
/* ========================= */


.table {

    width: 100%;

    background: white !important;

    color: #333 !important;

    font-size: 13px;

}



.table thead th {

    color: var(--wine) !important;

    background: #fafafa !important;

    font-weight: 700;

    border-bottom:

        1px solid #ddd !important;

}



.table tbody td {

    color: #404040 !important;

    border-color: #eeeeee !important;

    padding: 10px !important;

}



.table tbody tr:hover {

    background: #fff5f7 !important;

}



/* Remove Bootstrap escuro */

.table-striped>tbody>tr:nth-of-type(odd)>* {

    background: white !important;

}



.table-hover>tbody>tr:hover>* {

    background: #fff5f7 !important;

}



/* ========================= */
/* STATUS */
/* ========================= */


.badge {

    border-radius: 20px;

    padding: 6px 12px;

    font-size: 11px;

    font-weight: 600;

}



.bg-success {

    background: #16803c !important;

    color: white !important;

}



.bg-danger {

    background: #b00035 !important;

    color: white !important;

}



/* ========================= */
/* CONTAINERS E RESUMOS */
/* ========================= */


.summary-card {

    background: white;

    border-radius: 15px;

    padding: 20px;

    box-shadow:

        0 5px 15px rgba(0, 0, 0, .06);

}



.summary-card h3 {

    color: var(--wine);

}



/* ========================= */
/* MODULOS INFERIORES */
/* ========================= */


.module-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 20px;

}



.module-card {

    background: white;

    border-radius: 16px;

    padding: 25px;

    text-align: center;

    box-shadow:

        0 5px 15px rgba(0, 0, 0, .06);

    border:

        1px solid #eeeeee;

}



.module-card i {

    color: var(--wine);

    font-size: 36px;

}



.module-card h4 {

    margin-top: 15px;

    color: #222;

    font-size: 18px;

}



.module-card p {

    color: #777;

    font-size: 13px;

}

/* ========================= */
/* RODAPÉ GRAND HYATT */
/* ========================= */


/* ========================= */
/* AJUSTE TELA ÚNICA */
/* ========================= */


.content {

    padding: 20px 25px;

}



.hero {

    margin-bottom: 15px;

}



.hero h1 {

    font-size: 30px;

}



.hyatt-banner {

    height: 120px;

}



.dashboard-grid {

    gap: 12px;

}



.kpi {

    padding: 16px;

}



.kpi h2 {

    font-size: 28px;

}



.card-header {

    padding: 10px 15px;

}



.card-body {

    padding: 12px;

}



.table {

    font-size: 12px;

}



.table tbody td {

    padding: 7px !important;

}



.module-card {

    padding: 18px;

}



/* ========================= */
/* ALERTAS */
/* ========================= */


.alert-empty {

    text-align: center;

    padding: 25px;

    color: var(--green);

    font-size: 16px;

}



/* ========================= */
/* SCROLL CONTROLADO */
/* ========================= */


.content {

    overflow: hidden;

}



.row {

    margin-bottom: 12px;

}



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


@media(max-width:1200px) {

    .dashboard-grid {

        grid-template-columns:

            repeat(3, 1fr);

    }


    .module-grid {

        grid-template-columns:

            repeat(2, 1fr);

    }

}



@media(max-width:768px) {

    .sidebar {

        position: relative;

        width: 100%;

        height: auto;

    }


    .main-area {

        margin-left: 0;

        width: 100%;

    }


    .dashboard-grid {

        grid-template-columns:

            1fr;

    }


    .module-grid {

        grid-template-columns:

            1fr;

    }

}

/* ========================= */
/* AJUSTES FINAIS GRAND HYATT */
/* ========================= */


/* ÁREA DO LOGO */

.logo-ghr {

    width: 150px;

    display: block;

    margin: 5px auto 25px auto;

}


/* REMOVE DIFERENÇA DE FUNDO NO LOGO */

.sidebar .logo-ghr {

    background: transparent;

}



/* ========================= */
/* RODAPÉ -- SOMENTE NO MENU LATERAL */
/* ========================= */

/* O rodapé horizontal que atravessava a tela (.app-footer) foi
   removido a pedido do síndico -- "PULSE® 2026 · Centro de Operações
   Grand Residences · Design by Vagner" passou a existir SOMENTE
   dentro de .sidebar-footer (menu lateral), nunca mais como barra
   horizontal. Ver .sidebar-signature mais abaixo (identidade GHR
   PULSE - SIDEBAR PREMIUM) para o estilo de "Design by Vagner". */

/* TEXTO DO RODAPÉ DA SIDEBAR (Pulse © 2026 / assinatura / relógio) */

.sidebar-footer {

    margin-bottom: 12px;

}



/* AJUSTE DO HEADER SUPERIOR */

.topbar {

    background: white;

}



/* COR DO TITULO SUPERIOR */

.system-title {

    color: var(--ghr-pulse-red);

}

/* AJUSTE FINAL LAYOUT GHR */

.dashboard-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.content {
    padding: 12px 20px;
}

.sidebar {
    width: 190px;
}

.main-area {
    margin-left: 240px;
}

.kpi,
.card,
.health-card,
.module-card {

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

}


/* AJUSTE FINAL GHR - FOTO HYATT */

.hyatt-banner {
    height: 220px !important;
    width: 100% !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.hyatt-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* CORREÇÃO FINAL - RODAPÉ E ESPAÇAMENTO */

/* ======================================
   GHR OPSCENTER - MODO TELA ÚNICA NOC
====================================== */

html,
body {
    height: 100vh;
    overflow: hidden;
}


.content {
    height: calc(100vh - 55px);
    padding: 10px 18px;
    overflow: hidden;
}


/* reduzir espaço vertical */

.hero {
    margin-bottom: 8px;
}


.hyatt-banner {
    height: 140px !important;
    margin-bottom: 10px !important;
}


.dashboard-grid {
    gap: 8px;
    margin-bottom: 8px;
}


.kpi {
    padding: 10px;
}


.kpi h2 {
    font-size: 22px;
}


/* tabelas */

.card-body {
    padding: 8px;
}


.table {
    font-size: 11px;
}


.table td,
.table th {
    padding: 5px !important;
}


/* módulos */

.module-card {
    padding: 10px;
}


.module-card i {
    font-size: 26px;
}


/* alertas */

.alert-empty {
    padding: 15px;
}


/* rodapé */

footer {
    height: 45px;
}


.content {
    height: auto;
    min-height: calc(100vh - 55px);
    padding-bottom: 90px;
}


.module-card {
    margin-bottom: 20px;
}


.dashboard {
    padding-bottom: 80px;
}

/* ======================================
   CORREÇÃO DEFINITIVA - RODAPÉ GHR
====================================== */

html,
body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}


.main-area {
    height: auto;
    min-height: 100vh;
}


.content {
    height: auto;
    min-height: calc(100vh - 55px);
    padding-bottom: 120px;
}


.dashboard {
    min-height: 100vh;
    padding-bottom: 80px;
}


/* evita módulos encostarem no rodapé */

.module-card {
    margin-bottom: 30px;
}

/* AJUSTE FINAL - ALERTAS COMPACTOS */

.card.mt-4 {
    margin-top: 10px !important;
}


.alert-empty {
    padding: 8px !important;
    font-size: 14px;
}


.card-body {
    padding: 8px;
}


/* reduz espaço dos módulos */

.module-card {
    height: 120px;
}


.module-card h4 {
    margin-top: 8px;
    margin-bottom: 4px;
}


.module-card p {
    margin: 0;
}

/* =====================================
   GHR OPSCENTER - AJUSTE DE ALTURA FINAL
===================================== */


/* reduz espaço entre blocos */

.row.mt-4 {
    margin-top: 10px !important;
}


/* tabelas mais compactas */

.card-body {
    padding: 6px !important;
}


.table td,
.table th {
    padding: 4px !important;
    line-height: 1.2;
}


/* resumo do sistema menor */

.card.mt-4 {
    margin-top: 8px !important;
}


/* módulos */

.module-card {
    height: 105px;
    padding: 8px !important;
}


.module-card i {
    font-size: 24px !important;
}


.module-card h4 {
    font-size: 15px;
    margin: 5px 0;
}


.module-card p {
    font-size: 11px;
}


/* alertas compacto */

.alert-empty {
    padding: 5px !important;
}


.card-header {
    padding: 7px 12px !important;
}

/* ===================================
   GHR OPSCENTER - TELA FIXA MONITOR
=================================== */


/* elimina rolagem geral */

html,
body {
    height: 100vh;
    overflow: hidden;
}


/* área principal ocupa exatamente a tela */

.main-area {

    height: 100vh;
    overflow: hidden;

}


/* conteúdo interno */

.content {

    height: calc(100vh - 55px);
    overflow: hidden;

    padding: 12px 20px;

}



/* reduz o banner */

.hyatt-banner {

    height: 180px !important;
    margin-bottom: 8px !important;

}



/* reduz espaço superior */

.hero {

    margin-bottom: 8px !important;

}


.hero h1 {

    font-size: 26px !important;

}



/* indicadores */

.dashboard-grid {

    gap: 8px !important;
    margin-bottom: 8px !important;

}


.kpi {

    padding: 10px !important;

}


.kpi h2 {

    font-size: 21px !important;

}



/* tabelas */

.card-body {

    padding: 5px !important;

}


.table {

    font-size: 11px !important;

}


.table td,
.table th {

    padding: 4px !important;

}



/* módulos */

.module-card {

    height: 95px !important;

}



/* esconde excesso vertical do alerta */

.card.mt-4:last-child {

    margin-top: 6px !important;

}


.alert-empty {

    padding: 4px !important;

}

/* =====================================
   GHR OPSCENTER - INFRAESTRUTURA
===================================== */


.infra-page {

    height: 100%;
    overflow: hidden;

}


.infra-page .top-bar {

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

    margin-bottom: 15px;

}


.infra-page .top-bar h1 {

    color: #b00035;
    font-size: 28px;

    margin: 0;

}


.infra-page .top-bar p {

    color: #6b7280;
    margin: 4px 0;

}



.top-right {

    display: flex;
    align-items: center;
    gap: 20px;

}



#pesquisa {

    border: 1px solid #ddd;

    border-radius: 20px;

    padding: 10px 18px;

    width: 280px;

}



/* CARDS */

.cards-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;

    margin-bottom: 15px;

}



.status-card {

    background: white;

    border-radius: 15px;

    padding: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}



.status-card span {

    color: #777;

    font-size: 12px;

}


.status-card h2 {

    color: #b00035;

    font-size: 28px;

    margin: 8px 0;

}


.status-card small {

    color: #777;

}



/* BARRAS */

.progress {

    height: 6px;

    background: #eee;

    border-radius: 10px;

    overflow: hidden;

}


.progress-bar {

    height: 100%;

    background: #b00035;

}



/* ÁREA PRINCIPAL */

.infra-layout {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 15px;

}



.infra-tables {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.hosts-card,
.containers-card,
.photos-card {

    background: white;

    border-radius: 16px;

    padding: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}



.hosts-card h3,
.containers-card h3 {

    color: #b00035;

    font-size: 16px;

    border-bottom: 1px solid #eee;

    padding-bottom: 10px;

}



/* FOTOS */

.photos-card {

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.photo {

    width: 100%;

    height: 120px;

    object-fit: cover;

    border-radius: 12px;

}



/* RESPONSIVO */

@media(max-width:1200px) {

    .cards-grid {

        grid-template-columns: repeat(3, 1fr);

    }


    .infra-layout {

        grid-template-columns: 1fr;

    }

}

/* =========================================
   IDENTIFICACAO DE AMBIENTE DEV
   ========================================= */

.dev-environment-badge {

    position: fixed;

    top: 15px;

    right: 20px;

    z-index: 9999;

    background: #dc3545;

    color: white;

    padding: 8px 14px;

    border-radius: 20px;

    font-weight: bold;

    font-size: 13px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);

}


.dev-environment-dot {

    display: inline-block;

    width: 10px;

    height: 10px;

    background: white;

    border-radius: 50%;

    margin-right: 6px;

}


/* ==========================================================
   GHR PULSE — TOPBAR FOTOGRÁFICO
   Grand Hyatt Residences
   ========================================================== */

.topbar.topbar-hero {
    position: relative;
    height: 118px;
    min-height: 118px;
    padding: 0;
    overflow: hidden;
    border-bottom: 0;
    background: #0b2934;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .14);
}

.topbar-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.topbar-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 25, 35, .88) 0%,
            rgba(0, 25, 35, .66) 34%,
            rgba(0, 25, 35, .34) 67%,
            rgba(0, 25, 35, .18) 100%);
}

.topbar-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.topbar-hero-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.topbar-hero-kicker {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.topbar-hero .system-title {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.topbar-hero-subtitle {
    margin-top: 5px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.2;
}

.topbar-hero-status {
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar-operation-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 13px !important;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(25, 135, 84, .88) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16);
    font-size: 12px;
}

.topbar-user {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

.topbar-user i {
    font-size: 15px;
}

@media (max-width: 992px) {

    .topbar.topbar-hero {
        height: 105px;
        min-height: 105px;
    }

    .topbar-hero-content {
        padding: 0 20px;
    }

    .topbar-hero .system-title {
        font-size: 24px;
    }

    .topbar-hero-status {
        gap: 6px;
    }

}

@media (max-width: 768px) {

    .topbar.topbar-hero {
        height: 92px;
        min-height: 92px;
    }

    .topbar-hero-content {
        padding: 0 14px;
    }

    .topbar-hero-kicker {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .topbar-hero .system-title {
        font-size: 20px;
    }

    .topbar-hero-subtitle {
        font-size: 10px;
    }

    .topbar-operation-status {
        font-size: 10px;
        padding: 0 9px !important;
    }

    .topbar-user {
        padding: 0 9px;
        font-size: 10px;
    }

}

@media (max-width: 576px) {

    .topbar.topbar-hero {
        height: 82px;
        min-height: 82px;
    }

    .topbar-hero-content {
        padding: 0 10px;
    }

    .topbar-hero .system-title {
        font-size: 17px;
    }

    .topbar-hero-subtitle {
        display: none;
    }

    .topbar-hero-status {
        gap: 4px;
    }

    .topbar-operation-status {
        width: 34px;
        min-width: 34px;
        padding: 0 !important;
        justify-content: center;
        font-size: 0;
    }

    .topbar-operation-status i {
        font-size: 13px;
        margin: 0;
    }


    .topbar-user {
        width: 34px;
        min-width: 34px;
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .topbar-user i {
        font-size: 14px;
    }

}

/* =========================================================
   PULSE — IDENTIDADE
   ========================================================= */

.opscenter.pulse-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-bottom: 18px;
}

.pulse-logo {
    --pulse-red: #FF1744;
    --pulse-red-dim: rgba(255, 23, 68, 0.28);
    --pulse-line-y: 30px;
    position: relative;
    width: min(170px, 100%);
    height: 58px;
    flex: 0 0 auto;
}

.pulse-ecg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.pulse-ecg__line {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--pulse-line-y);
    height: 3px;
    transform: translateY(-50%);
    background: var(--pulse-red-dim);
    box-shadow: 0 0 4px rgba(255, 23, 68, 0.36);
}

.pulse-ecg__peak {
    position: absolute;
    width: 66px;
    height: 18px;
    left: 0;
    top: calc(var(--pulse-line-y) - 9px);
    pointer-events: none;
    filter: drop-shadow(0 0 3px rgba(255, 23, 68, 0.55));
    transform: translate3d(-80px, 0, 0);
    will-change: transform;
}

.pulse-logo__text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    z-index: 2;
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.24);
    will-change: transform, filter;
}

.pulse-logo__text.is-beating {
    animation: pulseWordBeat 150ms ease-out 1;
}

@keyframes pulseWordBeat {
    0% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.04);
        filter: brightness(1.12);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
}
/* =========================================================
   VÍDEO INSTITUCIONAL - GHR PULSE
   ========================================================= */

.topbar-institutional-video {
    width: 150px;
    height: 54px;
    flex: 0 0 150px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.topbar-institutional-video__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .topbar-institutional-video {
        width: 120px;
        height: 48px;
        flex-basis: 120px;
    }
}

/* =========================================================
   GHR PULSE - SIDEBAR PREMIUM
   IDENTIDADE GRAND HYATT RESIDENCES

   (bloco único -- antes existiam dois blocos idênticos duplicados
   aqui, "PULSE - SIDEBAR PREMIUM" e este; o primeiro foi removido.
   Espaçamento vertical reduzido (padding/margin/gap dos itens,
   títulos de seção e separadores) para o menu caber na altura da
   tela sem barra de rolagem, sem remover, esconder, renomear ou
   reordenar nenhum item -- ver web/templates/layout.html, que não
   foi tocado nesta parte.)
   ========================================================= */

.sidebar {
    background: var(--ghr-pulse-red) !important;

    width: 210px;
    padding: 14px 14px;
    color: #ffffff;
}

.logo-ghr {
    width: 150px;
    margin: 2px auto 10px auto;
}

.sidebar-institutional-video {
    /* Sem border-radius/background próprios -- a animação Pulse fica
       integrada diretamente ao fundo do menu (mesma
       var(--ghr-pulse-red) do .sidebar), sem a "caixa" retangular que
       existia antes. */
    width: 100%;
    height: 110px;
    margin: 0 auto 10px auto;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-institutional-video__media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin: 6px 2px;
}

.menu-title {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 8px 6px 3px;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 5px 10px;
    margin: 1px 0;

    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;

    border-radius: 7px;
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.sidebar a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--ghr-menu-metal);
    opacity: .82;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
    transform: translateX(2px);
}

.sidebar a:hover i {
    opacity: 1;
}

.sidebar-footer {
    margin-top: auto;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    line-height: 1.35;
}

.sidebar-footer strong {
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    letter-spacing: .4px;
}

/* Assinatura "Design by Vagner" -- discreta, tom metálico (mesmo de
   --ghr-menu-metal, usado nos ícones), sem preto, sem efeito de
   brilho/sombra. */
.sidebar-signature {
    margin-top: 6px;
    font-size: 9px;
    font-style: italic;
    letter-spacing: .3px;
    color: rgba(185, 173, 145, .68);
}

.sidebar-signature__name {
    font-style: normal;
    font-weight: 600;
    color: var(--ghr-menu-metal);
}

#sidebar-clock {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4px;
}


/* ==========================================================
   CORREÇÃO DE NAVEGAÇÃO/LAYOUT -- SIDEBAR COM ROLAGEM PRÓPRIA
   E CONTEÚDO PRINCIPAL PREENCHENDO A ALTURA REAL DISPONÍVEL

   Investigação: o .sidebar nunca recebeu overflow-y em nenhum
   ponto deste arquivo -- em janelas mais baixas, os itens das
   seções finais (Administração/Links Rápidos/rodapé) ficavam
   cortados silenciosamente, sem nenhuma forma de rolar até
   eles. Em paralelo, blocos anteriores deste arquivo (ver
   "GHR OPSCENTER - TELA FIXA MONITOR" acima) fixam .content
   com overflow:hidden e uma altura calculada supondo um
   topbar de 55-70px -- mas o topbar real do layout
   (.topbar.topbar-hero) mede 118px, então o próprio .content
   já nascia maior que o espaço realmente visível dentro de
   .main-area (também overflow:hidden), cortando o rodapé do
   conteúdo em qualquer página.

   Este bloco não remove nenhuma regra anterior -- só define,
   por último (a cascata do CSS dá prioridade ao que vem
   depois, mesma técnica já usada nos blocos "AJUSTE
   FINAL"/"CORREÇÃO DEFINITIVA" acima), os valores finais que
   corrigem os dois problemas:

   1. .sidebar ganha rolagem vertical própria -- nunca mais
      corta item nenhum, só passa a rolar quando necessário.
   2. .main-area vira um contêiner flex em coluna (topbar +
      conteúdo, exatamente a mesma ordem/estrutura HTML de
      sempre) para que .content preencha automaticamente o
      que sobrar da altura real do topbar, sem precisar
      adivinhar sua altura em pixels.
   3. .content passa a rolar internamente (overflow-y:auto)
      quando o conteúdo da página for mais alto que o espaço
      disponível, em vez de cortar.

   Quando o conteúdo já cabe na tela (caso comum hoje), o
   resultado visual é idêntico a antes -- a barra de rolagem
   só aparece quando realmente precisa.
   ========================================================== */

.sidebar {
    overflow-y: auto;
    overflow-x: hidden;
}

.main-area {
    display: flex;
    flex-direction: column;
}

.content {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

/* Mesmo padrão problemático do .content acima, só que
   específico da página Infraestrutura (único outro lugar do
   projeto com esse mesmo "overflow:hidden + altura fixa" --
   ver investigação). Mesma correção mínima: rolagem em vez de
   corte, sem nenhuma outra mudança nesta página. */
.infra-page {
    overflow-y: auto;
}

/* Status de implantação do GHR Pulse - discreto durante a implantação 2026 */
.pulse-implantation-status {
    margin-top: 7px;
    margin-bottom: 2px;
    line-height: 1.25;
}

.pulse-implantation-status small:first-child {
    color: rgba(185, 173, 145, .72);
    font-size: 9px;
    letter-spacing: .35px;
}

.pulse-implantation-status small:last-child {
    color: rgba(255, 255, 255, .42);
    font-size: 8px;
    letter-spacing: .3px;
}

