@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.wuc5ioiakb.bundle.scp.css';

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-z8q719pxot],
.components-reconnect-repeated-attempt-visible[b-z8q719pxot],
.components-reconnect-failed-visible[b-z8q719pxot],
.components-pause-visible[b-z8q719pxot],
.components-resume-failed-visible[b-z8q719pxot],
.components-rejoining-animation[b-z8q719pxot] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-retrying[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-failed[b-z8q719pxot],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-z8q719pxot] {
    display: block;
}


#components-reconnect-modal[b-z8q719pxot] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-z8q719pxot 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-z8q719pxot 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-z8q719pxot 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-z8q719pxot]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-z8q719pxot 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-z8q719pxot {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-z8q719pxot {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-z8q719pxot {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-z8q719pxot] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-z8q719pxot] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-z8q719pxot] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-z8q719pxot] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-z8q719pxot] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-z8q719pxot] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-z8q719pxot] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-z8q719pxot 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-z8q719pxot] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-z8q719pxot {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Commit/Calendar.razor.rz.scp.css */
/* 12 — Calendário de Commits: grade 7 colunas com células quadradas (mínimo 52 px de altura). */

.cal-grid[b-g9kieu62v4] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.cal-wd[b-g9kieu62v4] {
    text-align: center;
    font-size: 12px;
    color: var(--fos-fg-5);
    padding-bottom: 4px;
}

.cal-day[b-g9kieu62v4] {
    aspect-ratio: 1;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: var(--fos-panel-hover);
    color: var(--fos-fg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, border-color .15s;
    box-sizing: border-box;
}

.cal-day:hover[b-g9kieu62v4] {
    background: var(--fos-hover);
}

.cal-day__n[b-g9kieu62v4] {
    font-size: 13px;
    line-height: 1;
}

.cal-day .msr[b-g9kieu62v4] {
    font-size: 15px;
}

.cal-day__dot[b-g9kieu62v4] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fos-fg-4);
}

.cal-day--blank[b-g9kieu62v4],
.cal-day--blank:hover[b-g9kieu62v4] {
    background: transparent;
    cursor: default;
}

.cal-day.is-empty[b-g9kieu62v4] {
    color: var(--fos-fg-5);
}

.cal-day.is-honored[b-g9kieu62v4] {
    background: var(--fos-positive-soft);
}

.cal-day.is-honored .msr[b-g9kieu62v4] {
    color: var(--fos-positive);
}

.cal-day.is-broken[b-g9kieu62v4] {
    background: var(--fos-warning-soft);
}

.cal-day.is-broken .msr[b-g9kieu62v4],
.cal-day.is-paid .msr[b-g9kieu62v4] {
    color: var(--fos-warning);
}

.cal-day.is-paid[b-g9kieu62v4],
.cal-day.is-pending[b-g9kieu62v4] {
    background: var(--fos-inner);
}

.cal-day.is-pending .msr[b-g9kieu62v4] {
    color: var(--fos-accent);
}

.cal-day.is-selected[b-g9kieu62v4] {
    background: var(--fos-hover);
    border-color: var(--fos-dash);
}

.cal-day.is-today[b-g9kieu62v4] {
    border-color: var(--fos-accent);
}

.cal-day.is-today .cal-day__n[b-g9kieu62v4] {
    font-weight: 500;
}

.cal-task[b-g9kieu62v4] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 6px 0;
    border-bottom: 1px solid var(--fos-line-2);
}

.cal-task__text[b-g9kieu62v4] {
    flex: 1;
    min-width: 0;
    font-size: 13.5px;
    text-wrap: pretty;
    overflow-wrap: anywhere;
}

.cal-task__text.is-done[b-g9kieu62v4] {
    color: var(--fos-fg-4);
    text-decoration: line-through;
}

@media (max-width: 759.98px) {
    .cal-grid[b-g9kieu62v4] {
        gap: 5px;
    }

    .cal-day[b-g9kieu62v4] {
        border-radius: 12px;
    }
}
/* /Components/Shared/NavLoadingOverlay.razor.rz.scp.css */
/* Barra fina de progresso durante a navegação. */

