* {
    box-sizing: border-box;
}

:root {
    --bg: #07111b;
    --bg-soft: #0d1925;
    --panel: #101f2d;
    --panel-soft: #152635;
    --text: #eef4f8;
    --muted: #8fa2b2;
    --line: rgba(255,255,255,.08);
    --accent: #7df36b;
    --accent-2: #41cde8;
    --danger: #ff6464;
    --warning: #ffbd59;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--bg);
    color: var(--text);
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

.login-body {
    min-height: 100vh;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns:
        minmax(360px, 1fr)
        minmax(420px, .85fr);
}

.brand-panel {
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(65,205,232,.15),
            transparent 35%
        ),
        radial-gradient(
            circle at 75% 80%,
            rgba(125,243,107,.12),
            transparent 35%
        ),
        #07111b;
}

.brand-mark {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.brand-mark::after {
    content: ".";
    color: var(--accent);
}

.brand-copy {
    max-width: 560px;
    font-size: 30px;
    line-height: 1.18;
    color: #dce7ee;
    margin-bottom: 48px;
}

.brand-feature {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    color: var(--muted);
    max-width: 500px;
}

.login-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #0b1722;
}

.login-card-inner {
    width: min(440px, 100%);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 42px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.28);
}

.eyebrow {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 800;
}

h1,
h2,
p {
    margin-top: 0;
}

.login-card h1 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 38px;
}

.muted,
.login-card p,
.page-heading p,
.panel p {
    color: var(--muted);
}

.login-card form {
    margin-top: 30px;
}

.login-card label {
    display: block;
    font-size: 13px;
    margin: 18px 0 8px;
    color: #c5d1d9;
}

.login-card input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0a1621;
    color: white;
    padding: 0 14px;
    outline: none;
}

.login-card input:focus {
    border-color: var(--accent-2);
}

.login-card button {
    width: 100%;
    margin-top: 24px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    background: var(--accent);
    color: #07111b;
}

.login-footer {
    margin-top: 22px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

.alert {
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.alert-error {
    background: rgba(255,100,100,.10);
    border: 1px solid rgba(255,100,100,.25);
    color: #ffc0c0;
}

.app-body {
    min-height: 100vh;
    background: #07111b;
}

.topbar {
    height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #091521;
    position: sticky;
    top: 0;
    z-index: 20;
}

.topbar-brand {
    font-weight: 850;
    font-size: 24px;
    letter-spacing: -1px;
}

.topbar-brand::after {
    content: ".";
    color: var(--accent);
}

.topbar-brand span {
    margin-left: 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .05em;
}

.topbar-user {
    display: flex;
    gap: 18px;
    align-items: center;
}

.topbar-user > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.topbar-user small {
    color: var(--muted);
}

.btn-ghost {
    border: 1px solid var(--line);
    background: transparent;
    color: #dbe7ee;
    padding: 8px 13px;
    border-radius: 8px;
    cursor: pointer;
}

.app-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height:
        calc(100vh - 72px);
}

.sidebar {
    padding: 24px 14px;
    border-right: 1px solid var(--line);
    background: #091521;
}

.nav-section {
    margin:
        28px 12px
        9px;
    color: #5f7485;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.nav-item {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    color: #9fb0bc;
    margin: 2px 0;
}

.nav-item.active {
    background: rgba(125,243,107,.10);
    color: var(--accent);
}

.nav-item.disabled {
    opacity: .55;
    cursor: default;
}

.content {
    padding: 36px;
    max-width: 1600px;
    width: 100%;
}

.page-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-heading h1 {
    margin:
        8px 0
        8px;
    font-size: 34px;
}

.plan-box {
    min-width: 210px;
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 15px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-box span {
    color: var(--muted);
    font-size: 12px;
}

.plan-box strong {
    font-size: 14px;
    color: var(--accent);
}

.kpi-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0,1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.kpi {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
}

.kpi span,
.kpi small {
    color: var(--muted);
}

.kpi span {
    font-size: 12px;
}

.kpi strong {
    display: block;
    margin: 7px 0 3px;
    font-size: 34px;
}

.kpi small {
    font-size: 11px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns:
        minmax(0,1.7fr)
        minmax(280px,.7fr);
    gap: 18px;
}

.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.panel h2 {
    margin-top: 7px;
}

.empty-state {
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.empty-state p {
    color: var(--muted);
    margin:
        7px 0
        0;
}

.status-list {
    margin-top: 24px;
}

.status-list > div {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 13px 0;
}

.status-list span {
    color: var(--muted);
}

.status-list strong {
    color: var(--accent);
}

.alert-list {
    margin-top: 12px;
}

.alert-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.alert-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-row small {
    color: var(--muted);
}

.severity {
    align-self: center;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 99px;
    border: 1px solid var(--line);
}

.severity-critica {
    color: #ff8b8b;
}

.severity-alta {
    color: var(--warning);
}

.severity-media {
    color: var(--accent-2);
}

.severity-baixa,
.severity-info {
    color: var(--muted);
}

@media (
    max-width: 980px
) {
    .login-shell {
        grid-template-columns: 1fr;
    }

    .brand-panel {
        display: none;
    }

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

    .sidebar {
        display: none;
    }

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

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

@media (
    max-width: 600px
) {
    .login-card {
        padding: 18px;
    }

    .login-card-inner {
        padding: 28px 22px;
    }

    .content {
        padding: 22px 16px;
    }

    .topbar {
        padding: 0 16px;
    }

    .topbar-brand span {
        display: none;
    }

    .topbar-user small {
        display: none;
    }

    .page-heading {
        flex-direction: column;
    }

    .plan-box {
        width: 100%;
    }

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

/* ELEGIA_UI_BRAND_001 */

/*
 * Marca Elegia
 */
.topbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
    line-height: 1;
}

.topbar-brand-name {
    display: block;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.7px;
}

.topbar-brand-tagline {
    display: block;
    margin: 4px 0 0;
    padding: 0;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.15px;
    opacity: 0.62;
}


/*
 * Rodapé institucional
 */
.app-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 100%;

    margin-top: 34px;
    padding: 18px 0 8px;

    border-top: 1px solid rgba(255, 255, 255, 0.055);

    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.12px;

    color: rgba(255, 255, 255, 0.38);
}

.app-footer strong {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.app-footer span,
.app-footer strong {
    white-space: nowrap;
}


@media (max-width: 720px) {

    .topbar-brand-name {
        font-size: 18px;
    }

    .topbar-brand-tagline {
        font-size: 9px;
    }

    .app-footer {
        margin-top: 26px;
        padding-bottom: 4px;
    }
}



/* ============================================================
   ELEGIA_UI_BRAND_002
   O ponto da palavra elegia é o indicador verde da marca.
   ============================================================ */

/*
 * Neutraliza qualquer ponto/indicador antigo criado
 * por pseudo-elemento no bloco da marca.
 */
.topbar-brand::before,
.topbar-brand::after {
    content: none !important;
    display: none !important;
}


/*
 * Marca principal.
 */
.topbar-brand-name {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    width: auto;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -0.7px;
}


/*
 * Palavra sem ponto textual.
 */
.topbar-brand-word {
    display: inline-block;
}


/*
 * Este é o ponto final do "elegia".
 */
.topbar-brand-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-left: 3px;
    margin-bottom: 1px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #67f57a;

    box-shadow:
        0 0 0 1px rgba(103, 245, 122, 0.12),
        0 0 7px rgba(103, 245, 122, 0.28);
}


/*
 * Assinatura da marca.
 */
.topbar-brand-tagline {
    display: block;

    margin-top: 6px;

    font-size: 10px;
    font-weight: 500;
    line-height: 1.15;

    letter-spacing: 0.15px;

    opacity: 0.62;
}


@media (max-width: 720px) {

    .topbar-brand-name {
        font-size: 18px;
    }

    .topbar-brand-dot {
        width: 6px;
        height: 6px;

        flex-basis: 6px;

        margin-left: 3px;
    }
}

/* ============================================================
   ELEGIA_UI_BRAND_003
   Reforço visual da marca
   ============================================================ */

.topbar-brand-name {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.9px;
}

.topbar-brand-dot {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
    margin-left: 4px;
    margin-bottom: 2px;
}

.topbar-brand-tagline {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.15;
}

@media (max-width: 720px) {

    .topbar-brand-name {
        font-size: 23px;
    }

    .topbar-brand-dot {
        width: 7px;
        height: 7px;
        flex-basis: 7px;
    }

    .topbar-brand-tagline {
        font-size: 10px;
    }
}

/* ============================================================
   ELEGIA_UI_BRAND_004
   Tamanho final da marca
   ============================================================ */

.topbar-brand-name {
    font-size: 20px !important;
}

@media (max-width: 720px) {
    .topbar-brand-name {
        font-size: 20px !important;
    }
}

/* ============================================================
   ELEGIA_UI_BRAND_005
   Marca com mesma presença do nome do usuário
   ============================================================ */

.topbar-brand-name {
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
}

.topbar-brand-dot {
    width: 7px !important;
    height: 7px !important;
    flex-basis: 7px !important;
    margin-left: 4px !important;
    margin-bottom: 2px !important;
}

.topbar-brand-tagline {
    margin-top: 6px !important;
    font-size: 10px !important;
    font-weight: 500 !important;
}

@media (max-width: 720px) {
    .topbar-brand-name {
        font-size: 20px !important;
    }
}

/* ============================================================
   ELEGIA_UI_BRAND_006
   Corrigir regra antiga aplicada aos spans da marca
   ============================================================ */

.topbar-brand .topbar-brand-word {
    display: inline-block !important;

    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;

    color: #ffffff !important;
    opacity: 1 !important;
}

.topbar-brand .topbar-brand-dot {
    display: inline-block !important;

    width: 7px !important;
    height: 7px !important;
    flex: 0 0 7px !important;

    margin-left: 4px !important;
    margin-bottom: 2px !important;

    background: #67f57a !important;
    border-radius: 50% !important;

    opacity: 1 !important;
}

.topbar-brand .topbar-brand-tagline {
    display: block !important;

    margin-top: 6px !important;

    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;

    color: rgba(255, 255, 255, 0.58) !important;
    opacity: 1 !important;
}

@media (max-width: 720px) {

    .topbar-brand .topbar-brand-word {
        font-size: 20px !important;
    }
}


/* ============================================================
   ELEGIA_CONCORRENTES_001
   ============================================================ */

.concorrentes-heading {
    align-items: flex-start;
}

.concorrente-add-open,
.btn-primary {
    border: 1px solid rgba(103, 245, 122, 0.32);
    border-radius: 10px;
    background: rgba(103, 245, 122, 0.12);
    color: #78f489;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 11px 16px;
}

.btn-primary:hover {
    background: rgba(103, 245, 122, 0.18);
}

.btn-small {
    padding: 8px 12px;
    font-size: 12px;
}

.concorrente-contexto {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    margin-bottom: 18px;
    overflow: hidden;
}

.concorrente-contexto > div {
    padding: 16px 18px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.concorrente-contexto > div:last-child {
    border-right: 0;
}

.concorrente-contexto span,
.concorrente-meta span {
    display: block;
    margin-bottom: 5px;
    color: rgba(190, 205, 219, .58);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.concorrente-contexto strong {
    color: #eef5fb;
    font-size: 13px;
}

.concorrentes-kpis {
    margin-bottom: 18px;
}

.concorrentes-panel {
    padding: 18px;
}

.concorrentes-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.concorrentes-panel-header h2 {
    margin: 3px 0 0;
}

.concorrente-count {
    color: rgba(190, 205, 219, .65);
    font-size: 12px;
}

.concorrentes-empty {
    border: 1px dashed rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 26px;
}

.concorrentes-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.concorrente-row,
.concorrente-option {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.5fr)
        minmax(240px, .9fr)
        auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 10px;
    background: rgba(255,255,255,.022);
}

.concorrente-identidade {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.concorrente-avatar {
    width: 50px;
    height: 58px;
    flex: 0 0 50px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.08);
}

.concorrente-avatar-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.35);
}

.concorrente-identidade > div {
    min-width: 0;
}

.concorrente-nome {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    color: #eef5fb;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.concorrente-identidade span {
    color: rgba(190,205,219,.62);
    font-size: 11px;
}

.concorrente-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(65px, 1fr));
    gap: 12px;
}

