﻿.loading-container {
    position: fixed; /* MUITO importante */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999; /* fica acima de tudo */
}

.loading-container .mud-typography {
        color: white;
    }

/* logo */
.logo-animada {
    width: 64px;
    animation: pulseRotate 2.5s ease-in-out infinite;
}

/* texto */
.loading-text {
    font-size: 16px;
    color: #3f6ea5;
}

/* animação */
@keyframes pulseRotate {
    /* pulso */
    0% {
        transform: scale(1) rotate(0deg);
    }

    20% {
        transform: scale(1.15) rotate(0deg);
    }

    40% {
        transform: scale(1) rotate(0deg);
    }
    /* giro */
    60% {
        transform: scale(1) rotate(180deg);
    }

    80% {
        transform: scale(1) rotate(360deg);
    }
    /* volta ao normal */
    100% {
        transform: scale(1) rotate(360deg);
    }
}

#abax-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #f5f7fa, #ffffff);
    color: #3f6ea5;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: welcomeSmooth 8s ease-in-out infinite;
    z-index: 9999;
}

/* animação mais suave e contínua */
@keyframes welcomeSmooth {

    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    20% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    60% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    80% {
        transform: translateY(-5px) scale(1.01);
    }

    100% {
        opacity: 0.95;
        transform: translateY(0) scale(1);
    }
}