.nav-loading-overlay[b-9pzsjvsg3l] { position: fixed; top: 0; left: 0; right: 0; height: 3px; overflow: hidden; opacity: 0; pointer-events: none; transition: opacity .12s ease; z-index: 9999; }
.nav-loading-overlay.visible[b-9pzsjvsg3l] { opacity: 1; }
.nav-spinner[b-9pzsjvsg3l] { width: 40%; height: 100%; background: var(--fos-accent-gradient-h); border-radius: 999px; animation: navbar-slide-b-9pzsjvsg3l 1s ease-in-out infinite; }
@keyframes navbar-slide-b-9pzsjvsg3l { from { transform: translateX(-100%); } to { transform: translateX(260%); } }
/* /Components/Tools/Canvas/Editor/Editor.razor.rz.scp.css */
/* Editor do Canvas (tela 55) — D13: o quadro tem sistema de coordenadas próprio,
   então o pan, o arraste e o zoom vivem no <canvas> e a moldura fica aqui.
   Só tokens do design (fos-design.css). */

.canvas-editor[b-uf1gwfrtug] {
    position: relative;
}

/* ----- Barra de ferramentas vertical (cápsula #161616) ----- */

.ce-work[b-uf1gwfrtug] {
    display: flex;
    align-items: stretch;
    gap: 14px;
    min-width: 0;
}

.ce-rail[b-uf1gwfrtug] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: none;
    align-self: flex-start;
    max-height: 100%;
    padding: 8px;
    border-radius: var(--fos-r-pill);
    background: var(--fos-panel);
    overflow: auto;
    scrollbar-width: none;
    box-sizing: border-box;
}

.ce-rail[b-uf1gwfrtug]::-webkit-scrollbar {
    display: none;
}

.ce-rail__sep[b-uf1gwfrtug] {
    height: 1px;
    flex: none;
    margin: 2px 10px;
    background: var(--fos-line);
}

.ce-tool[b-uf1gwfrtug] {
    width: 46px;
    height: 46px;
    flex: none;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--fos-fg-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.ce-tool:hover[b-uf1gwfrtug] {
    background: var(--fos-hover);
    color: var(--fos-fg);
}

.ce-tool .msr[b-uf1gwfrtug] {
    font-size: 21px;
}

.ce-tool.is-on[b-uf1gwfrtug] {
    background: var(--fos-accent);
    color: var(--fos-on-accent);
}

/* ----- Quadro ----- */

.ce-board[b-uf1gwfrtug] {
    position: relative;
    flex: 1;
    min-width: 0;
    height: clamp(420px, calc(100vh - 300px), 760px);
    border: 1px solid #1E1E1E;
    border-radius: var(--fos-r-panel);
    background: #141414;
    overflow: hidden;
    touch-action: none;
    box-sizing: border-box;
}

.ce-board .canvas-container[b-uf1gwfrtug] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ce-board canvas[b-uf1gwfrtug] {
    display: block;
    width: 100%;
    height: 100%;
}

.ce-hint[b-uf1gwfrtug] {
    position: absolute;
    left: 18px;
    top: 14px;
    margin: 0;
    max-width: calc(100% - 260px);
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--fos-fg-disabled);
    pointer-events: none;
    text-wrap: pretty;
}

/* ----- Clusters flutuantes (histórico, estado, zoom) ----- */