.concorrente-meta strong {
    color: #eef5fb;
    font-size: 12px;
}

.concorrente-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.concorrente-actions form {
    margin: 0;
}

.btn-danger-soft {
    border: 1px solid rgba(255, 116, 116, .18);
    border-radius: 8px;
    background: rgba(255, 116, 116, .07);
    color: #ef9b9b;
    padding: 8px 10px;
    font: inherit;
    font-size: 11px;
    cursor: pointer;
}

.btn-danger-soft:hover {
    background: rgba(255, 116, 116, .12);
}

.concorrente-profile-placeholder[disabled] {
    opacity: .5;
    cursor: default;
}

.concorrente-alert-success {
    margin-bottom: 16px;
    border-color: rgba(103,245,122,.16);
    color: #94eea0;
}

.concorrente-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.concorrente-modal.is-open {
    display: flex;
}

.concorrente-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 10, 18, .78);
    backdrop-filter: blur(4px);
}

.concorrente-modal-card {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: #0d1d2a;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.concorrente-modal-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px 16px;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.concorrente-modal-header h2 {
    margin: 4px 0 5px;
}

.concorrente-modal-header p {
    margin: 0;
}

.concorrente-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.concorrente-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.concorrente-search input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;
    outline: none;
    background: rgba(255,255,255,.035);
    color: #eef5fb;
    padding: 10px 12px;
    font: inherit;
}

.concorrente-search input:focus {
    border-color: rgba(103,245,122,.32);
}

.concorrente-search span {
    min-width: 90px;
    text-align: right;
    color: rgba(190,205,219,.55);
    font-size: 11px;
}

.concorrente-universo-list {
    overflow-y: auto;
    padding: 10px 12px 16px;
}

.concorrente-option {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    margin-bottom: 7px;
}

.concorrente-option[hidden] {
    display: none;
}

.concorrente-option-action {
    display: flex;
    align-items: center;
}

.concorrente-option-action form {
    margin: 0;
}

.concorrente-added {
    color: #72ed83;
    font-size: 11px;
    font-weight: 700;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {

    .concorrente-contexto {
        grid-template-columns: 1fr 1fr;
    }

    .concorrente-contexto > div:nth-child(2) {
        border-right: 0;
    }

    .concorrente-row {
        grid-template-columns: 1fr;
    }

    .concorrente-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .concorrente-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {

    .concorrente-contexto {
        grid-template-columns: 1fr;
    }

    .concorrente-contexto > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.055);
    }

    .concorrente-contexto > div:last-child {
        border-bottom: 0;
    }

    .concorrente-modal {
        padding: 10px;
    }

    .concorrente-modal-card {
        max-height: calc(100vh - 20px);
    }
}


/* ============================================================
   ELEGIA_CONCORRENTES_002
   Modal próprio de remoção
   ============================================================ */

.concorrente-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;

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

    padding: 24px;
}

.concorrente-confirm-modal.is-open {
    display: flex;
}

.concorrente-confirm-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(1, 10, 18, .80);

    backdrop-filter: blur(5px);
}

.concorrente-confirm-card {
    position: relative;
    z-index: 1;

    width: min(460px, 100%);

    padding: 26px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;

    background: #0d1d2a;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);
}

.concorrente-confirm-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    border: 1px solid rgba(239, 123, 123, .22);
    border-radius: 12px;

    background: rgba(239, 123, 123, .08);

    color: #ef9b9b;

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

.concorrente-confirm-content h2 {
    margin:
        5px
        0
        10px;

    color: #f2f7fb;

    font-size: 22px;
    line-height: 1.15;
}

.concorrente-confirm-content p {
    margin: 0;

    color: rgba(202, 216, 228, .72);

    font-size: 13px;
    line-height: 1.55;
}

.concorrente-confirm-content p strong {
    color: #ffffff;
}

.concorrente-confirm-note {
    margin-top: 10px !important;

    color: rgba(202, 216, 228, .48) !important;

    font-size: 11px !important;
}

.concorrente-confirm-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    margin-top: 24px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .055);
}

.btn-danger-confirm {
    border: 1px solid rgba(239, 123, 123, .26);
    border-radius: 9px;

    background: rgba(239, 123, 123, .11);

    color: #f2a7a7;

    padding: 9px 13px;

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

    cursor: pointer;
}

.btn-danger-confirm:hover {
    background: rgba(239, 123, 123, .18);
}

@media (max-width: 520px) {

    .concorrente-confirm-modal {
        padding: 12px;
    }

    .concorrente-confirm-card {
        padding: 20px;
    }

    .concorrente-confirm-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .concorrente-confirm-actions button {
        width: 100%;
    }
}


/* ============================================================
   ELEGIA_CONCORRENTE_PERFIL_001
   ============================================================ */

.concorrente-profile-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 18px;
}

.concorrente-profile-back,
.concorrente-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.concorrente-profile-link {
    white-space: nowrap;
}



/* ============================================================
   ELEGIA_VOTACAO_001
   ============================================================ */

.votacao-toolbar {
    display: flex;
    margin-bottom: 16px;
}

.votacao-profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.votacao-profile-photo {
    width: 64px;
    height: 78px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
}

.votacao-profile-card strong {
    display: block;
    margin: 4px 0;
    color: #eef5fb;
    font-size: 18px;
}

.votacao-profile-card span {
    color: rgba(190,205,219,.62);
    font-size: 12px;
}

.votacao-open-btn {
    display: inline-flex;
    margin-top: 8px;
    text-decoration: none;
}

.votacao-empty {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
}

.votacao-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    border: 1px solid rgba(103,245,122,.18);
    background: rgba(103,245,122,.07);
    color: #78f489;
    font-size: 20px;
    font-weight: 800;
}

.votacao-empty h2 {
    margin: 5px 0 9px;
}

.votacao-empty p {
    margin: 4px 0;
}

.votacao-kpis {
    margin-bottom: 18px;
}

.votacao-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.votacao-insight-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 14px;
}

.votacao-insight-list > div {
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 9px;
    background: rgba(255,255,255,.022);
}

.votacao-insight-list strong,
.votacao-insight-list span {
    display: block;
}

.votacao-insight-list strong {
    color: #eef5fb;
    font-size: 13px;
}

.votacao-insight-list span {
    margin-top: 3px;
    color: rgba(190,205,219,.58);
    font-size: 11px;
}

.votacao-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.votacao-view-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.votacao-table-wrap {
    overflow-x: auto;
}

.votacao-table {
    width: 100%;
    border-collapse: collapse;
}

.votacao-table th,
.votacao-table td {
    padding: 11px 12px;
    border-bottom: 1px solid rgba(255,255,255,.055);
    text-align: left;
}

.votacao-table th {
    color: rgba(190,205,219,.52);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.votacao-table td {
    color: #e7eef4;
    font-size: 12px;
}

@media (max-width: 820px) {

    .votacao-insights-grid {
        grid-template-columns: 1fr;
    }

    .votacao-section-header {
        flex-direction: column;
    }

    .votacao-view-buttons {
        justify-content: flex-start;
    }
}


/* ============================================================
   ELEGIA_HISTORICO_BOTOES_001
   ============================================================ */

.historico-item {
    position: relative;
}

.historico-actions {
    position: absolute;
    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.historico-actions .votacao-open-btn {
    margin-top: 0;
    white-space: nowrap;
}

.historico-item {
    padding-right: 155px;
}

@media (max-width: 760px) {

    .historico-actions {
        position: static;
        margin-top: 12px;
        justify-content: flex-start;
    }

    .historico-item {
        padding-right: 0;
    }
}



/* ============================================================
   ELEGIA_HISTORICO_BOTOES_002
   ============================================================ */

/*
 * Cancela a tentativa anterior com position absolute.
 */
.historico-actions {
    position: static !important;
    top: auto !important;
    right: auto !important;

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

    margin: 0 0 0 auto;
    flex: 0 0 auto;
}

.historico-row-layout {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;

    position: relative;
    padding-right: 16px !important;
}

.historico-row-layout > div:not(.historico-actions) {
    min-width: 0;
    flex: 1 1 auto;
}

.historico-actions .votacao-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 !important;

    min-height: 36px;
    padding: 8px 13px;

    white-space: nowrap;
    text-decoration: none;
}

/*
 * Remove reserva de espaço do ajuste anterior.
 */
.historico-item {
    padding-right: initial !important;
}

@media (max-width: 760px) {

    .historico-row-layout {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .historico-actions {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
}



/* ============================================================
   ELEGIA_VOTACAO_BOTOES_SEM_SUBLINHADO_001
   ============================================================ */

.votacao-toolbar a,
.votacao-toolbar .btn-ghost,
.votacao-open-btn,
.votacao-view-buttons a,
.votacao-view-buttons .btn-ghost {
    text-decoration: none !important;
}

.votacao-toolbar a:hover,
.votacao-toolbar a:focus,
.votacao-open-btn:hover,
.votacao-open-btn:focus,
.votacao-view-buttons a:hover,
.votacao-view-buttons a:focus {
    text-decoration: none !important;
}



/* ============================================================
   ELEGIA_VOTACAO_NAVEGACAO_001
   ============================================================ */

.votacao-toolbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.votacao-toolbar-back {
    flex: 0 0 auto;
}

.votacao-candidatura-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.votacao-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    text-decoration: none !important;
    white-space: nowrap;
}

.votacao-nav-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    min-height: 36px;

    padding: 5px 12px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 9px;

    background: rgba(255,255,255,.025);
}

.votacao-nav-current span {
    color: #74f58b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
}

.votacao-nav-current strong {
    margin-top: 2px;

    color: rgba(235,243,249,.88);
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 760px) {

    .votacao-toolbar-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .votacao-candidatura-nav {
        width: 100%;
        justify-content: space-between;
    }

    .votacao-nav-current {
        flex: 1 1 auto;
        min-width: 0;
    }
}



/* ============================================================
   ELEGIA_MAPEAMENTO_001
   ============================================================ */

.mapeamento-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.mapeamento-mode-switch {
    display: flex;
    gap: 7px;
}

.mapeamento-mode-switch a {
    text-decoration: none !important;
}

.mapeamento-mode-switch .active {
    border-color: rgba(103,245,122,.26);
    background: rgba(103,245,122,.08);
    color: #79f58a;
}

.mapeamento-selector {
    margin-bottom: 16px;
}

.mapeamento-selector label,
.mapeamento-compare-form label > span {
    display: block;
    margin: 6px 0;
    color: rgba(190,205,219,.58);
    font-size: 11px;
}

.mapeamento-search,
.mapeamento-compare-form select {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;

    background: #0c1825;
    color: #eef5fb;

    outline: none;
}

.mapeamento-search:focus,
.mapeamento-compare-form select:focus {
    border-color: rgba(103,245,122,.35);
}

.mapeamento-politico-lista {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 8px;
    margin-top: 12px;
}

.mapeamento-politico-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 9px;

    background: rgba(255,255,255,.02);

    text-decoration: none !important;
}

.mapeamento-politico-option:hover {
    border-color: rgba(103,245,122,.2);
    background: rgba(103,245,122,.04);
}

.mapeamento-politico-option img {
    width: 38px;
    height: 44px;
    border-radius: 7px;
    object-fit: cover;
    object-position: center top;
}

.mapeamento-politico-option strong,
.mapeamento-politico-option span {
    display: block;
}

.mapeamento-politico-option strong {
    color: #edf4fa;
    font-size: 12px;
}

.mapeamento-politico-option span {
    margin-top: 3px;
    color: rgba(190,205,219,.52);
    font-size: 10px;
}

.mapeamento-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 16px;
}

.mapeamento-context-politico {
    display: flex;
    align-items: center;
    gap: 11px;
}

.mapeamento-context-politico img {
    width: 48px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
}

.mapeamento-context-politico strong {
    display: block;
    margin-top: 3px;
    color: #eff6fb;
    font-size: 15px;
}

.mapeamento-election-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.mapeamento-election-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 104px;
    min-height: 48px;

    padding: 6px 12px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 9px;

    text-decoration: none !important;
}

.mapeamento-election-chip strong {
    color: #78f489;
    font-size: 11px;
}

.mapeamento-election-chip span {
    margin-top: 2px;
    color: rgba(220,231,239,.76);
    font-size: 9px;
}

.mapeamento-election-chip.active {
    background: rgba(103,245,122,.07);
    border-color: rgba(103,245,122,.2);
}

