/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3zz147vtts],
.components-reconnect-repeated-attempt-visible[b-3zz147vtts],
.components-reconnect-failed-visible[b-3zz147vtts],
.components-pause-visible[b-3zz147vtts],
.components-resume-failed-visible[b-3zz147vtts],
.components-rejoining-animation[b-3zz147vtts] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-retrying[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-failed[b-3zz147vtts],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3zz147vtts] {
    display: block;
}


#components-reconnect-modal[b-3zz147vtts] {
    background-color: var(--op-surface-raised);
    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-3zz147vtts 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-3zz147vtts 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3zz147vtts 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-3zz147vtts]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-3zz147vtts 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-3zz147vtts {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3zz147vtts {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3zz147vtts {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-3zz147vtts] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-3zz147vtts] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-3zz147vtts] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-3zz147vtts] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-3zz147vtts] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-3zz147vtts] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3zz147vtts] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3zz147vtts 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3zz147vtts] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-3zz147vtts {
    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/Home.razor.rz.scp.css */
.atlas-landing[b-xene1huf2a] {
    --atlas-ink: #f8fafc;
    --atlas-muted: #cbd5e1;
    --atlas-soft: #94a3b8;
    --atlas-line: rgba(255, 255, 255, 0.14);
    --atlas-panel: rgba(255, 255, 255, 0.06);
    --atlas-blue: #2563eb;
    --atlas-green: #047857;
    --atlas-cyan: #0891b2;
    --atlas-lime: #84cc16;
    background: #111827;
    color: var(--atlas-ink);
    font-family: "Inter", "Segoe UI", sans-serif;
    min-height: 100vh;
    overflow-x: clip;
}

.atlas-landing a[b-xene1huf2a] {
    text-decoration: none;
}

.atlas-nav[b-xene1huf2a] {
    background: rgba(17, 24, 39, 0.92);
    border-bottom: 1px solid var(--atlas-line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.atlas-nav__inner[b-xene1huf2a] {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 72px;
    padding: 0 1.25rem;
}

.atlas-brand[b-xene1huf2a] {
    align-items: baseline;
    color: #ffffff;
    display: inline-flex;
    gap: 0.7rem;
    letter-spacing: 0;
}

.atlas-brand:hover[b-xene1huf2a],
.atlas-brand:focus[b-xene1huf2a] {
    color: #ffffff;
}

.atlas-brand__main[b-xene1huf2a] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.atlas-brand__mark[b-xene1huf2a] {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    color: #d1d5db;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    padding-left: 0.7rem;
}

.atlas-nav__links[b-xene1huf2a] {
    align-items: center;
    display: flex;
    gap: 1.25rem;
}

.atlas-nav__links a[b-xene1huf2a],
.atlas-nav__mobile a[b-xene1huf2a] {
    color: var(--atlas-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

.atlas-nav__links a:hover[b-xene1huf2a],
.atlas-nav__links a:focus[b-xene1huf2a],
.atlas-nav__mobile a:hover[b-xene1huf2a],
.atlas-nav__mobile a:focus[b-xene1huf2a] {
    color: #ffffff;
}

.atlas-nav__access[b-xene1huf2a] {
    background: #ffffff;
    color: #111827 !important;
    padding: 0.72rem 0.95rem;
}

.atlas-nav__toggle[b-xene1huf2a] {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--atlas-line);
    color: #ffffff;
    display: none;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.atlas-nav__toggle i[b-xene1huf2a] {
    font-size: 1.35rem;
}

.atlas-nav__mobile[b-xene1huf2a] {
    border-top: 1px solid var(--atlas-line);
    display: none;
    padding: 0.5rem 1.25rem 1rem;
}

.atlas-nav__mobile.is-open[b-xene1huf2a] {
    display: grid;
    gap: 0.25rem;
}

.atlas-nav__mobile a[b-xene1huf2a] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
}

.atlas-hero[b-xene1huf2a] {
    align-items: stretch;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    margin: 0 auto;
    max-width: 1180px;
    min-height: calc(100vh - 176px);
    padding: 3.2rem 1.25rem 2.7rem;
}

.atlas-hero__copy[b-xene1huf2a] {
    align-self: center;
    max-width: 700px;
}

.atlas-kicker[b-xene1huf2a] {
    color: #67e8f9;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
}

.atlas-hero h1[b-xene1huf2a],
.atlas-section__heading h2[b-xene1huf2a],
.atlas-ai__copy h2[b-xene1huf2a],
.atlas-enterprise__content h2[b-xene1huf2a],
.atlas-contact__header h2[b-xene1huf2a] {
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.98;
}

.atlas-hero h1[b-xene1huf2a] {
    font-size: clamp(2.55rem, 4.8vw, 4.75rem);
    margin: 0;
    max-width: 760px;
}

.atlas-hero__lead[b-xene1huf2a] {
    color: var(--atlas-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    margin: 1.4rem 0 0;
    max-width: 660px;
}

.atlas-hero__actions[b-xene1huf2a] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.atlas-button[b-xene1huf2a] {
    align-items: center;
    border: 1px solid transparent;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 850;
    gap: 0.55rem;
    justify-content: center;
    min-height: 48px;
    padding: 0.82rem 1.05rem;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.atlas-button:hover[b-xene1huf2a],
.atlas-button:focus[b-xene1huf2a] {
    color: #ffffff;
    transform: translateY(-2px);
}

.atlas-button--primary[b-xene1huf2a] {
    background: var(--atlas-blue);
    border-color: var(--atlas-blue);
}

.atlas-button--primary:hover[b-xene1huf2a],
.atlas-button--primary:focus[b-xene1huf2a] {
    background: #1d4ed8;
    border-color: #60a5fa;
}

.atlas-button--quiet[b-xene1huf2a] {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--atlas-line);
}

.atlas-button--dark[b-xene1huf2a] {
    background: #111827;
    border-color: #111827;
    width: 100%;
}

.atlas-hero__visual[b-xene1huf2a] {
    align-items: center;
    display: flex;
    min-width: 0;
}

.atlas-command[b-xene1huf2a] {
    background: #0f172a;
    border: 1px solid var(--atlas-line);
    box-shadow: 24px 24px 0 rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
}

.atlas-command__top[b-xene1huf2a] {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--atlas-soft);
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.atlas-command__top strong[b-xene1huf2a] {
    color: #ffffff;
}

.atlas-command__grid[b-xene1huf2a] {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.atlas-command__tile[b-xene1huf2a] {
    display: grid;
    min-height: 146px;
    padding: 1rem;
}

.atlas-command__tile i[b-xene1huf2a] {
    font-size: 2rem;
}

.atlas-command__tile span[b-xene1huf2a] {
    align-self: end;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 800;
}

.atlas-command__tile strong[b-xene1huf2a] {
    font-size: 1.35rem;
    line-height: 1.08;
}

.atlas-command__tile--hotel[b-xene1huf2a] {
    background: var(--atlas-green);
}

.atlas-command__tile--opinario[b-xene1huf2a] {
    background: var(--atlas-blue);
}

.atlas-command__tile--ia[b-xene1huf2a] {
    background: var(--atlas-cyan);
    grid-column: 1 / -1;
    min-height: 112px;
}

.atlas-command__insight[b-xene1huf2a] {
    align-items: center;
    background: #ffffff;
    color: #111827;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.atlas-command__insight span[b-xene1huf2a] {
    color: #64748b;
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.atlas-command__insight strong[b-xene1huf2a] {
    display: block;
    font-size: 1.03rem;
    line-height: 1.32;
}

.atlas-command__insight i[b-xene1huf2a] {
    color: var(--atlas-green);
    font-size: 1.4rem;
}

.atlas-strip[b-xene1huf2a] {
    border-block: 1px solid var(--atlas-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.atlas-strip div[b-xene1huf2a] {
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid var(--atlas-line);
    min-height: 136px;
    padding: 1.4rem;
}

.atlas-strip div:last-child[b-xene1huf2a] {
    border-right: 0;
}

.atlas-strip strong[b-xene1huf2a],
.atlas-strip span[b-xene1huf2a] {
    display: block;
}

.atlas-strip strong[b-xene1huf2a] {
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}

.atlas-strip span[b-xene1huf2a] {
    color: var(--atlas-muted);
    line-height: 1.45;
}

.atlas-section[b-xene1huf2a] {
    margin: 0 auto;
    max-width: 1180px;
    padding: 5.4rem 1.25rem;
    scroll-margin-top: 96px;
}

.atlas-section__heading[b-xene1huf2a] {
    max-width: 720px;
}

.atlas-section__heading h2[b-xene1huf2a],
.atlas-ai__copy h2[b-xene1huf2a],
.atlas-enterprise__content h2[b-xene1huf2a],
.atlas-contact__header h2[b-xene1huf2a] {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin: 0;
}

.atlas-section__heading p:not(.atlas-kicker)[b-xene1huf2a],
.atlas-ai__copy p:not(.atlas-kicker)[b-xene1huf2a],
.atlas-enterprise__content p:not(.atlas-kicker)[b-xene1huf2a],
.atlas-contact__header p:not(.atlas-kicker)[b-xene1huf2a] {
    color: var(--atlas-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0 0;
}

.atlas-module-grid[b-xene1huf2a] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.atlas-module[b-xene1huf2a] {
    border: 1px solid var(--atlas-line);
    display: grid;
    min-height: 342px;
    padding: 1.1rem;
}

.atlas-module__icon[b-xene1huf2a] {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.atlas-module__icon i[b-xene1huf2a] {
    font-size: 1.45rem;
}

.atlas-module span[b-xene1huf2a] {
    align-self: end;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.atlas-module h3[b-xene1huf2a] {
    font-size: 1.55rem;
    font-weight: 850;
    line-height: 1.08;
    margin: 0.45rem 0 0;
}

.atlas-module p[b-xene1huf2a] {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
    margin: 1rem 0 0;
}

.atlas-module--hotel[b-xene1huf2a] {
    background: var(--atlas-green);
}

.atlas-module--opinario[b-xene1huf2a] {
    background: var(--atlas-blue);
}

.atlas-module--platform[b-xene1huf2a] {
    background: #334155;
}

.atlas-ai[b-xene1huf2a] {
    max-width: none;
    padding-inline: 0;
}

.atlas-ai__panel[b-xene1huf2a] {
    align-items: center;
    background: #f8fafc;
    color: #111827;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    margin: 0 auto;
    max-width: 1180px;
    padding: 2rem;
}

.atlas-ai__copy .atlas-kicker[b-xene1huf2a] {
    color: var(--atlas-blue);
}

.atlas-ai__copy p:not(.atlas-kicker)[b-xene1huf2a] {
    color: #475569;
}

.atlas-ai__flow[b-xene1huf2a] {
    align-items: center;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr auto 1fr auto 1fr;
}

.atlas-flow-card[b-xene1huf2a] {
    color: #ffffff;
    display: grid;
    min-height: 164px;
    padding: 1rem;
}

.atlas-flow-card i[b-xene1huf2a] {
    font-size: 1.8rem;
}

.atlas-flow-card span[b-xene1huf2a] {
    align-self: end;
    font-size: 1.1rem;
    font-weight: 850;
    line-height: 1.12;
}

.atlas-flow-card--source[b-xene1huf2a] {
    background: var(--atlas-green);
}

.atlas-flow-card--brain[b-xene1huf2a] {
    background: var(--atlas-cyan);
}

.atlas-flow-card--target[b-xene1huf2a] {
    background: var(--atlas-blue);
}

.atlas-flow-arrow[b-xene1huf2a] {
    color: #64748b;
    font-size: 1.25rem;
}

.atlas-enterprise[b-xene1huf2a] {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

.atlas-enterprise__card[b-xene1huf2a] {
    background: #ffffff;
    color: #111827;
    padding: 1.2rem;
}

.atlas-enterprise__card > span[b-xene1huf2a] {
    background: #111827;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding: 0.45rem 0.65rem;
    text-transform: uppercase;
}

.atlas-enterprise__card ul[b-xene1huf2a] {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
}

.atlas-enterprise__card li[b-xene1huf2a] {
    align-items: start;
    color: #334155;
    display: flex;
    gap: 0.55rem;
    line-height: 1.35;
}

.atlas-enterprise__card li i[b-xene1huf2a] {
    color: var(--atlas-green);
    margin-top: 0.1rem;
}

.atlas-contact[b-xene1huf2a] {
    background: #0f172a;
    border-top: 1px solid var(--atlas-line);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    padding: 5rem max(1.25rem, calc((100vw - 1180px) / 2));
    scroll-margin-top: 96px;
}

.atlas-contact__header[b-xene1huf2a] {
    max-width: 520px;
}

.atlas-form[b-xene1huf2a] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.atlas-form__field[b-xene1huf2a] {
    display: grid;
    gap: 0.45rem;
}

.atlas-form__field--full[b-xene1huf2a],
.atlas-form__submit[b-xene1huf2a] {
    grid-column: 1 / -1;
}

.atlas-form label[b-xene1huf2a] {
    color: var(--atlas-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.atlas-form .form-control[b-xene1huf2a] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--atlas-line);
    border-radius: 0;
    color: #ffffff;
    min-height: 48px;
}

.atlas-form textarea.form-control[b-xene1huf2a] {
    min-height: 132px;
    resize: vertical;
}

.atlas-form .form-control:focus[b-xene1huf2a] {
    background: rgba(255, 255, 255, 0.12);
    border-color: #67e8f9;
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.22);
    color: #ffffff;
}

.atlas-footer[b-xene1huf2a] {
    align-items: center;
    border-top: 1px solid var(--atlas-line);
    color: var(--atlas-soft);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.4rem max(1.25rem, calc((100vw - 1180px) / 2));
}

.atlas-footer .atlas-brand__main[b-xene1huf2a] {
    font-size: 1.45rem;
}

@media (max-width: 980px) {
    .atlas-nav__links[b-xene1huf2a] {
        display: none;
    }

    .atlas-nav__toggle[b-xene1huf2a] {
        display: inline-flex;
    }

    .atlas-hero[b-xene1huf2a],
    .atlas-ai__panel[b-xene1huf2a],
    .atlas-enterprise[b-xene1huf2a],
    .atlas-contact[b-xene1huf2a] {
        grid-template-columns: 1fr;
    }

    .atlas-hero[b-xene1huf2a] {
        min-height: auto;
        padding-top: 3.6rem;
    }

    .atlas-hero__visual[b-xene1huf2a] {
        align-items: stretch;
    }

    .atlas-module-grid[b-xene1huf2a],
    .atlas-strip[b-xene1huf2a] {
        grid-template-columns: 1fr;
    }

    .atlas-strip div[b-xene1huf2a] {
        border-bottom: 1px solid var(--atlas-line);
        border-right: 0;
        min-height: 112px;
    }

    .atlas-strip div:last-child[b-xene1huf2a] {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .atlas-nav__inner[b-xene1huf2a] {
        min-height: 64px;
    }

    .atlas-brand__main[b-xene1huf2a] {
        font-size: 1.72rem;
    }

    .atlas-hero[b-xene1huf2a] {
        padding-bottom: 2.8rem;
        padding-top: 2.8rem;
    }

    .atlas-hero h1[b-xene1huf2a] {
        font-size: 2.75rem;
    }

    .atlas-button[b-xene1huf2a],
    .atlas-hero__actions[b-xene1huf2a] {
        width: 100%;
    }

    .atlas-command[b-xene1huf2a] {
        box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.18);
    }

    .atlas-command__grid[b-xene1huf2a],
    .atlas-form[b-xene1huf2a] {
        grid-template-columns: 1fr;
    }

    .atlas-command__tile--ia[b-xene1huf2a],
    .atlas-form__field--full[b-xene1huf2a],
    .atlas-form__submit[b-xene1huf2a] {
        grid-column: auto;
    }

    .atlas-ai__panel[b-xene1huf2a] {
        padding: 1.25rem;
    }

    .atlas-ai__flow[b-xene1huf2a] {
        grid-template-columns: 1fr;
    }

    .atlas-flow-arrow[b-xene1huf2a] {
        justify-self: center;
        transform: rotate(90deg);
    }

    .atlas-footer[b-xene1huf2a] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Pages/ModuleLauncher.razor.rz.scp.css */
.module-launcher[b-gj92hs9l6c] {
    align-items: center;
    background: #111827;
    color: #f8fafc;
    display: flex;
    min-height: 100vh;
    padding: 2rem;
}

.module-launcher__inner[b-gj92hs9l6c] {
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
}

.module-launcher__header[b-gj92hs9l6c] {
    margin-bottom: 2.25rem;
}

.module-launcher__brand[b-gj92hs9l6c] {
    align-items: baseline;
    color: #ffffff;
    display: inline-flex;
    gap: 0.7rem;
    letter-spacing: 0;
    text-decoration: none;
}

.module-launcher__brand-main[b-gj92hs9l6c] {
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1;
}

.module-launcher__brand-mark[b-gj92hs9l6c] {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    padding-left: 0.7rem;
}

.module-launcher__header p[b-gj92hs9l6c],
.module-launcher__empty[b-gj92hs9l6c] {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0.75rem 0 0;
}

.module-launcher__empty[b-gj92hs9l6c] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 520px;
    padding: 1.25rem;
}

.module-launcher__grid[b-gj92hs9l6c] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, 284px);
    grid-auto-rows: 180px;
    justify-content: start;
}

.module-tile[b-gj92hs9l6c] {
    align-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: grid;
    height: 180px;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease, filter 0.18s ease;
    width: 284px;
}

.module-tile:hover[b-gj92hs9l6c],
.module-tile:focus-visible[b-gj92hs9l6c] {
    border-color: rgba(255, 255, 255, 0.54);
    color: #ffffff;
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.module-tile--opinario[b-gj92hs9l6c] {
    background: #2563eb;
}

.module-tile--hotel[b-gj92hs9l6c] {
    background: #047857;
}

.module-tile--omnibees[b-gj92hs9l6c] {
    background: #f5b700;
}

.module-tile i[b-gj92hs9l6c] {
    font-size: 2.2rem;
}

.module-tile__copy[b-gj92hs9l6c] {
    display: grid;
    gap: 0.35rem;
}

.module-tile strong[b-gj92hs9l6c] {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.module-tile small[b-gj92hs9l6c] {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    line-height: 1.35;
}

@media (max-width: 640px) {
    .module-launcher[b-gj92hs9l6c] {
        align-items: flex-start;
        padding: 1rem;
    }

    .module-launcher__brand-main[b-gj92hs9l6c] {
        font-size: 2.1rem;
    }

    .module-launcher__grid[b-gj92hs9l6c] {
        grid-template-columns: 1fr;
        grid-auto-rows: 168px;
    }

    .module-tile[b-gj92hs9l6c] {
        height: 168px;
        width: 100%;
    }
}
/* /Components/Shared/Authorization/AuthorizationChallengeRedirect.razor.rz.scp.css */
.auth-transition[b-rnucqzpuaw] {
    background: #111827;
    color: #f8fafc;
    display: flex;
    inset: 0;
    min-height: 100vh;
    padding: 2rem;
    position: fixed;
    z-index: 2147483647;
}

.auth-transition__inner[b-rnucqzpuaw] {
    align-self: center;
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
}

.auth-transition__header[b-rnucqzpuaw] {
    margin-bottom: 2.25rem;
}

.auth-transition__brand[b-rnucqzpuaw] {
    align-items: baseline;
    color: #ffffff;
    display: inline-flex;
    gap: 0.7rem;
    letter-spacing: 0;
    text-decoration: none;
}

.auth-transition__brand-main[b-rnucqzpuaw] {
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1;
}

.auth-transition__brand-mark[b-rnucqzpuaw] {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    padding-left: 0.7rem;
}

.auth-transition__header p[b-rnucqzpuaw] {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0.75rem 0 0;
}

.auth-transition__grid[b-rnucqzpuaw] {
    display: grid;
    gap: 1rem;
    grid-auto-rows: 180px;
    grid-template-columns: repeat(2, 284px);
    justify-content: start;
}

.auth-transition__tile[b-rnucqzpuaw] {
    align-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: grid;
    height: 180px;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    width: 284px;
}

.auth-transition__tile[b-rnucqzpuaw]::after {
    animation: auth-transition-sheen-b-rnucqzpuaw 1.8s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateX(-100%);
}

.auth-transition__tile--hotel[b-rnucqzpuaw] {
    background: #047857;
}

.auth-transition__tile--opinario[b-rnucqzpuaw] {
    background: #2563eb;
}

.auth-transition__tile i[b-rnucqzpuaw] {
    font-size: 2.2rem;
}

.auth-transition__tile span[b-rnucqzpuaw] {
    display: grid;
    gap: 0.35rem;
}

.auth-transition__tile strong[b-rnucqzpuaw] {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.auth-transition__tile small[b-rnucqzpuaw] {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    line-height: 1.35;
}

.auth-transition__status[b-rnucqzpuaw] {
    color: #cbd5e1;
    display: grid;
    font-size: 0.92rem;
    gap: 0.75rem;
    margin-top: 2rem;
    max-width: 584px;
}

.auth-transition__progress[b-rnucqzpuaw] {
    background: rgba(255, 255, 255, 0.1);
    height: 3px;
    overflow: hidden;
    width: 100%;
}

.auth-transition__progress span[b-rnucqzpuaw] {
    animation: auth-transition-progress-b-rnucqzpuaw 1.2s ease-in-out infinite;
    background: #ffffff;
    display: block;
    height: 100%;
    width: 42%;
}

@keyframes auth-transition-progress-b-rnucqzpuaw {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(250%);
    }
}

@keyframes auth-transition-sheen-b-rnucqzpuaw {
    0%,
    35% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 640px) {
    .auth-transition[b-rnucqzpuaw] {
        padding: 1rem;
    }

    .auth-transition__inner[b-rnucqzpuaw] {
        align-self: flex-start;
        padding-top: 1rem;
    }

    .auth-transition__brand-main[b-rnucqzpuaw] {
        font-size: 2.1rem;
    }

    .auth-transition__grid[b-rnucqzpuaw] {
        grid-auto-rows: 168px;
        grid-template-columns: 1fr;
    }

    .auth-transition__tile[b-rnucqzpuaw] {
        height: 168px;
        width: 100%;
    }
}
/* /Opinario/Features/Shared/Components/Modals/ModalSplit.razor.rz.scp.css */
.op-modal-split[b-nzy1beae63] {
    overflow: hidden;
}

.op-modal-split__backdrop[b-nzy1beae63] {
    background: rgba(47, 43, 61, 0.42);
}

.op-modal-split__dialog[b-nzy1beae63] {
    margin-block: 1rem;
}

.op-modal-split__content[b-nzy1beae63] {
    position: relative;
    max-height: min(84vh, 780px);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--op-dashboard-border, rgba(47, 43, 61, 0.12));
    border-radius: 10px !important;
    box-shadow: 0 18px 42px rgba(47, 43, 61, 0.18);
}

.op-modal-split__body[b-nzy1beae63] {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.op-modal-split__body-content[b-nzy1beae63] {
    width: 100%;
}

.op-modal-split__layout[b-nzy1beae63] {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 0;
}

.op-modal-split__layout > [class*="col-"][b-nzy1beae63] {
    min-height: 0;
}

.op-modal-split__sidebar[b-nzy1beae63] {
    background: var(--op-dashboard-muted, #eef5ff);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.op-modal-split__main[b-nzy1beae63] {
    background: #ffffff;
    display: flex;
    min-height: 0;
    overflow: hidden;
}

.op-modal-split__main-scroll[b-nzy1beae63] {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0 0.375rem 0.375rem 0;
    padding: 1.25rem 1.25rem 1rem;
    scrollbar-gutter: stable;
}

.op-modal-split__dismiss[b-nzy1beae63] {
    position: absolute;
    top: 1rem;
    right: 1.75rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    padding: 0;
    border: 0;
    border-radius: 0.375rem;
    background-color: transparent;
    color: var(--op-dashboard-muted-text, #6d6778);
    opacity: 1;
    font-size: 1rem;
    line-height: 1;
}

.op-modal-split__dismiss:hover[b-nzy1beae63],
.op-modal-split__dismiss:focus-visible[b-nzy1beae63] {
    background: var(--op-dashboard-primary-soft, #e7f1ff);
    color: var(--op-dashboard-primary-text, #0d6efd);
}

.op-modal-split__dismiss:focus-visible[b-nzy1beae63] {
    outline: 2px solid rgba(var(--op-dashboard-primary-rgb, 13, 110, 253), 0.26);
    outline-offset: 2px;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .op-modal-split__dialog[b-nzy1beae63] {
        margin-block: 0.5rem;
    }

    .op-modal-split__content[b-nzy1beae63] {
        max-height: calc(100vh - 1rem);
    }

    .op-modal-split__body[b-nzy1beae63] {
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .op-modal-split__layout[b-nzy1beae63] {
        display: block;
        max-height: none;
    }

    .op-modal-split__sidebar[b-nzy1beae63] {
        overflow: visible;
    }

    .op-modal-split__main[b-nzy1beae63] {
        display: block;
        max-height: none;
        overflow: visible;
    }

    .op-modal-split__main-scroll[b-nzy1beae63] {
        margin: 0 0.375rem 0.375rem 0;
        padding: 1rem;
        overflow: visible;
    }
}
