@import url('brand-house.css');

/* Splash in-app (browser / carregamento inicial) */
html:not(.auth-ok) body {
    visibility: hidden;
}

.app-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(180deg, #45B0F0 0%, #3DAAEB 45%, #2E96D6 100%);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.app-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-splash__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 24px;
    overflow: visible;
}