.mapeamento-workspace {
    display: grid;
    grid-template-columns:
        minmax(0,1fr) 320px;

    gap: 14px;
}

.mapeamento-map-panel {
    padding: 0;
    overflow: hidden;
}

.mapeamento-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 15px 16px;

    border-bottom:
        1px solid rgba(255,255,255,.055);
}

.mapeamento-map-toolbar strong {
    display: block;
    margin-top: 3px;
    color: #edf5fa;
    font-size: 14px;
}

.mapeamento-layer-buttons {
    display: flex;
    gap: 6px;
}

.mapeamento-map {
    position: relative;

    min-height: 590px;

    background:
        radial-gradient(
            circle at center,
            rgba(40,94,145,.15),
            rgba(4,15,25,.2)
        );
}

.mapeamento-map-empty {
    position: absolute;
    inset: 0;

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

    padding: 40px;

    text-align: center;
}

.mapeamento-map-empty strong {
    color: #eef5fb;
    font-size: 18px;
}

.mapeamento-map-empty span {
    max-width: 420px;
    margin-top: 7px;

    color: rgba(190,205,219,.55);
    font-size: 12px;
    line-height: 1.55;
}

.mapeamento-ranking {
    padding: 15px;
}

.mapeamento-ranking h2 {
    margin: 4px 0 13px;
}

.mapeamento-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 11px;
    padding-bottom: 11px;

    border-bottom:
        1px solid rgba(255,255,255,.055);
}

.mapeamento-total span {
    color: rgba(190,205,219,.55);
    font-size: 10px;
}

.mapeamento-total strong {
    color: #78f489;
    font-size: 21px;
}

.mapeamento-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mapeamento-ranking-item {
    width: 100%;

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

    padding: 9px 10px;

    border: 1px solid transparent;
    border-radius: 8px;

    background: rgba(255,255,255,.02);
    color: inherit;

    text-align: left;
    cursor: pointer;
}

.mapeamento-ranking-item:hover {
    border-color: rgba(103,245,122,.16);
}

.mapeamento-ranking-item > div:last-child {
    text-align: right;
}

.mapeamento-ranking-item strong,
.mapeamento-ranking-item span {
    display: block;
}

.mapeamento-ranking-item strong {
    color: #edf4fa;
    font-size: 11px;
}

.mapeamento-ranking-item span {
    margin-top: 2px;
    color: rgba(190,205,219,.48);
    font-size: 9px;
}

.mapeamento-ranking-empty {
    padding: 18px 10px;

    color: rgba(190,205,219,.5);
    font-size: 11px;
    text-align: center;
}

.mapeamento-comparativo-selector {
    margin-bottom: 14px;
}

.mapeamento-comparativo-selector h2 {
    margin: 4px 0;
}

.mapeamento-comparativo-selector p {
    margin-bottom: 15px;
}

.mapeamento-compare-form {
    display: grid;
    grid-template-columns:
        minmax(0,1fr)
        40px
        minmax(0,1fr)
        auto;

    align-items: end;
    gap: 10px;
}

.mapeamento-versus {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 42px;

    color: rgba(190,205,219,.5);
    font-weight: 900;
}

.mapeamento-compare-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 14px;
}

.mapeamento-compare-status span,
.mapeamento-compare-status strong {
    display: block;
}

.mapeamento-compare-status span {
    color: rgba(190,205,219,.48);
    font-size: 9px;
}

.mapeamento-compare-status strong {
    margin-top: 3px;
    color: #78f489;
}

.mapeamento-compare-status p {
    margin: 0;
    max-width: 600px;
}

.mapeamento-compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.mapeamento-compare-cards h2 {
    margin: 4px 0;
}

@media (max-width: 1000px) {

    .mapeamento-workspace {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {

    .mapeamento-heading,
    .mapeamento-context,
    .mapeamento-compare-status {
        flex-direction: column;
        align-items: stretch;
    }

    .mapeamento-mode-switch {
        width: 100%;
    }

    .mapeamento-mode-switch a {
        flex: 1;
        justify-content: center;
    }

    .mapeamento-politico-lista {
        grid-template-columns: 1fr;
    }

    .mapeamento-election-list {
        justify-content: flex-start;
    }

    .mapeamento-map {
        min-height: 430px;
    }

    .mapeamento-compare-form {
        grid-template-columns: 1fr;
    }

    .mapeamento-versus {
        height: 24px;
    }

    .mapeamento-compare-cards {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   ELEGIA_MAPEAMENTO_002B
   ============================================================ */

#mapeamentoEleitoral,
#mapaEleitoral {
    width: 100%;
}

#mapaEleitoral {
    min-height: 590px;
}

.mapeamento-map .leaflet-container {
    background: #0b1926;
}

.mapeamento-ranking-item.active {
    border-color: rgba(103,245,122,.28);
    background: rgba(103,245,122,.075);
}

.elegia-map-tooltip {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.elegia-map-tooltip strong {
    font-size: 12px;
}

.elegia-map-tooltip span {
    font-size: 10px;
}

.elegia-map-popup {
    min-width: 190px;
}

.elegia-map-popup > strong {
    display: block;

    margin-bottom: 10px;

    font-size: 15px;
}

.elegia-map-popup > span {
    display: block;

    color: #5f7180;
    font-size: 11px;
}

.elegia-map-popup-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.elegia-map-popup-kpis > div {
    padding: 7px;

    border-radius: 7px;

    background: #eef3f6;
}

.elegia-map-popup-kpis span,
.elegia-map-popup-kpis b {
    display: block;
}

.elegia-map-popup-kpis span {
    color: #657584;
    font-size: 9px;
    text-transform: uppercase;
}

.elegia-map-popup-kpis b {
    margin-top: 2px;

    color: #10202d;
    font-size: 13px;
}

.elegia-map-popup-meta {
    margin-top: 9px;

    color: #667786;
    font-size: 10px;
}

/*
 * Leaflet sobre o layout escuro Elegia.
 */
.mapeamento-map .leaflet-control-zoom a {
    text-decoration: none !important;
}

.mapeamento-map .leaflet-control-attribution {
    font-size: 8px;
}

@media (max-width: 760px) {

    #mapaEleitoral {
        min-height: 430px;
    }
}



/* ============================================================
   ELEGIA_MAPEAMENTO_FORCA_ELEITORAL_001
   ============================================================ */

/*
 * Remove padding padrão interno do Leaflet.
 * O card passa a controlar toda a aparência.
 */
.mapeamento-map .leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;

    border-radius: 16px;

    background: #f4f6f8;

    box-shadow:
        0 18px 44px
        rgba(0,0,0,.24);
}

.mapeamento-map .leaflet-popup-content {
    margin: 0 !important;
    width: auto !important;
}

.mapeamento-map .leaflet-popup-tip {
    background: #f4f6f8;
}

.mapeamento-map .leaflet-popup-close-button {
    top: 10px !important;
    right: 10px !important;

    width: 28px !important;
    height: 28px !important;

    color: #64748b !important;

    font-size: 20px !important;
    line-height: 28px !important;

    text-decoration: none !important;
}


/*
 * Card.
 */
.elegia-map-popup-electoral {
    width: 310px;

    color: #0f172a;

    font-family: inherit;
}


/*
 * Município.
 */
.elegia-map-popup-title {
    padding: 16px 18px 13px;

    border-bottom:
        1px solid #dfe4ea;

    color: #2563eb;

    font-size: 18px;
    font-weight: 850;
    line-height: 1.15;
}


/*
 * ELEITORES | VOTOS
 */
.elegia-map-popup-metrics {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));

    border-bottom:
        1px solid #dfe4ea;
}

.elegia-map-popup-metrics > div {
    padding: 13px 18px;
}

.elegia-map-popup-metrics > div + div {
    border-left:
        1px solid #e3e7ec;
}

.elegia-map-popup-metrics span,
.elegia-map-popup-metrics strong {
    display: block;
}

.elegia-map-popup-metrics span {
    margin-bottom: 4px;

    color: #64748b;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
}

.elegia-map-popup-metrics strong {
    color: #111827;

    font-size: 19px;
    font-weight: 850;
    line-height: 1;
}


/*
 * FORÇA ELEITORAL
 */
.elegia-map-popup-strength {
    padding: 13px 18px 10px;
}

.elegia-map-popup-strength-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}

.elegia-map-popup-strength-head span {
    color: #64748b;

    font-size: 10px;
    font-weight: 850;
    letter-spacing: .03em;
}

.elegia-map-popup-strength-head strong {
    color: #111827;

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


/*
 * Barra:
 * baixo → alto
 */
.elegia-map-popup-strength-track {
    position: relative;

    height: 8px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #ef4444 0%,
            #f59e0b 38%,
            #facc15 52%,
            #84cc16 72%,
            #16a34a 100%
        );
}


/*
 * Marcador.
 */
.elegia-map-popup-strength-marker {
    position: absolute;

    top: 50%;

    width: 15px;
    height: 15px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: #111827;

    box-shadow:
        0 2px 7px
        rgba(0,0,0,.28);

    transform:
        translate(
            -50%,
            -50%
        );
}


.elegia-map-popup-strength-scale {
    display: flex;
    justify-content: space-between;

    margin-top: 7px;

    color: #94a3b8;

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


.elegia-map-popup-meta {
    padding: 0 18px 14px;

    color: #64748b;

    font-size: 9px;
}


.elegia-map-popup-no-data {
    padding: 16px 18px 18px;

    color: #64748b;

    font-size: 11px;
}


@media (max-width: 480px) {

    .elegia-map-popup-electoral {
        width: 260px;
    }

    .elegia-map-popup-metrics strong {
        font-size: 16px;
    }
}



/* ============================================================
   ELEGIA_MAPA_POPUP_FULLSCREEN_001
   ============================================================ */


/*
 * POPUP LEAFLET
 */
.mapeamento-map
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    overflow: hidden;

    border-radius: 18px !important;

    background: #f5f7fa !important;

    box-shadow:
        0 22px 55px
        rgba(0, 0, 0, .28) !important;
}


.mapeamento-map
.leaflet-popup-content {
    width: auto !important;
    margin: 0 !important;
}


.mapeamento-map
.leaflet-popup-tip {
    background:
        #f5f7fa !important;
}


.mapeamento-map
.leaflet-popup-close-button {
    top: 12px !important;
    right: 12px !important;

    width: 26px !important;
    height: 26px !important;

    color:
        #64748b !important;

    font-size:
        22px !important;

    line-height:
        24px !important;

    text-decoration:
        none !important;

    z-index: 10;
}


/*
 * CARD
 */
.elegia-map-card {
    width: 330px;

    overflow: hidden;

    color: #0f172a;

    background:
        #f5f7fa;

    font-family:
        inherit;
}


/*
 * MUNICÍPIO
 */
.elegia-map-card-title {
    padding:
        18px 48px 15px 20px;

    border-bottom:
        1px solid #dde3ea;

    color: #2563eb;

    font-size: 19px;
    line-height: 1.1;

    font-weight: 900;

    text-transform:
        uppercase;

    letter-spacing:
        .015em;
}


/*
 * ELEITORES / VOTOS
 */
.elegia-map-card-kpis {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-bottom:
        1px solid #dde3ea;
}


.elegia-map-card-kpis > div {
    padding:
        14px 20px 16px;
}


.elegia-map-card-kpis
> div + div {
    border-left:
        1px solid #dde3ea;
}


.elegia-map-card-kpis span,
.elegia-map-card-kpis strong {
    display: block;
}


.elegia-map-card-kpis span {
    margin-bottom: 6px;

    color: #64748b;

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

    letter-spacing:
        .055em;
}


.elegia-map-card-kpis strong {
    color: #0f172a;

    font-size: 22px;
    line-height: 1;

    font-weight: 900;
}


/*
 * FORÇA ELEITORAL
 */
.elegia-map-card-strength {
    padding:
        16px 20px 13px;
}


.elegia-map-card-strength-head {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 12px;

    margin-bottom: 9px;
}


.elegia-map-card-strength-head span {
    color: #64748b;

    font-size: 11px;

    font-weight: 850;

    letter-spacing:
        .035em;
}


.elegia-map-card-strength-head strong {
    color: #0f172a;

    font-size: 15px;

    font-weight: 900;
}