.ce-cluster[b-uf1gwfrtug] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: var(--fos-r-pill);
    background: var(--fos-panel);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.ce-cluster button[b-uf1gwfrtug] {
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: none;
    color: var(--fos-fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-cluster button:hover[b-uf1gwfrtug] {
    background: var(--fos-hover);
}

.ce-cluster button .msr[b-uf1gwfrtug] {
    font-size: 19px;
}

.ce-dock[b-uf1gwfrtug] {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: calc(100% - 200px);
}

.ce-dock .fos-badge[b-uf1gwfrtug] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.ce-zoom[b-uf1gwfrtug] {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.ce-zoom__value[b-uf1gwfrtug] {
    min-width: 56px;
    width: auto;
    height: 38px;
    border-radius: var(--fos-r-pill);
    font-size: 13px;
}

.ce-spin[b-uf1gwfrtug] {
    animation: fos-spin 1s linear infinite;
}

/* ----- Propriedades da seleção ----- */

.ce-props[b-uf1gwfrtug] {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 216px;
    padding: 14px 16px 16px;
    border-radius: 22px;
    background: var(--fos-panel);
    box-shadow: var(--fos-shadow-pop);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

.ce-props__head[b-uf1gwfrtug] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ce-props__title[b-uf1gwfrtug] {
    font-size: 14px;
    font-weight: 500;
}

.ce-props__label[b-uf1gwfrtug] {
    display: block;
    margin-bottom: 8px;
    font-size: 12.5px;
    color: var(--fos-fg-4);
}

.ce-swatches[b-uf1gwfrtug] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ce-color[b-uf1gwfrtug] {
    width: 30px;
    height: 30px;
    padding: 2px;
    border: 1px solid var(--fos-line);
    border-radius: 9px;
    background: var(--fos-inner);
    cursor: pointer;
    flex: none;
}

.ce-swatch[b-uf1gwfrtug] {
    width: 26px;
    height: 26px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-swatch:hover[b-uf1gwfrtug] {
    border-color: var(--fos-line-3);
}

.ce-swatch.is-on[b-uf1gwfrtug] {
    border-color: var(--fos-accent);
}

.ce-swatch--none[b-uf1gwfrtug] {
    background: var(--fos-inner);
    color: var(--fos-fg-4);
    border-color: var(--fos-line);
}

.ce-swatch--none .msr[b-uf1gwfrtug] {
    font-size: 15px;
}

.ce-strokes[b-uf1gwfrtug] {
    display: flex;
    gap: 6px;
}

.ce-stroke[b-uf1gwfrtug] {
    flex: 1;
    height: 34px;
    padding: 0;
    border: 1.5px solid transparent;
    border-radius: 12px;
    background: var(--fos-inner);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-stroke:hover[b-uf1gwfrtug] {
    background: var(--fos-hover);
}

.ce-stroke.is-on[b-uf1gwfrtug] {
    border-color: var(--fos-accent);
    background: var(--fos-accent-soft-2);
}

.ce-stroke__line[b-uf1gwfrtug] {
    width: 20px;
    border-radius: 2px;
    background: var(--fos-fg);
    display: block;
}

/* ----- Menu de contexto ----- */

.ce-menu[b-uf1gwfrtug] {
    position: fixed;
    z-index: 1200;
    min-width: 252px;
    max-height: calc(100vh - 24px);
    overflow: auto;
}

.ce-menu__sep[b-uf1gwfrtug] {
    display: block;
    height: 1px;
    margin: 6px 4px;
    background: var(--fos-line);
}

/* ----- Tela cheia e modo zen ----- */

.ce-fs-hint[b-uf1gwfrtug] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 12.5px;
    color: var(--fos-fg-4);
}

.ce-fs-hint .msr[b-uf1gwfrtug] {
    font-size: 17px;
}

.canvas-editor.fullscreen-mode[b-uf1gwfrtug] {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--fos-bg);
    box-sizing: border-box;
}

.canvas-editor.fullscreen-mode .ce-work[b-uf1gwfrtug] {
    flex: 1;
    min-height: 0;
}

.canvas-editor.fullscreen-mode .ce-board[b-uf1gwfrtug] {
    height: 100%;
}

.canvas-editor.fullscreen-mode[b-uf1gwfrtug]  .fos-page-head,
.canvas-editor.zen-mode[b-uf1gwfrtug]  .fos-page-head {
    display: none;
}

.canvas-editor.zen-mode .ce-rail[b-uf1gwfrtug],
.canvas-editor.zen-mode .ce-hint[b-uf1gwfrtug],
.canvas-editor.zen-mode .ce-dock[b-uf1gwfrtug],
.canvas-editor.zen-mode .ce-zoom[b-uf1gwfrtug],
.canvas-editor.zen-mode .ce-props[b-uf1gwfrtug],
.canvas-editor.zen-mode .ce-fs-hint[b-uf1gwfrtug] {
    display: none;
}

/* ----- Responsivo: tablet e mobile ----- */

@media (max-width: 1179.98px) {
    .ce-board[b-uf1gwfrtug] {
        height: clamp(400px, calc(100vh - 280px), 620px);
    }

    .ce-props[b-uf1gwfrtug] {
        width: 198px;
    }

    .ce-hint[b-uf1gwfrtug] {
        max-width: calc(100% - 240px);
    }
}

@media (max-width: 759.98px) {
    .ce-work[b-uf1gwfrtug] {
        flex-direction: column;
        gap: 10px;
    }

    .ce-rail[b-uf1gwfrtug] {
        flex-direction: row;
        align-self: stretch;
        max-width: 100%;
        overflow-x: auto;
    }

    .ce-rail__sep[b-uf1gwfrtug] {
        width: 1px;
        height: auto;
        margin: 6px 4px;
    }

    .ce-tool[b-uf1gwfrtug] {
        width: 44px;
        height: 44px;
    }

    .ce-board[b-uf1gwfrtug] {
        height: clamp(340px, calc(100vh - 320px), 560px);
    }

    .ce-hint[b-uf1gwfrtug] {
        display: none;
    }

    .ce-dock[b-uf1gwfrtug] {
        left: 10px;
        bottom: 62px;
        max-width: calc(100% - 20px);
    }

    .ce-zoom[b-uf1gwfrtug] {
        right: 10px;
        bottom: 10px;
    }

    .ce-props[b-uf1gwfrtug] {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 110px;
        width: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 12px 18px;
    }

    .ce-props__head[b-uf1gwfrtug] {
        flex: 1 1 100%;
    }

    .ce-menu[b-uf1gwfrtug] {
        left: 12px !important;
        right: 12px;
        min-width: 0;
        max-height: 60vh;
    }
}
/* /Components/Tools/Canvas/Editor/LayersPanel.razor.rz.scp.css */
/* Painel de camadas — desliza pela esquerda do quadro; no mobile ocupa a tela. */

.cl-panel[b-ry4uo3iqor] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 30;
    width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--fos-panel);
    border-radius: var(--fos-r-panel) 0 0 var(--fos-r-panel);
    box-shadow: 24px 0 64px rgba(0, 0, 0, .6);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.cl-panel.is-open[b-ry4uo3iqor] {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.cl-head[b-ry4uo3iqor] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px 14px 20px;
    border-bottom: 1px solid var(--fos-line-2);
}

.cl-title[b-ry4uo3iqor] {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.cl-body[b-ry4uo3iqor] {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.cl-list[b-ry4uo3iqor] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cl-item[b-ry4uo3iqor] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 10px;
    border: 1.5px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    box-sizing: border-box;
}

.cl-item:hover[b-ry4uo3iqor] {
    background: var(--fos-panel-hover);
}

.cl-item.is-selected[b-ry4uo3iqor] {
    border-color: var(--fos-accent-border);
    background: var(--fos-inner-2);
}

.cl-item__info[b-ry4uo3iqor] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cl-item__type[b-ry4uo3iqor] {
    font-size: 13.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-item__actions[b-ry4uo3iqor] {
    display: flex;
    gap: 2px;
    flex: none;
    opacity: 0;
    transition: opacity .15s;
}

.cl-item:hover .cl-item__actions[b-ry4uo3iqor],
.cl-item:focus-within .cl-item__actions[b-ry4uo3iqor],
.cl-item.is-selected .cl-item__actions[b-ry4uo3iqor] {
    opacity: 1;
}

.cl-foot[b-ry4uo3iqor] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px 10px 20px;
    border-top: 1px solid var(--fos-line-2);
}

.cl-foot__actions[b-ry4uo3iqor] {
    display: flex;
    gap: 2px;
}

@media (max-width: 759.98px) {
    .cl-panel[b-ry4uo3iqor] {
        width: 100%;
        border-radius: 0;
    }

    .cl-item__actions[b-ry4uo3iqor] {
        opacity: 1;
    }
}
/* /Components/Tools/Canvas/Editor/MiniMap.razor.rz.scp.css */
/* Mapa do quadro — cartão flutuante no canto inferior direito do editor. */

.cm-map[b-p4xxjf8ja8] {
    position: absolute;
    right: 16px;
    bottom: 68px;
    z-index: 30;
    width: 200px;
    border-radius: 18px;
    background: var(--fos-panel);
    box-shadow: var(--fos-shadow-pop);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
    box-sizing: border-box;
}

.cm-map.is-open[b-p4xxjf8ja8] {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.cm-head[b-p4xxjf8ja8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px 6px 14px;
    border-bottom: 1px solid var(--fos-line-2);
}

.cm-title[b-p4xxjf8ja8] {
    font-size: 12.5px;
    color: var(--fos-fg-2);
}

.cm-canvas[b-p4xxjf8ja8] {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--fos-inner);
}

.cm-canvas canvas[b-p4xxjf8ja8] {
    display: block;
    width: 100%;
    height: 100%;
}

.cm-viewport[b-p4xxjf8ja8] {
    position: absolute;
    border: 1.5px solid var(--fos-accent);
    border-radius: 6px;
    background: var(--fos-accent-soft-2);
    cursor: move;
}

.cm-viewport:hover[b-p4xxjf8ja8] {
    background: var(--fos-accent-soft);
}

@media (max-width: 759.98px) {
    .cm-map[b-p4xxjf8ja8] {
        right: 10px;
        bottom: 112px;
        width: 168px;
    }
}
/* /Components/Tools/Canvas/Editor/PropertiesPanel.razor.rz.scp.css */
/* Propriedades do elemento — desliza pela direita do quadro; no mobile ocupa a tela. */

.cp-panel[b-e0qnktiw9s] {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 30;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--fos-panel);
    border-radius: 0 var(--fos-r-panel) var(--fos-r-panel) 0;
    box-shadow: var(--fos-shadow-drawer);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.cp-panel.is-open[b-e0qnktiw9s] {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.cp-head[b-e0qnktiw9s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px 14px 20px;
    border-bottom: 1px solid var(--fos-line-2);
}

.cp-title[b-e0qnktiw9s] {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.cp-body[b-e0qnktiw9s] {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 20px;
}

.cp-section[b-e0qnktiw9s] {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--fos-line-2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-section:last-child[b-e0qnktiw9s] {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.cp-section__title[b-e0qnktiw9s] {
    margin: 0;
    font-size: 12.5px;
    font-weight: 400;
    color: var(--fos-fg-4);
}

.cp-field[b-e0qnktiw9s] {
    display: block;
}

.cp-color-row[b-e0qnktiw9s] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cp-color[b-e0qnktiw9s] {
    width: 40px;
    height: 40px;
    padding: 2px;
    border: 1px solid var(--fos-line);
    border-radius: 12px;
    background: var(--fos-inner);
    cursor: pointer;
    flex: none;
}

.cp-hex[b-e0qnktiw9s] {
    flex: 1;
    min-width: 0;
}

.cp-chips[b-e0qnktiw9s] {
    display: flex;
    gap: 6px;
    margin-top: 7px;
}

.cp-chip[b-e0qnktiw9s] {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1.5px solid transparent;
    border-radius: 12px;
    background: var(--fos-inner);
    color: var(--fos-fg-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cp-chip--grow[b-e0qnktiw9s] {
    flex: 1;
}

.cp-chip:hover[b-e0qnktiw9s] {
    background: var(--fos-hover);
}

.cp-chip.is-on[b-e0qnktiw9s] {
    border-color: var(--fos-accent);
    background: var(--fos-accent-soft-2);
    color: var(--fos-accent);
}

.cp-chip .msr[b-e0qnktiw9s] {
    font-size: 18px;
}

.cp-fill[b-e0qnktiw9s] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: block;
}

.cp-fill--solid[b-e0qnktiw9s] {
    background: currentColor;
}

.cp-fill--hachure[b-e0qnktiw9s] {
    background: repeating-linear-gradient(45deg, currentColor, currentColor 2px, transparent 2px, transparent 4px);
}

.cp-fill--cross[b-e0qnktiw9s] {
    background:
        repeating-linear-gradient(45deg, currentColor, currentColor 1px, transparent 1px, transparent 3px),
        repeating-linear-gradient(-45deg, currentColor, currentColor 1px, transparent 1px, transparent 3px);
}

.cp-actions[b-e0qnktiw9s] {
    display: flex;
    gap: 8px;
}

@media (max-width: 759.98px) {
    .cp-panel[b-e0qnktiw9s] {
        width: 100%;
        border-radius: 0;
    }
}
/* /Components/Tools/Canvas/Editor/Toolbar.razor.rz.scp.css */
/* Barra de ferramentas do Canvas — cápsula do design, ativo lime (seleção). */

.ct-bar[b-f0cx6dc42r] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 12px;
    border-radius: var(--fos-r-pill);
    background: var(--fos-panel);
    box-sizing: border-box;
}

.ct-group[b-f0cx6dc42r] {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.ct-group--stack[b-f0cx6dc42r] {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.ct-row[b-f0cx6dc42r] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ct-sep[b-f0cx6dc42r] {
    width: 1px;
    height: 28px;
    background: var(--fos-line);
    flex: none;
}

.ct-label[b-f0cx6dc42r] {
    font-size: 11.5px;
    color: var(--fos-fg-5);
}

.ct-tool[b-f0cx6dc42r] {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--fos-fg-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: background .15s, color .15s;
}

.ct-tool:hover[b-f0cx6dc42r] {
    background: var(--fos-hover);
    color: var(--fos-fg);
}

.ct-tool .msr[b-f0cx6dc42r] {
    font-size: 20px;
}

.ct-tool.is-on[b-f0cx6dc42r] {
    background: var(--fos-accent);
    color: var(--fos-on-accent);
}

.ct-color[b-f0cx6dc42r] {
    width: 30px;
    height: 30px;
    padding: 2px;
    border: 1px solid var(--fos-line);
    border-radius: 9px;
    background: var(--fos-inner);
    cursor: pointer;
    flex: none;
}

.ct-chip[b-f0cx6dc42r] {
    min-width: 32px;
    height: 30px;
    padding: 0 6px;
    border: 1.5px solid transparent;
    border-radius: 10px;
    background: var(--fos-inner);
    color: var(--fos-fg-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.ct-chip:hover[b-f0cx6dc42r] {
    background: var(--fos-hover);
}

.ct-chip.is-on[b-f0cx6dc42r] {
    border-color: var(--fos-accent);
    background: var(--fos-accent-soft-2);
    color: var(--fos-accent);
}

.ct-chip .msr[b-f0cx6dc42r] {
    font-size: 16px;
}

.ct-stroke[b-f0cx6dc42r] {
    width: 18px;
    border-radius: 2px;
    background: currentColor;
    display: block;
}

.ct-zoom[b-f0cx6dc42r] {
    min-width: 48px;
    text-align: center;
    font-size: 13px;
    color: var(--fos-fg);
}

@media (max-width: 1179.98px) {
    .ct-bar[b-f0cx6dc42r] {
        border-radius: var(--fos-r-inner);
        justify-content: center;
    }
}

@media (max-width: 759.98px) {
    .ct-group--stack[b-f0cx6dc42r],
    .ct-sep[b-f0cx6dc42r] {
        display: none;
    }

    .ct-tool[b-f0cx6dc42r] {
        width: 44px;
        height: 44px;
    }
}
/* /Components/Tools/Canvas/Preferencias/Preferencias.razor.rz.scp.css */
/* Seletor de cor no padrão dos campos do design (altura 50, raio 16, fundo #212121). */
.canvas-color[b-3vb6xyb6bx] {
    width: 100%;
    height: 50px;
    padding: 6px;
    border: 1px solid var(--fos-line-2);
    border-radius: 16px;
    background: var(--fos-inner);
    cursor: pointer;
    box-sizing: border-box;
}

.canvas-color:focus-visible[b-3vb6xyb6bx] {
    outline: 2px solid var(--fos-accent);
    outline-offset: 2px;
}

.canvas-color[b-3vb6xyb6bx]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.canvas-color[b-3vb6xyb6bx]::-webkit-color-swatch {
    border: none;
    border-radius: 10px;
}

.canvas-color[b-3vb6xyb6bx]::-moz-color-swatch {
    border: none;
    border-radius: 10px;
}
/* /Components/Tools/PortfolioStrategy/Cadastros/Servicos.razor.rz.scp.css */
/* 51 — Prévia da matriz dentro do drawer de cadastro do serviço. */

.pf-preview[b-rq6hdvkh78] {
    position: relative;
    margin-top: 14px;
    aspect-ratio: 1;
    background: var(--fos-panel, #161616);
    border-radius: 18px;
    overflow: hidden;
}

.pf-preview__line[b-rq6hdvkh78] {
    position: absolute;
    pointer-events: none;
}

.pf-preview__line--v[b-rq6hdvkh78] {
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 1px dashed var(--fos-line-3, #2A2A2A);
}

.pf-preview__line--h[b-rq6hdvkh78] {
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dashed var(--fos-line-3, #2A2A2A);
}

.pf-preview__quad[b-rq6hdvkh78] {
    position: absolute;
    padding: 10px 12px;
    font-size: 11.5px;
    max-width: 50%;
    opacity: .75;
    pointer-events: none;
}

.pf-preview__quad--tl[b-rq6hdvkh78] { top: 0; left: 0; color: #8CD9A0; }
.pf-preview__quad--tr[b-rq6hdvkh78] { top: 0; right: 0; text-align: right; color: #D7FF67; }
.pf-preview__quad--bl[b-rq6hdvkh78] { bottom: 0; left: 0; color: #F2C14E; }
.pf-preview__quad--br[b-rq6hdvkh78] { bottom: 0; right: 0; text-align: right; color: #B8A6FF; }

.pf-preview__point[b-rq6hdvkh78] {
    position: absolute;
    transform: translate(-50%, 50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    background: var(--fos-inner, #212121);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 500;
    transition: left .2s, bottom .2s, color .2s;
    z-index: 2;
}

.pf-preview__point.is-star[b-rq6hdvkh78] { color: #D7FF67; }
.pf-preview__point.is-motor[b-rq6hdvkh78] { color: #B8A6FF; }
.pf-preview__point.is-cashcow[b-rq6hdvkh78] { color: #8CD9A0; }
.pf-preview__point.is-explorer[b-rq6hdvkh78] { color: #F2C14E; }

.fos-sticky-top[b-rq6hdvkh78] {
    position: sticky;
    top: 0;
}

@media (max-width: 1179.98px) {
    .fos-sticky-top[b-rq6hdvkh78] {
        position: static;
    }
}
/* /Components/Tools/PortfolioStrategy/Dashboard/Dashboard.razor.rz.scp.css */
/* Matriz 2×2 do Portfolio (50) — quadrantes, eixos e bolhas por serviço. */

.pf-matrix[b-b4tc483280] {
    position: relative;
    margin-top: 20px;
    height: 420px;
    background: var(--fos-panel-hover, #1B1B1B);
    border-radius: 22px;
    overflow: hidden;
}

@media (max-width: 759.98px) {
    .pf-matrix[b-b4tc483280] {
        height: 300px;
    }
}

.pf-matrix__line[b-b4tc483280] {
    position: absolute;
    pointer-events: none;
}

.pf-matrix__line--v[b-b4tc483280] {
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 1px dashed var(--fos-line-3, #2A2A2A);
}

.pf-matrix__line--h[b-b4tc483280] {
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dashed var(--fos-line-3, #2A2A2A);
}

.pf-matrix__quad[b-b4tc483280] {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px;
    font-size: 12px;
    opacity: .75;
    pointer-events: none;
    max-width: 50%;
}

.pf-matrix__quad em[b-b4tc483280] {
    font-style: normal;
    font-size: 11.5px;
    color: var(--fos-fg-5, #6B6B68);
}

.pf-matrix__quad .msr[b-b4tc483280] {
    font-size: 15px;
}

.pf-matrix__quad--tl[b-b4tc483280] { top: 0; left: 0; color: #8CD9A0; }
.pf-matrix__quad--tr[b-b4tc483280] { top: 0; right: 0; align-items: flex-end; text-align: right; color: #D7FF67; }
.pf-matrix__quad--bl[b-b4tc483280] { bottom: 0; left: 0; justify-content: flex-end; color: #F2C14E; }
.pf-matrix__quad--br[b-b4tc483280] { bottom: 0; right: 0; align-items: flex-end; text-align: right; justify-content: flex-end; color: #B8A6FF; }

.pf-bubble[b-b4tc483280] {
    position: absolute;
    transform: translate(-50%, 50%);
    border-radius: 50%;
    border: 1.5px solid currentColor;
    background: rgba(215, 255, 103, .10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 500;
    padding: 0;
    text-align: center;
    line-height: 1.1;
    transition: transform .15s;
    z-index: 2;
}

.pf-bubble:hover[b-b4tc483280],
.pf-bubble:focus-visible[b-b4tc483280] {
    transform: translate(-50%, 50%) scale(1.08);
    z-index: 3;
}