.elegia-map-card-strength-bar {
    position: relative;

    height: 9px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #ef4444 0%,
            #fb923c 22%,
            #facc15 48%,
            #84cc16 72%,
            #22c55e 100%
        );
}


.elegia-map-card-marker {
    position: absolute;

    top: 50%;

    display: block;

    width: 17px;
    height: 17px;

    border:
        3px solid #fff;

    border-radius: 50%;

    background: #172033;

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

    transform:
        translate(
            -50%,
            -50%
        );
}


.elegia-map-card-scale {
    display: flex;

    justify-content:
        space-between;

    margin-top: 7px;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 700;
}


/*
 * ESTRUTURA ELEITORAL
 */
.elegia-map-card-structure {
    display: grid;

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

    margin:
        0 20px;

    border:
        1px solid #dde3ea;

    border-radius:
        10px;

    background:
        #ffffff;
}


.elegia-map-card-structure > div {
    padding:
        9px 6px;

    text-align:
        center;
}


.elegia-map-card-structure
> div + div {
    border-left:
        1px solid #e5e9ee;
}


.elegia-map-card-structure strong,
.elegia-map-card-structure span {
    display: block;
}


.elegia-map-card-structure strong {
    color: #0f172a;

    font-size: 13px;

    font-weight: 900;
}


.elegia-map-card-structure span {
    margin-top: 2px;

    color: #7c8a99;

    font-size: 9px;

    text-transform:
        uppercase;
}


/*
 * AÇÕES
 */
.elegia-map-card-actions {
    padding:
        12px 20px 18px;
}


.elegia-map-fullscreen-btn {
    display: flex;

    align-items: center;

    justify-content:
        center;

    width: 100%;

    min-height: 38px;

    padding:
        0 14px;

    border:
        1px solid #c9d9f7;

    border-radius:
        9px;

    background:
        #edf4ff;

    color: #2563eb;

    font-family:
        inherit;

    font-size: 11px;

    font-weight: 850;

    cursor: pointer;

    text-transform:
        uppercase;

    letter-spacing:
        .025em;

    transition:
        .16s ease;
}


.elegia-map-fullscreen-btn:hover {
    border-color:
        #93b4ee;

    background:
        #dfeeff;
}


/*
 * SEM DADOS
 */
.elegia-map-card-empty {
    padding:
        18px 20px 8px;

    color: #64748b;

    font-size: 11px;

    line-height: 1.45;
}


/*
 * ============================================================
 * FULLSCREEN
 * ============================================================
 */

.mapeamento-map-panel:fullscreen,
.mapeamento-map-panel:-webkit-full-screen {
    display: flex;

    flex-direction:
        column;

    width: 100vw !important;
    height: 100vh !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    border: 0 !important;

    border-radius:
        0 !important;

    background:
        #071521;
}


.mapeamento-map-panel:fullscreen
.mapeamento-map,
.mapeamento-map-panel:-webkit-full-screen
.mapeamento-map {
    flex: 1 1 auto;

    width: 100% !important;

    min-height: 0 !important;

    height: auto !important;
}


.mapeamento-map-panel:fullscreen
#mapaEleitoral,
.mapeamento-map-panel:-webkit-full-screen
#mapaEleitoral {
    flex: 1 1 auto;

    width: 100% !important;

    height: 100% !important;

    min-height: 0 !important;
}


.mapeamento-map-panel:fullscreen
.mapeamento-map-toolbar,
.mapeamento-map-panel:-webkit-full-screen
.mapeamento-map-toolbar {
    flex: 0 0 auto;
}


/*
 * MOBILE
 */
@media (
    max-width: 520px
) {

    .elegia-map-card {
        width: 275px;
    }

    .elegia-map-card-title {
        font-size: 16px;
    }

    .elegia-map-card-kpis strong {
        font-size: 18px;
    }
}



/* ============================================================
   ELEGIA_MAPA_FULLSCREEN_TOOLBAR_001
   ============================================================ */

/*
 * O fullscreen agora pertence à toolbar do mapa,
 * não ao popup do município.
 */
.elegia-map-card-actions,
.elegia-map-fullscreen-btn {
    display: none !important;
}


/*
 * Botão de tela cheia na barra superior.
 */
.mapeamento-fullscreen-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    text-decoration: none !important;
}


/*
 * No fullscreen, toolbar continua visível.
 */
.mapeamento-map-panel:fullscreen
.mapeamento-map-toolbar,
.mapeamento-map-panel:-webkit-full-screen
.mapeamento-map-toolbar {
    position: relative;
    z-index: 1001;

    background: #0d1d2c;
}


/*
 * O mapa ocupa o restante da tela.
 */
.mapeamento-map-panel:fullscreen,
.mapeamento-map-panel:-webkit-full-screen {
    display: flex !important;
    flex-direction: column !important;
}

.mapeamento-map-panel:fullscreen
#mapaEleitoral,
.mapeamento-map-panel:-webkit-full-screen
#mapaEleitoral {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
}


/*
 * Mobile
 */
@media (max-width: 760px) {

    .mapeamento-layer-buttons {
        flex-wrap: wrap;
    }

    .mapeamento-fullscreen-btn {
        width: auto;
    }
}



/* ============================================================
   ELEGIA_MAPA_MUNICIPIO_LINK_001
   ============================================================ */

.elegia-map-card-drilldown {
    padding: 12px 20px 18px;
}

.elegia-map-card-open-municipio {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 40px;

    box-sizing: border-box;

    padding: 0 14px;

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

    background: #edf4ff;

    color: #2563eb !important;

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

    letter-spacing: .02em;

    text-decoration: none !important;
    text-transform: uppercase;

    transition: .16s ease;
}

.elegia-map-card-open-municipio:hover,
.elegia-map-card-open-municipio:focus {
    border-color: #87acec;

    background: #dfeeff;

    color: #174fc4 !important;

    text-decoration: none !important;
}



/* ============================================================
   ELEGIA_MAPEAMENTO_MUNICIPIO_001
   ============================================================ */

.municipio-toolbar {
    display: flex;

    margin-bottom: 16px;
}


.municipio-voltar {
    text-decoration:
        none !important;
}


.municipio-heading {
    margin-bottom: 18px;
}


.municipio-kpis {
    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(0,1fr)
        );

    gap: 10px;

    margin-bottom: 14px;
}


.municipio-kpi {
    padding: 16px;
}


.municipio-kpi > span,
.municipio-kpi > strong,
.municipio-kpi > small {
    display: block;
}


.municipio-kpi > span {
    color:
        rgba(
            190,
            205,
            219,
            .52
        );

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .05em;
}


.municipio-kpi > strong {
    margin-top: 7px;

    color: #edf5fa;

    font-size: 23px;

    line-height: 1;

    font-weight: 900;
}


.municipio-kpi > small {
    margin-top: 7px;

    color:
        rgba(
            190,
            205,
            219,
            .46
        );

    font-size: 9px;
}


.municipio-kpi-forca
> strong {
    color: #78f489;
}


.municipio-presenca {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    margin-bottom: 14px;
}


.municipio-presenca h2 {
    margin:
        4px 0 0;
}


.municipio-presenca-numeros {
    display: flex;

    gap: 10px;
}


.municipio-presenca-numeros
> div {
    min-width: 120px;

    padding: 9px 13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .06
        );

    border-radius: 8px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );

    text-align: right;
}


.municipio-presenca-numeros
strong,
.municipio-presenca-numeros
span {
    display: block;
}


.municipio-presenca-numeros
strong {
    color: #edf5fa;

    font-size: 16px;
}


.municipio-presenca-numeros
span {
    margin-top: 2px;

    color:
        rgba(
            190,
            205,
            219,
            .47
        );

    font-size: 9px;
}


.municipio-tabs {
    display: flex;

    gap: 7px;

    margin-bottom: 10px;
}


.municipio-tab {
    min-height: 37px;

    padding:
        0 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 8px;

    background:
        transparent;

    color:
        rgba(
            225,
            235,
            243,
            .75
        );

    font-family: inherit;

    cursor: pointer;
}


.municipio-tab.active {
    border-color:
        rgba(
            103,
            245,
            122,
            .23
        );

    background:
        rgba(
            103,
            245,
            122,
            .07
        );

    color: #78f489;
}


.municipio-tab-panel {
    display: none;

    padding: 17px;
}


.municipio-tab-panel.active {
    display: block;
}


.municipio-section-head {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 18px;

    margin-bottom: 14px;
}


.municipio-section-head h2 {
    margin:
        4px 0 0;
}


.municipio-filter {
    width: min(
        320px,
        100%
    );

    min-height: 38px;

    padding:
        0 12px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius: 8px;

    background: #0c1825;

    color: #eef5fb;

    outline: 0;
}


.municipio-filter:focus {
    border-color:
        rgba(
            103,
            245,
            122,
            .3
        );
}


.municipio-table-wrap {
    overflow-x: auto;
}


.municipio-table {
    width: 100%;

    border-collapse:
        collapse;
}


.municipio-table th,
.municipio-table td {
    padding:
        12px 11px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );

    text-align: left;
}


.municipio-table th {
    color:
        rgba(
            190,
            205,
            219,
            .48
        );

    font-size: 9px;

    font-weight: 800;

    text-transform:
        uppercase;

    letter-spacing:
        .04em;
}


.municipio-table td {
    color: #dce7ef;

    font-size: 11px;
}


.municipio-table td strong {
    color: #edf5fa;
}


.municipio-table td small {
    display: block;

    margin-top: 3px;

    color:
        rgba(
            190,
            205,
            219,
            .45
        );

    font-size: 9px;
}


.municipio-force-pill {
    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding:
        0 8px;

    border-radius: 999px;

    background:
        rgba(
            103,
            245,
            122,
            .08
        );

    color: #78f489;

    font-weight: 800;
}


@media (
    max-width: 1180px
) {

    .municipio-kpis {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }
}


@media (
    max-width: 760px
) {

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

    .municipio-presenca,
    .municipio-section-head {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .municipio-presenca-numeros {
        width: 100%;
    }

    .municipio-presenca-numeros
    > div {
        flex: 1;
    }

    .municipio-tabs {
        overflow-x: auto;
    }
}



/* ============================================================
   ELEGIA_FORCA_CORES_001
   ============================================================ */

.municipio-force-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    min-height: 27px;
    padding: 0 9px;

    border-radius: 999px;

    font-weight: 850;
}

.municipio-force-pill small {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* BAIXA */
.municipio-force-baixa {
    background: rgba(239,68,68,.12);
    color: #fb7185;
}

/* MÉDIA */
.municipio-force-media {
    background: rgba(234,179,8,.12);
    color: #facc15;
}

/* ALTA */
.municipio-force-alta {
    background: rgba(34,197,94,.12);
    color: #4ade80;
}



/* ============================================================
   ELEGIA_FORCA_COMPETITIVA_003
   ============================================================ */

.municipio-kpi-competitiva {
    position: relative;
    overflow: hidden;
}

.municipio-kpi-competitiva::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;
}

.municipio-kpi-competitiva-baixa
> strong {
    color: #fb7185;
}

.municipio-kpi-competitiva-baixa::after {
    background: #ef4444;
}


.municipio-kpi-competitiva-media
> strong {
    color: #facc15;
}

.municipio-kpi-competitiva-media::after {
    background: #eab308;
}


.municipio-kpi-competitiva-alta
> strong {
    color: #4ade80;
}

.municipio-kpi-competitiva-alta::after {
    background: #22c55e;
}


.municipio-kpi-competitiva-sem-base
> strong {
    color: #94a3b8;
}

.municipio-kpi-competitiva-sem-base::after {
    background: #64748b;
}


/*
 * Agora são 7 KPIs.
 */
.municipio-kpis {
    grid-template-columns:
        repeat(
            7,
            minmax(0,1fr)
        );
}


@media (max-width: 1280px) {

    .municipio-kpis {
        grid-template-columns:
            repeat(
                4,
                minmax(0,1fr)
            );
    }
}



/* ============================================================
   ELEGIA_MUNICIPIO_UX_004B
   ============================================================ */


/* KPIs estratégicos */

.municipio-kpis-estrategicos {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        ) !important;

    gap: 12px;
}


.municipio-kpis-estrategicos
.municipio-kpi {
    min-height: 96px;

    box-sizing: border-box;

    padding: 18px 20px;
}


.municipio-kpis-estrategicos
.municipio-kpi > span {
    font-size: 10px;

    letter-spacing: .06em;
}


.municipio-kpis-estrategicos
.municipio-kpi > strong {
    margin-top: 8px;

    font-size: 28px;
}


.municipio-kpis-estrategicos
.municipio-kpi > small {
    margin-top: 7px;

    font-size: 9px;
}


.municipio-kpi-corte > strong {
    color: #edf5fa;
}


/* Candidato em destaque */

.municipio-candidato-contexto {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 13px;
}


.municipio-candidato-nome {
    color: #f3f8fb;

    font-size: 16px;

    font-weight: 900;

    letter-spacing: .015em;
}


.municipio-candidato-chip {
    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 0 11px;

    border:
        1px solid
        rgba(
            96,
            165,
            250,
            .2
        );

    border-radius: 999px;

    background:
        rgba(
            96,
            165,
            250,
            .08
        );

    color: #9bc9ec;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;
}


.municipio-candidato-numero {
    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 0 12px;

    border:
        1px solid
        rgba(
            103,
            245,
            122,
            .3
        );

    border-radius: 999px;

    background:
        rgba(
            103,
            245,
            122,
            .09
        );

    color: #78f489;

    font-size: 10px;

    font-weight: 900;
}


/* Paginação */

.municipio-pagination {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 16px;

    padding-top: 14px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.municipio-pagination-info {
    color:
        rgba(
            190,
            205,
            219,
            .52
        );

    font-size: 10px;
}


.municipio-pagination-actions,
.municipio-page-numbers {
    display: flex;

    align-items: center;

    gap: 5px;
}


.municipio-page-btn,
.municipio-page-number {
    min-height: 32px;

    padding: 0 10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius: 7px;

    background: #0c1825;

    color:
        rgba(
            225,
            235,
            243,
            .78
        );

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;
}


.municipio-page-number {
    min-width: 32px;

    padding: 0 7px;
}


.municipio-page-number.active {
    border-color:
        rgba(
            103,
            245,
            122,
            .3
        );

    background:
        rgba(
            103,
            245,
            122,
            .09
        );

    color: #78f489;

    font-weight: 900;
}


.municipio-page-btn:disabled {
    opacity: .32;

    cursor: default;
}


.municipio-page-dots {
    padding: 0 4px;

    color:
        rgba(
            190,
            205,
            219,
            .35
        );
}


@media (
    max-width: 1000px
) {

    .municipio-kpis-estrategicos {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            ) !important;
    }
}


@media (
    max-width: 640px
) {

    .municipio-kpis-estrategicos {
        grid-template-columns:
            1fr !important;
    }

    .municipio-pagination {
        flex-direction: column;

        align-items: stretch;
    }

    .municipio-pagination-actions {
        overflow-x: auto;
    }
}



/* ============================================================
   ELEGIA_MUNICIPIO_BAIRROS_005
   ============================================================ */

[data-panel="bairros"]
.municipio-table
td:first-child {
    min-width: 220px;
}


[data-panel="bairros"]
.municipio-table
td:first-child strong {
    color: #edf5fa;

    font-weight: 850;
}


[data-panel="bairros"]
.municipio-table
tbody tr:hover {
    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}




/* ============================================================
   ELEGIA_MUNICIPIO_LOCALIDADES_005
   ============================================================ */


.municipio-territorial-coverage {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 6px 10px;

    margin-top: 10px;
}


.municipio-territorial-coverage > strong {
    color: #78f489;

    font-size: 15px;

    font-weight: 900;
}


.municipio-territorial-coverage > span {
    color:
        rgba(
            215,
            230,
            239,
            .72
        );

    font-size: 10px;
}


.municipio-territorial-coverage > small {
    width: 100%;

    color:
        rgba(
            177,
            196,
            209,
            .48
        );

    font-size: 9px;
}


.municipio-territorial-description {
    max-width: 620px;

    margin:
        7px
        0
        0;

    color:
        rgba(
            190,
            205,
            219,
            .54
        );

    font-size: 10px;

    line-height: 1.55;
}


[data-panel="localidades"]
.municipio-table
td:first-child {
    min-width: 210px;
}


[data-panel="localidades"]
.municipio-table
td:first-child strong {
    color: #edf5fa;

    font-weight: 850;
}


.municipio-localidade-tipo {
    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding:
        0
        9px;

    border:
        1px solid
        rgba(
            96,
            165,
            250,
            .15
        );

    border-radius: 999px;

    background:
        rgba(
            96,
            165,
            250,
            .055
        );

    color: #9bc9ec;

    font-size: 9px;

    font-weight: 750;

    white-space: nowrap;
}


[data-panel="localidades"]
.municipio-table
tbody tr:hover {
    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}


@media (
    max-width: 720px
) {

    .municipio-territorial-coverage {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }
}




/* ============================================================
   ELEGIA_MUNICIPIO_005A_UI
   ============================================================ */


/* abas */
.municipio-tabs {
    gap: 7px;
}


.municipio-tab {
    min-height: 34px;

    padding:
        0
        14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    line-height: 1;
}


/* cabeçalho territorial */
.municipio-section-head {
    gap: 20px;
}


.municipio-section-head > div:first-child {
    min-width: 0;
}


.municipio-territorial-coverage {
    margin-top: 12px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}


.territorial-coverage-main,
.territorial-coverage-item {
    display: inline-flex;

    align-items: baseline;

    gap: 5px;

    min-height: 27px;

    padding:
        0
        9px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );

    border-radius: 8px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}


.territorial-coverage-main {
    border-color:
        rgba(
            61,
            239,
            118,
            .16
        );

    background:
        rgba(
            61,
            239,
            118,
            .045
        );
}


.territorial-coverage-main strong {
    color: #4cf280;

    font-size: 12px;

    font-weight: 900;
}


.territorial-coverage-item strong {
    color: #dcebf4;

    font-size: 11px;

    font-weight: 850;
}


.territorial-coverage-main span,
.territorial-coverage-item span {
    color:
        rgba(
            176,
            195,
            208,
            .56
        );

    font-size: 8px;

    font-weight: 650;
}


/* tabela bairros */
[data-panel="bairros"]
.municipio-table
th:first-child,
[data-panel="bairros"]
.municipio-table
td:first-child {
    width: 34%;
}


/* tabela localidades */
[data-panel="localidades"]
.municipio-table
th:first-child,
[data-panel="localidades"]
.municipio-table
td:first-child {
    width: 26%;
}


[data-panel="localidades"]
.municipio-table
th:nth-child(2),
[data-panel="localidades"]
.municipio-table
td:nth-child(2) {
    width: 17%;
}


[data-panel="localidades"]
.municipio-localidade-tipo {
    min-height: 22px;

    padding:
        0
        8px;

    font-size: 8px;
}


/* pills de penetração mais limpos */
[data-panel="bairros"]
.municipio-force-pill,
[data-panel="localidades"]
.municipio-force-pill {
    min-width: 58px;

    justify-content: center;

    padding:
        5px
        9px;
}


/* descrição */
.municipio-territorial-description {
    margin-top: 5px;

    max-width: 570px;
}


/* evitar sensação de rodapé perdido */
.app-footer {
    margin-top: 28px;
}


@media (
    max-width: 900px
) {

    .municipio-tabs {
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 3px;
    }


    .municipio-tab {
        flex: 0 0 auto;
    }
}


@media (
    max-width: 720px
) {

    .municipio-territorial-coverage {
        display: grid;

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

        width: 100%;
    }


    .territorial-coverage-main,
    .territorial-coverage-item {
        justify-content: center;

        padding:
            0
            6px;
    }
}




/* ============================================================
   ELEGIA_MAPEAMENTO_BAIRRO_001
   ============================================================ */


.municipio-bairro-link {
    display: inline-flex;

    flex-direction: column;

    gap: 3px;

    color: inherit;

    text-decoration: none !important;
}


.municipio-bairro-link > span {
    color:
        rgba(
            103,
            245,
            122,
            .48
        );

    font-size: 8px;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(
            -2px
        );

    transition:
        opacity .14s ease,
        transform .14s ease;
}


.municipio-bairro-link:hover > strong {
    color: #78f489 !important;
}


.municipio-bairro-link:hover > span {
    opacity: 1;

    transform:
        translateY(
            0
        );
}


/* página */

.bairro-page {
    max-width: none;
}


.bairro-voltar {
    margin-bottom: 18px;
}


.bairro-heading {
    margin-bottom: 18px;
}


.bairro-heading h1 {
    margin:
        7px
        0
        0;

    color: #f2f7fb;

    font-size: 34px;

    line-height: 1;

    letter-spacing:
        -.025em;
}


/* KPIs */

.bairro-kpis {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 12px;

    margin-bottom: 14px;
}


.bairro-kpi {
    position: relative;

    min-height: 110px;

    padding: 18px 19px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .065
        );

    border-radius: 12px;

    background: #102132;
}


.bairro-kpi > span,
.bairro-kpi > strong,
.bairro-kpi > small {
    display: block;
}


.bairro-kpi > span {
    color:
        rgba(
            161,
            188,
            207,
            .64
        );

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .06em;
}


.bairro-kpi > strong {
    margin-top: 9px;

    color: #f0f6fa;

    font-size: 26px;

    line-height: 1;
}


.bairro-kpi > small {
    margin-top: 8px;

    color:
        rgba(
            174,
            195,
            209,
            .48
        );

    font-size: 9px;
}


.bairro-kpi-primary::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    background: #31e879;
}


.bairro-kpi-primary > strong {
    color: #42ef82;
}


/* estrutura */

.bairro-estrutura {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 0;

    margin-bottom: 14px;

    padding: 0;
}


.bairro-estrutura > div {
    padding:
        15px
        18px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.bairro-estrutura > div:last-child {
    border-right: 0;
}


.bairro-estrutura span,
.bairro-estrutura strong {
    display: block;
}


.bairro-estrutura span {
    color:
        rgba(
            160,
            184,
            201,
            .52
        );

    font-size: 8px;

    font-weight: 800;
}


.bairro-estrutura strong {
    margin-top: 5px;

    color: #e9f1f6;

    font-size: 15px;
}


/* grid */

.bairro-grid {
    display: grid;

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

    gap: 14px;

    margin-bottom: 14px;
}


/* ranking */

.bairro-ranking {
    padding: 18px;
}


.bairro-ranking h2,
.bairro-insight h2,
.bairro-secoes h2 {
    margin:
        5px
        0
        14px;
}


.bairro-ranking-list {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.bairro-ranking-item {
    display: grid;

    grid-template-columns:
        32px
        minmax(
            0,
            1fr
        )
        80px
        92px
        65px;

    align-items: center;

    gap: 10px;

    padding:
        11px
        12px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .045
        );

    border-radius: 9px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}


.bairro-ranking-pos {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background:
        rgba(
            103,
            245,
            122,
            .07
        );

    color: #78f489;

    font-size: 10px;

    font-weight: 900;
}


.bairro-ranking-main {
    min-width: 0;
}


.bairro-ranking-main strong {
    display: block;

    color: #eef5f9;

    font-size: 10px;
}


.bairro-ranking-main span {
    display: block;

    margin-top: 3px;

    overflow: hidden;

    color:
        rgba(
            175,
            196,
            210,
            .42
        );

    font-size: 8px;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.bairro-ranking-metric {
    text-align: right;
}


.bairro-ranking-metric strong,
.bairro-ranking-metric span {
    display: block;
}


.bairro-ranking-metric strong {
    color: #e9f2f7;

    font-size: 11px;
}


.bairro-ranking-metric span {
    margin-top: 2px;

    color:
        rgba(
            170,
            191,
            205,
            .42
        );

    font-size: 7px;
}


/* insight */

.bairro-insight {
    padding: 18px;
}


.bairro-insight-number {
    margin-top: 16px;

    color: #45ef82;

    font-size: 34px;

    font-weight: 900;

    line-height: 1;
}


.bairro-insight p {
    margin:
        8px
        0
        18px;

    color:
        rgba(
            192,
            209,
            220,
            .58
        );

    font-size: 10px;

    line-height: 1.6;
}


.bairro-insight p strong {
    color: #edf5fa;
}


.bairro-insight-divider {
    height: 1px;

    margin:
        13px
        0;

    background:
        rgba(
            255,
            255,
            255,
            .06
        );
}


.bairro-insight > span,
.bairro-insight > strong {
    display: block;
}


.bairro-insight > span {
    margin-top: 12px;

    color:
        rgba(
            166,
            190,
            205,
            .5
        );

    font-size: 8px;
}


.bairro-insight > strong {
    margin-top: 3px;

    color: #e9f2f7;

    font-size: 17px;
}


/* seções */

.bairro-secoes {
    padding: 18px;
}


.bairro-secoes
.municipio-section-head {
    margin-bottom: 7px;
}


.bairro-table-address {
    display: block;

    margin-top: 3px;

    color:
        rgba(
            160,
            184,
            201,
            .4
        );

    font-size: 7px;
}


/* responsivo */

@media (
    max-width: 1050px
) {

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


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


    .bairro-ranking-item {
        grid-template-columns:
            28px
            minmax(
                0,
                1fr
            )
            72px
            80px;
    }


    .bairro-ranking-item
    .bairro-ranking-metric:last-child {
        display: none;
    }

}


@media (
    max-width: 680px
) {

    .bairro-kpis {
        grid-template-columns:
            1fr;
    }


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


    .bairro-estrutura > div:nth-child(2) {
        border-right: 0;
    }


    .bairro-estrutura > div:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                .055
            );
    }


    .bairro-ranking-item {
        grid-template-columns:
            26px
            minmax(
                0,
                1fr
            )
            62px;
    }


    .bairro-ranking-item
    .bairro-ranking-metric:nth-last-child(-n+2) {
        display: none;
    }

}




/* ============================================================
   ELEGIA_MAPEAMENTO_LOCAL_001
   ============================================================ */


.bairro-ranking-link {
    color: inherit;

    text-decoration: none !important;

    transition:
        border-color .14s ease,
        background .14s ease,
        transform .14s ease;
}


.bairro-ranking-link:hover {
    border-color:
        rgba(
            77,
            239,
            126,
            .2
        );

    background:
        rgba(
            77,
            239,
            126,
            .035
        );

    transform:
        translateY(
            -1px
        );
}


.bairro-ranking-link:hover
.bairro-ranking-main strong {
    color: #78f489;
}


/* heading */

.local-heading {
    margin-bottom: 18px;
}


.local-heading h1 {
    max-width: 920px;

    margin:
        7px
        0
        0;

    color: #f1f6fa;

    font-size: 30px;

    line-height: 1.1;

    letter-spacing:
        -.02em;
}


.local-breadcrumb {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 8px;

    color:
        rgba(
            159,
            188,
            207,
            .6
        );

    font-size: 9px;

    font-weight: 700;
}


.local-address {
    margin-top: 7px;

    color:
        rgba(
            170,
            193,
            207,
            .48
        );

    font-size: 9px;
}


/* operational cards */

.local-operational-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 12px;

    margin-bottom: 14px;
}


.local-operational-card {
    min-height: 145px;

    padding: 17px;
}


.local-operational-main {
    display: block;

    margin-top: 10px;

    color: #edf5fa;

    font-size: 18px;

    font-weight: 900;
}


.local-operational-card > span {
    display: block;

    margin-top: 4px;

    color:
        rgba(
            168,
            191,
            206,
            .48
        );

    font-size: 8px;
}


.local-operational-number {
    margin-top: 14px;

    color: #4bed82;

    font-size: 21px;

    font-weight: 900;
}


.local-operational-card > small {
    display: block;

    margin-top: 5px;

    color:
        rgba(
            168,
            191,
            206,
            .42
        );

    font-size: 8px;
}


.local-operational-alert {
    border-color:
        rgba(
            255,
            95,
            111,
            .1
        );
}


.local-operational-alert
.local-operational-main {
    color: #ff7f90;
}


.local-zero-list {
    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 12px;
}


.local-zero-list span {
    display: inline-flex;

    width: fit-content;

    padding:
        4px
        7px;

    border-radius: 999px;

    background:
        rgba(
            255,
            88,
            108,
            .08
        );

    color: #ff8493;

    font-size: 8px;

    font-weight: 750;
}


/* tabela */

.local-secoes {
    margin-bottom: 0;
}


.local-status {
    display: inline-flex;

    align-items: center;

    min-height: 22px;

    padding:
        0
        8px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 800;
}


.local-status-alta {
    background:
        rgba(
            44,
            213,
            113,
            .1
        );

    color: #42e982;
}


.local-status-media {
    background:
        rgba(
            241,
            196,
            15,
            .11
        );

    color: #f0c72c;
}


.local-status-baixa,
.local-status-zero {
    background:
        rgba(
            255,
            83,
            104,
            .1
        );

    color: #ff7183;
}


.local-row-zero {
    background:
        rgba(
            255,
            75,
            95,
            .025
        );
}


.local-row-zero td {
    opacity: .76;
}


.local-row-zero td:nth-child(5),
.local-row-zero td:last-child {
    opacity: 1;
}


.local-alert-value {
    color: #ff7183 !important;
}


/* responsive */

@media (
    max-width: 1050px
) {

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

}


@media (
    max-width: 680px
) {

    .local-operational-grid {
        grid-template-columns:
            1fr;
    }


    .local-heading h1 {
        font-size: 23px;
    }

}




/* ============================================================
   ELEGIA_MAPEAMENTO_LOCAL_001A
   ============================================================ */


.local-operational-ok {
    border-color:
        rgba(
            68,
            229,
            128,
            .09
        );
}


.local-operational-ok
.local-operational-main {
    color: #49ec83;
}


.local-operational-ok small {
    color:
        rgba(
            119,
            221,
            157,
            .52
        );
}




/* ============================================================
   ELEGIA_PRIORIDADE_TERRITORIAL_001
   ============================================================ */


.local-priority-panel {
    margin-bottom: 14px;

    padding: 18px;
}


.local-priority-heading {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 15px;
}


.local-priority-heading h2 {
    margin:
        5px
        0
        0;

    color: #edf5fa;
}


.local-priority-heading p {
    margin:
        6px
        0
        0;

    color:
        rgba(
            171,
            195,
            210,
            .46
        );

    font-size: 8px;
}


.local-priority-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 10px;
}


.local-priority-card {
    min-width: 0;

    padding: 14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            .014
        );
}


.local-priority-card header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.local-priority-card header > div {
    display: flex;

    align-items: center;

    gap: 7px;
}


.local-priority-card header strong {
    color: #edf5f9;

    font-size: 11px;

    font-weight: 900;
}


.local-priority-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}


.local-priority-count {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 25px;
    height: 22px;

    padding:
        0
        6px;

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    color: #e9f2f7;

    font-size: 9px;

    font-weight: 900;
}


.local-priority-card > p {
    min-height: 38px;

    margin:
        9px
        0
        11px;

    color:
        rgba(
            170,
            193,
            207,
            .45
        );

    font-size: 8px;

    line-height: 1.5;
}


.local-priority-list {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.local-priority-list > div {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    min-height: 25px;

    padding:
        0
        8px;

    border-radius: 6px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}


.local-priority-list span {
    color:
        rgba(
            190,
            207,
            218,
            .65
        );

    font-size: 8px;

    font-weight: 650;
}


.local-priority-list strong {
    font-size: 9px;

    font-weight: 900;
}


.local-priority-list > small {
    margin-top: 3px;

    color:
        rgba(
            167,
            191,
            206,
            .38
        );

    font-size: 7px;
}


/* Defender */

.priority-defender {
    border-color:
        rgba(
            53,
            229,
            120,
            .11
        );
}


.priority-defender
.local-priority-dot {
    background: #42e982;
}


.priority-defender
.local-priority-list strong {
    color: #42e982;
}


/* Expandir */

.priority-expand {
    border-color:
        rgba(
            240,
            199,
            44,
            .12
        );
}


.priority-expand
.local-priority-dot {
    background: #f0c72c;
}


.priority-expand
.local-priority-list strong {
    color: #f0c72c;
}


/* Prioridade */

.priority-critical {
    border-color:
        rgba(
            255,
            133,
            62,
            .13
        );
}


.priority-critical
.local-priority-dot {
    background: #ff9b53;
}


.priority-critical
.local-priority-list strong {
    color: #ffae68;
}


/* Zerada */

.priority-zero {
    border-color:
        rgba(
            255,
            82,
            104,
            .14
        );
}


.priority-zero
.local-priority-dot {
    background: #ff6577;
}


.priority-zero
.local-priority-list strong {
    color: #ff7586;
}


.priority-empty {
    justify-content: flex-start !important;

    color:
        rgba(
            117,
            225,
            157,
            .58
        ) !important;

    font-size: 8px;
}


@media (
    max-width: 1100px
) {

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

}


@media (
    max-width: 680px
) {

    .local-priority-grid {
        grid-template-columns:
            1fr;
    }

}




/* ============================================================
   ELEGIA_PRIORIDADE_BAIRRO_001
   ============================================================ */


.bairro-estrutura-alerta {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin:
        -3px
        0
        14px;

    padding:
        6px
        9px;

    border:
        1px solid
        rgba(
            255,
            84,
            104,
            .12
        );

    border-radius: 8px;

    background:
        rgba(
            255,
            84,
            104,
            .045
        );

    color: #ff7a8b;
}


.bairro-estrutura-alerta strong {
    font-size: 11px;

    font-weight: 900;
}


.bairro-estrutura-alerta span {
    font-size: 8px;

    font-weight: 700;
}


/* ação dos locais */

.bairro-ranking-action {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 68px;

    min-height: 22px;

    padding:
        0
        8px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .03em;
}


.bairro-ranking-action-defender {
    background:
        rgba(
            53,
            229,
            120,
            .1
        );

    color: #49e984;
}


.bairro-ranking-action-expand {
    background:
        rgba(
            240,
            198,
            43,
            .11
        );

    color: #efc62c;
}


.bairro-ranking-action-critical {
    background:
        rgba(
            255,
            138,
            66,
            .11
        );

    color: #ffa25f;
}


.bairro-ranking-action-zero {
    background:
        rgba(
            255,
            80,
            100,
            .11
        );

    color: #ff7184;
}


/*
 * O ranking ganhou uma coluna operacional.
 */
.bairro-ranking-item {
    grid-template-columns:
        32px
        minmax(
            0,
            1fr
        )
        80px
        92px
        65px
        78px;
}


/* painel */

.bairro-priority-panel {
    margin-bottom: 14px;

    padding: 18px;
}


.bairro-priority-heading {
    margin-bottom: 15px;
}


.bairro-priority-heading h2 {
    margin:
        5px
        0
        0;

    color: #edf5f9;
}


.bairro-priority-heading p {
    margin:
        6px
        0
        0;

    color:
        rgba(
            170,
            193,
            207,
            .45
        );

    font-size: 8px;
}


.bairro-priority-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 10px;
}


.bairro-priority-card {
    min-width: 0;

    padding: 14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            .014
        );
}


.bairro-priority-card header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.bairro-priority-card header > div {
    display: flex;

    align-items: center;

    gap: 7px;
}


.bairro-priority-card header strong {
    color: #edf5f9;

    font-size: 11px;

    font-weight: 900;
}


.bairro-priority-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}


.bairro-priority-count {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 25px;

    height: 22px;

    padding:
        0
        6px;

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    color: #edf5fa;

    font-size: 9px;

    font-weight: 900;
}


.bairro-priority-card > p {
    min-height: 38px;

    margin:
        9px
        0
        11px;

    color:
        rgba(
            170,
            193,
            207,
            .45
        );

    font-size: 8px;

    line-height: 1.5;
}


.bairro-priority-list {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.bairro-priority-list > div {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    min-height: 25px;

    padding:
        0
        8px;

    border-radius: 6px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );
}


.bairro-priority-list span {
    color:
        rgba(
            188,
            205,
            217,
            .65
        );

    font-size: 8px;

    font-weight: 650;
}


.bairro-priority-list strong {
    font-size: 9px;

    font-weight: 900;
}


.bairro-priority-list > small {
    margin-top: 3px;

    color:
        rgba(
            167,
            191,
            206,
            .38
        );

    font-size: 7px;
}


/* Defender */

.bairro-priority-defender {
    border-color:
        rgba(
            53,
            229,
            120,
            .11
        );
}


.bairro-priority-defender
.bairro-priority-dot {
    background: #42e982;
}


.bairro-priority-defender
.bairro-priority-list strong {
    color: #42e982;
}


/* Expandir */

.bairro-priority-expand {
    border-color:
        rgba(
            240,
            199,
            44,
            .12
        );
}


.bairro-priority-expand
.bairro-priority-dot {
    background: #f0c72c;
}


.bairro-priority-expand
.bairro-priority-list strong {
    color: #f0c72c;
}


/* Prioridade */

.bairro-priority-critical {
    border-color:
        rgba(
            255,
            133,
            62,
            .13
        );
}


.bairro-priority-critical
.bairro-priority-dot {
    background: #ff9b53;
}


.bairro-priority-critical
.bairro-priority-list strong {
    color: #ffae68;
}


/* Zeradas */

.bairro-priority-zero {
    border-color:
        rgba(
            255,
            82,
            104,
            .14
        );
}


.bairro-priority-zero
.bairro-priority-dot {
    background: #ff6577;
}


.bairro-priority-zero
.bairro-priority-list strong {
    color: #ff7586;
}


.bairro-priority-empty {
    justify-content: flex-start !important;

    color:
        rgba(
            117,
            225,
            157,
            .58
        ) !important;

    font-size: 8px;
}


@media (
    max-width: 1100px
) {

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


    .bairro-ranking-item {
        grid-template-columns:
            28px
            minmax(
                0,
                1fr
            )
            72px
            80px
            75px;
    }


    .bairro-ranking-item
    .bairro-ranking-metric:last-of-type {
        display: none;
    }

}


@media (
    max-width: 680px
) {

    .bairro-priority-grid {
        grid-template-columns:
            1fr;
    }


    .bairro-ranking-action {
        display: none;
    }

}




/* ============================================================
   ELEGIA_BAIRRO_VOLTAR_001
   ============================================================ */


.bairro-voltar {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    min-height: 32px;

    margin:
        0
        0
        14px;

    padding:
        0
        11px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 8px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );

    color:
        rgba(
            209,
            224,
            234,
            .78
        );

    font-size: 10px;

    font-weight: 650;

    line-height: 1;

    text-decoration: none !important;

    transition:
        color .14s ease,
        border-color .14s ease,
        background .14s ease;
}


.bairro-voltar:hover {
    border-color:
        rgba(
            70,
            232,
            126,
            .18
        );

    background:
        rgba(
            70,
            232,
            126,
            .035
        );

    color: #72ef98;

    text-decoration: none !important;
}


.bairro-voltar:visited,
.bairro-voltar:active,
.bairro-voltar:focus {
    text-decoration: none !important;
}




/* ============================================================
   ELEGIA_MAPEAMENTO_SELECAO_001B
   ============================================================ */


.mapeamento-politico-option {
    position: relative;
}


.mapeamento-politico-option.selected {
    border-color:
        rgba(
            74,
            235,
            125,
            .2
        );

    background:
        rgba(
            74,
            235,
            125,
            .045
        );
}


.mapeamento-politico-option.selected::after {
    content: "Selecionado";

    position: absolute;

    top: 7px;
    right: 8px;

    color:
        rgba(
            105,
            241,
            144,
            .68
        );

    font-size: 7px;

    font-weight: 850;

    letter-spacing: .04em;

    text-transform: uppercase;
}


/* selecionado único */

.mapeamento-context {
    position: relative;
}


.mapeamento-context-close,
.mapeamento-compare-card-close {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );

    color:
        rgba(
            205,
            220,
            230,
            .62
        );

    font-size: 17px;

    line-height: 1;

    text-decoration: none !important;

    transition:
        color .14s ease,
        border-color .14s ease,
        background .14s ease;
}


.mapeamento-context-close {
    position: absolute;

    top: 10px;
    right: 10px;
}


.mapeamento-context-close:hover,
.mapeamento-compare-card-close:hover {
    border-color:
        rgba(
            255,
            94,
            113,
            .2
        );

    background:
        rgba(
            255,
            94,
            113,
            .055
        );

    color: #ff8190;
}


.mapeamento-context
.mapeamento-election-list {
    padding-right: 35px;
}


/* comparativo */

.mapeamento-compare-card {
    position: relative;

    padding-right: 48px !important;
}


.mapeamento-compare-card-close {
    position: absolute;

    top: 10px;
    right: 10px;
}




/* ============================================================
   ELEGIA_PESQUISAS_001
   ============================================================ */


.pesquisas-heading {
    align-items: flex-end;
}


.pesquisas-heading p {
    max-width: 660px;

    margin:
        7px
        0
        0;

    color:
        rgba(
            171,
            194,
            208,
            .52
        );

    font-size: 10px;

    line-height: 1.55;
}


.pesquisas-kpis {
    margin-bottom: 14px;
}


.pesquisas-kpi-date {
    font-size: 19px !important;
}


.pesquisas-latest {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    margin-bottom: 14px;

    padding: 18px;
}


.pesquisas-latest h2 {
    margin:
        5px
        0
        0;

    color: #eef5fa;
}


.pesquisas-latest > div:first-child > span {
    display: block;

    margin-top: 5px;

    color:
        rgba(
            171,
            194,
            208,
            .48
        );

    font-size: 9px;
}


.pesquisas-latest-metrics {
    display: flex;

    align-items: center;

    gap: 28px;
}


.pesquisas-latest-metrics > div {
    min-width: 84px;
}


.pesquisas-latest-metrics span,
.pesquisas-latest-metrics strong {
    display: block;
}


.pesquisas-latest-metrics span {
    color:
        rgba(
            162,
            188,
            205,
            .48
        );

    font-size: 8px;

    font-weight: 800;
}


.pesquisas-latest-metrics strong {
    margin-top: 4px;

    color: #edf5fa;

    font-size: 14px;
}


.pesquisas-list-panel {
    padding: 18px;
}


.pesquisas-panel-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;
}


.pesquisas-panel-header h2 {
    margin:
        5px
        0
        0;
}


.pesquisas-empty {
    min-height: 280px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.pesquisas-empty strong {
    color: #edf5fa;

    font-size: 14px;
}


.pesquisas-empty p {
    max-width: 430px;

    margin:
        8px
        0
        16px;

    color:
        rgba(
            171,
            194,
            208,
            .48
        );

    font-size: 9px;

    line-height: 1.55;
}


.pesquisas-table-wrap {
    overflow-x: auto;
}


.pesquisa-row-link {
    color: #eaf4f8;

    font-weight: 800;

    text-decoration: none !important;
}


.pesquisa-row-link:hover {
    color: #70ef96;
}


.pesquisa-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 22px;

    padding:
        0
        8px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 850;
}


.pesquisa-status-publicada {
    background:
        rgba(
            57,
            228,
            122,
            .09
        );

    color: #54e989;
}


.pesquisa-status-rascunho {
    background:
        rgba(
            255,
            192,
            57,
            .09
        );

    color: #e8bf45;
}


.pesquisa-status-arquivada {
    background:
        rgba(
            154,
            171,
            184,
            .08
        );

    color:
        rgba(
            190,
            205,
            216,
            .62
        );
}


@media (
    max-width: 800px
) {

    .pesquisas-heading,
    .pesquisas-latest,
    .pesquisas-panel-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .pesquisas-latest-metrics {
        width: 100%;

        justify-content: space-between;
    }

}




/* ============================================================
   ELEGIA_PESQUISAS_UI_001
   ============================================================ */


.pesquisas-oficiais-heading p {
    max-width: 660px;

    margin:
        7px
        0
        0;

    color:
        rgba(
            171,
            194,
            208,
            .52
        );

    font-size: 10px;

    line-height: 1.55;
}


.pesquisas-filtros-panel {
    margin-bottom: 14px;

    padding: 14px;
}


.pesquisas-filtros {
    display: grid;

    grid-template-columns:
        120px
        minmax(180px, 1fr)
        minmax(220px, 1.3fr)
        minmax(180px, .8fr)
        auto;

    gap: 10px;

    align-items: end;
}


.pesquisas-filtros label {
    display: block;
}


.pesquisas-filtros label > span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(
            163,
            188,
            203,
            .46
        );

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.pesquisas-filtros select {
    width: 100%;

    height: 35px;

    padding:
        0
        10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 8px;

    background:
        rgba(
            8,
            20,
            29,
            .76
        );

    color: #dfeaf1;

    font-size: 9px;

    outline: none;
}


.pesquisas-filtros select:focus {
    border-color:
        rgba(
            79,
            231,
            127,
            .28
        );
}


.pesquisas-filtros-actions {
    display: flex;

    gap: 7px;
}


.pesquisas-oficiais-kpis {
    margin-bottom: 14px;
}


.pesquisas-valor-panel {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;

    padding: 16px 18px;
}


.pesquisas-valor-panel > div:first-child > strong {
    display: block;

    margin-top: 5px;

    color: #eff8fb;

    font-size: 24px;
}


.pesquisas-valor-panel > div:first-child > span {
    display: block;

    margin-top: 3px;

    color:
        rgba(
            169,
            194,
            208,
            .46
        );

    font-size: 8px;
}


.pesquisas-source-badge {
    min-width: 150px;

    padding-left: 20px;

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.pesquisas-source-badge span,
.pesquisas-source-badge strong,
.pesquisas-source-badge small {
    display: block;
}


.pesquisas-source-badge span {
    color:
        rgba(
            161,
            186,
            202,
            .42
        );

    font-size: 7px;

    font-weight: 850;
}


.pesquisas-source-badge strong {
    margin-top: 4px;

    color: #79ed9a;

    font-size: 11px;
}


.pesquisas-source-badge small {
    margin-top: 3px;

    color:
        rgba(
            171,
            194,
            208,
            .52
        );

    font-size: 8px;
}


.pesquisas-oficiais-list {
    padding: 18px;
}


.pesquisas-oficiais-list-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;
}


.pesquisas-oficiais-list-head h2 {
    margin:
        5px
        0
        0;
}


.pesquisas-oficiais-list-tools {
    display: flex;

    align-items: center;

    gap: 10px;
}


.pesquisas-oficiais-list-tools > span {
    color:
        rgba(
            166,
            191,
            205,
            .45
        );

    font-size: 8px;
}


.pesquisas-oficiais-table tbody tr {
    cursor: pointer;
}


.pesquisas-oficiais-table tbody tr:hover {
    background:
        rgba(
            67,
            222,
            116,
            .026
        );
}


.pesquisas-oficiais-table td strong,
.pesquisas-oficiais-table td small {
    display: block;
}


.pesquisas-oficiais-table td small {
    margin-top: 3px;

    color:
        rgba(
            162,
            187,
            202,
            .43
        );

    font-size: 8px;
}


.pesquisa-protocolo {
    color: #72ec97;

    font-weight: 800;

    text-decoration: none !important;
}


.pesquisa-protocolo:hover {
    color: #a5f6bd;
}


@media (
    max-width: 1050px
) {

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


    .pesquisas-filtros-actions {
        grid-column:
            1
            /
            -1;
    }

}


@media (
    max-width: 720px
) {

    .pesquisas-filtros {
        grid-template-columns:
            1fr;
    }


    .pesquisas-filtros-actions {
        grid-column: auto;
    }


    .pesquisas-valor-panel,
    .pesquisas-oficiais-list-head {
        align-items: flex-start;

        flex-direction: column;
    }


    .pesquisas-source-badge {
        width: 100%;

        padding:
            12px
            0
            0;

        border-left: 0;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                .055
            );
    }


    .pesquisas-oficiais-list-tools {
        width: 100%;

        align-items: stretch;

        flex-direction: column;
    }

}




/* ============================================================
   ELEGIA_PESQUISA_001
   ============================================================ */


.pesquisa-back-row {
    margin-bottom: 12px;
}


.pesquisa-back {
    display: inline-flex;

    width: auto;

    text-decoration: none !important;
}


.pesquisa-hero {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    margin-bottom: 14px;

    padding: 20px;
}


.pesquisa-hero h1 {
    margin:
        5px
        0
        0;

    color: #f0f7fa;

    font-size: 25px;
}


.pesquisa-hero-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 10px;
}


.pesquisa-hero-meta span {
    display: inline-flex;

    align-items: center;

    min-height: 24px;

    padding:
        0
        8px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .06
        );

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );

    color:
        rgba(
            188,
            207,
            218,
            .66
        );

    font-size: 8px;

    font-weight: 800;
}


.pesquisa-hero-instituto {
    display: block;

    margin-top: 11px;

    color: #72ed97;

    font-size: 12px;
}


.pesquisa-hero-date {
    min-width: 160px;

    padding-left: 20px;

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.pesquisa-hero-date span,
.pesquisa-hero-date strong,
.pesquisa-hero-date small {
    display: block;
}


.pesquisa-hero-date span {
    color:
        rgba(
            161,
            187,
            202,
            .45
        );

    font-size: 7px;

    font-weight: 850;
}


.pesquisa-hero-date strong {
    margin-top: 5px;

    color: #edf7fa;

    font-size: 20px;
}


.pesquisa-hero-date small {
    margin-top: 4px;

    color:
        rgba(
            169,
            194,
            208,
            .5
        );

    font-size: 8px;
}


.pesquisa-kpis {
    margin-bottom: 14px;
}


.pesquisa-kpi-money,
.pesquisa-kpi-period,
.pesquisa-kpi-type {
    font-size: 15px !important;
}


.pesquisa-ficha {
    margin-bottom: 14px;

    padding: 18px;
}


.pesquisa-section-head h2 {
    margin:
        5px
        0
        0;
}


.pesquisa-info-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap:
        16px
        20px;

    margin-top: 18px;
}


.pesquisa-info-grid > div {
    min-width: 0;
}


.pesquisa-info-grid span,
.pesquisa-info-grid strong {
    display: block;
}


.pesquisa-info-grid span {
    color:
        rgba(
            159,
            185,
            201,
            .43
        );

    font-size: 7px;

    font-weight: 850;

    letter-spacing: .035em;

    text-transform: uppercase;
}


.pesquisa-info-grid strong {
    margin-top: 5px;

    color: #e3edf2;

    font-size: 10px;

    line-height: 1.45;

    word-break: break-word;
}


.pesquisa-text-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 14px;

    margin-bottom: 14px;
}


.pesquisa-text-card {
    padding: 18px;
}


.pesquisa-text-card h2 {
    margin:
        5px
        0
        13px;

    color: #edf5f8;

    font-size: 14px;
}


.pesquisa-text-card p {
    margin: 0;

    color:
        rgba(
            190,
            207,
            218,
            .64
        );

    font-size: 9px;

    line-height: 1.72;
}


.pesquisa-territorio-card {
    border-color:
        rgba(
            75,
            231,
            123,
            .08
        );
}


.pesquisa-text-empty {
    margin-top: 14px;

    padding: 14px;

    border-radius: 8px;

    background:
        rgba(
            255,
            255,
            255,
            .018
        );

    color:
        rgba(
            170,
            194,
            207,
            .45
        );

    font-size: 9px;
}


.pesquisa-source {
    margin-bottom: 14px;

    padding: 18px;
}


.pesquisa-source h2 {
    margin:
        5px
        0
        0;
}


.pesquisa-source-grid {
    display: grid;

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

    gap: 16px;

    margin-top: 17px;
}


.pesquisa-source-grid span,
.pesquisa-source-grid strong {
    display: block;
}


.pesquisa-source-grid span {
    color:
        rgba(
            160,
            185,
            200,
            .42
        );

    font-size: 7px;

    font-weight: 850;

    text-transform: uppercase;
}


.pesquisa-source-grid strong {
    margin-top: 4px;

    color: #dfeaf0;

    font-size: 9px;

    word-break: break-word;
}


@media (
    max-width: 1050px
) {

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


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

}


@media (
    max-width: 720px
) {

    .pesquisa-hero {
        align-items: flex-start;

        flex-direction: column;
    }


    .pesquisa-hero-date {
        width: 100%;

        padding:
            12px
            0
            0;

        border-left: 0;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                .055
            );
    }


    .pesquisa-info-grid,
    .pesquisa-text-grid,
    .pesquisa-source-grid {
        grid-template-columns:
            1fr;
    }

}




/* ============================================================
   ELEGIA_PESQUISA_UI_002
   ============================================================ */


/* KPI com hierarquia vertical */

.pesquisa-kpis .kpi-card {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    min-height: 86px;
}


.pesquisa-kpis .kpi-card > span {
    display: block;

    margin-bottom: 6px;
}


.pesquisa-kpis .kpi-card > strong {
    display: block;

    margin: 0;

    color: #f0f7fa;

    font-size: 20px !important;

    line-height: 1.1;
}


.pesquisa-kpis .kpi-card > small {
    display: block;

    margin-top: 5px;

    color:
        rgba(
            169,
            194,
            208,
            .48
        );

    font-size: 8px;

    line-height: 1.3;
}


.pesquisa-kpi-money {
    font-size: 17px !important;
}


.pesquisa-kpi-period {
    font-size: 16px !important;
}


.pesquisa-kpi-type {
    max-width: 180px;

    font-size: 14px !important;

    line-height: 1.25 !important;
}


/* hero */

.pesquisa-hero {
    padding:
        20px
        22px;
}


.pesquisa-hero-main {
    min-width: 0;
}


.pesquisa-hero h1 {
    font-size: 27px;
}


.pesquisa-hero-instituto {
    max-width: 760px;

    line-height: 1.45;
}


.pesquisa-hero-meta span:first-child {
    color: #82f0a1;

    border-color:
        rgba(
            78,
            235,
            124,
            .12
        );

    background:
        rgba(
            78,
            235,
            124,
            .035
        );
}


/* ficha técnica */

.pesquisa-info-grid {
    row-gap: 20px;
}


.pesquisa-info-grid span {
    margin-bottom: 1px;
}


.pesquisa-info-grid strong {
    font-size: 10px;

    line-height: 1.5;
}


/* textos longos */

.pesquisa-text-card {
    min-height: 200px;

    padding:
        19px
        20px;
}


.pesquisa-text-card h2 {
    font-size: 15px;
}


.pesquisa-text-card p {
    color:
        rgba(
            200,
            214,
            223,
            .72
        );

    font-size: 9.5px;

    line-height: 1.8;
}


.pesquisa-territorio-card {
    background:
        linear-gradient(
            180deg,
            rgba(
                67,
                226,
                117,
                .018
            ),
            rgba(
                255,
                255,
                255,
                0
            )
        );
}


/* proveniência */

.pesquisa-source {
    padding:
        19px
        20px;
}


.pesquisa-source-grid {
    align-items: start;
}


.pesquisa-source-grid strong {
    font-size: 9px;

    line-height: 1.45;
}


.pesquisa-source-grid > div:first-child strong {
    color: #76ed98;
}


/* botão voltar um pouco mais discreto */

.pesquisa-back {
    min-height: 31px;

    padding:
        0
        10px;

    font-size: 9px;
}


/* mais respiro geral */

.pesquisa-page {
    padding-bottom: 30px;
}


@media (
    max-width: 900px
) {

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

}


@media (
    max-width: 620px
) {

    .pesquisa-kpis {
        grid-template-columns:
            1fr;
    }


    .pesquisa-kpis .kpi-card {
        min-height: 78px;
    }

}




/* ============================================================
   ELEGIA_ALERTAS_001
   ============================================================ */


.alertas-heading p {
    max-width: 670px;

    margin:
        7px
        0
        0;

    color:
        rgba(
            171,
            194,
            208,
            .52
        );

    font-size: 10px;

    line-height: 1.55;
}


.alerta-feedback {
    margin-bottom: 14px;

    padding: 11px 14px;

    font-size: 9px;
}


.alerta-feedback.sucesso {
    color: #75ed98;
}


.alerta-feedback.erro {
    color: #ff8997;
}


.alertas-kpis {
    margin-bottom: 14px;
}


.alerta-novo-panel,
.alerta-monitoramentos-panel,
.alerta-feed-panel {
    margin-bottom: 14px;

    padding: 18px;
}


.alerta-panel-title {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}


.alerta-panel-title h2 {
    margin:
        5px
        0
        0;
}


.alerta-panel-title > span {
    color:
        rgba(
            165,
            189,
            204,
            .44
        );

    font-size: 8px;
}


.alerta-novo-form {
    display: grid;

    grid-template-columns:
        220px
        minmax(
            260px,
            1fr
        )
        130px
        auto;

    gap: 10px;

    align-items: end;
}


.alerta-novo-form label > span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(
            163,
            188,
            203,
            .46
        );

    font-size: 8px;

    font-weight: 850;

    text-transform: uppercase;
}


.alerta-novo-form input,
.alerta-novo-form select {
    width: 100%;

    height: 36px;

    padding:
        0
        10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 8px;

    background:
        rgba(
            8,
            20,
            29,
            .76
        );

    color: #dfeaf1;

    font-size: 9px;

    outline: none;
}


.alerta-novo-form input:focus,
.alerta-novo-form select:focus {
    border-color:
        rgba(
            79,
            231,
            127,
            .28
        );
}


.alerta-monitoramentos-list {
    display: grid;

    gap: 8px;
}


.alerta-monitoramento-card {
    display: grid;

    grid-template-columns:
        minmax(
            0,
            1fr
        )
        auto
        auto;

    gap: 20px;

    align-items: center;

    padding:
        12px
        13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            .012
        );
}


.alerta-monitoramento-card.pausado {
    opacity: .58;
}


.alerta-monitoramento-main {
    display: flex;

    gap: 10px;

    align-items: center;

    min-width: 0;
}


.alerta-status-dot {
    flex:
        0
        0
        8px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #4fe77f;

    box-shadow:
        0
        0
        12px
        rgba(
            79,
            231,
            127,
            .2
        );
}


.pausado
.alerta-status-dot {
    background: #73838d;

    box-shadow: none;
}


.alerta-monitoramento-main strong,
.alerta-monitoramento-main span,
.alerta-monitoramento-main small {
    display: block;
}


.alerta-monitoramento-main strong {
    color: #edf5f8;

    font-size: 11px;
}


.alerta-monitoramento-main span {
    margin-top: 3px;

    color: #73eb96;

    font-size: 9px;
}


.alerta-monitoramento-main small {
    margin-top: 5px;

    color:
        rgba(
            167,
            191,
            205,
            .43
        );

    font-size: 7.5px;
}


.alerta-monitoramento-metricas {
    display: flex;

    gap: 20px;
}


.alerta-monitoramento-metricas > div {
    min-width: 55px;
}


.alerta-monitoramento-metricas span,
.alerta-monitoramento-metricas strong {
    display: block;
}


.alerta-monitoramento-metricas span {
    color:
        rgba(
            161,
            185,
            200,
            .4
        );

    font-size: 7px;

    font-weight: 850;
}


.alerta-monitoramento-metricas strong {
    margin-top: 4px;

    color: #edf6f9;

    font-size: 15px;
}


.alerta-monitoramento-actions {
    display: flex;

    gap: 6px;
}


.alerta-monitoramento-actions form {
    margin: 0;
}


.alerta-delete {
    color: #e48690 !important;
}


.alertas-empty {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.alertas-empty strong {
    color: #eaf3f7;

    font-size: 13px;
}


.alertas-empty p {
    max-width: 400px;

    margin:
        7px
        auto
        0;

    color:
        rgba(
            169,
            193,
            207,
            .45
        );

    font-size: 9px;

    line-height: 1.55;
}


.alerta-feed-list {
    display: grid;

    gap: 8px;
}


.alerta-feed-item {
    padding:
        12px
        13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .05
        );

    border-radius: 9px;
}


.alerta-feed-source {
    margin-bottom: 4px;

    color: #72ec96;

    font-size: 7px;

    font-weight: 850;

    text-transform: uppercase;
}


.alerta-feed-item a {
    color: #edf5f8;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;
}


.alerta-feed-item a:hover {
    color: #76ed99;
}


.alerta-feed-item p {
    margin:
        6px
        0;

    color:
        rgba(
            190,
            207,
            217,
            .57
        );

    font-size: 9px;

    line-height: 1.55;
}


.alerta-feed-item small {
    color:
        rgba(
            162,
            187,
            202,
            .42
        );

    font-size: 7.5px;
}


@media (
    max-width: 980px
) {

    .alerta-novo-form {
        grid-template-columns:
            1fr
            1fr;
    }


    .alerta-monitoramento-card {
        grid-template-columns:
            1fr;
    }


    .alerta-monitoramento-actions {
        justify-content: flex-start;
    }

}


@media (
    max-width: 620px
) {

    .alerta-novo-form {
        grid-template-columns:
            1fr;
    }


    .alerta-panel-title {
        align-items: flex-start;

        flex-direction: column;
    }

}


