#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0d0d0d;
    color: #00ffff;
    display: flex;
    flex-direction: column;
    /* apila verticalmente */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.1s ease-out;
}

#loader.oculto {
    opacity: 0;
    pointer-events: none;
}

#loader-ororok img {
    /*width: 80px;*/
}

#loader-ororok {
    position: relative;
    width: 80px;
    height: 80px;
}

#loader-ororok img {
    width: 100%;
    height: 100%;
    display: block;
}

.ojo-brillo {
    position: absolute;
    top: 29px;
    left: 42px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: cyan;
    filter: blur(2px);
    animation: pulsoOjo 1.2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes pulsoOjo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}


#loader-texto {
    font-size: 1.3rem;
    font-family: monospace;
}

#loader-barra {
    width: 120px;
    height: 20px;
    border-radius: 20px;
    background:
        linear-gradient(rgb(41, 149, 199) 0 0) 0/0% no-repeat rgb(178, 223, 238);
    animation: cargaBarra 0.5s steps(10) 1;
    animation-fill-mode: forwards;
}

@keyframes cargaBarra {
    100% {
        background-size: 110%;
    }
}








.pulso {
    top: -3px;
    display: inline-block;
    width: 4px;
    height: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #06fefe;
    box-shadow: 0 0 0 0 rgba(62, 191, 255, 0.267);
    animation: pulsoAnimado 1.5s infinite linear;
    position: relative;
}

.pulso:before,
.pulso:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(62, 191, 255, 0.267);
    animation: pulsoAnimado 1.5s infinite linear;
    animation-delay: -0.5s;
    transform: scale(0);
}

.pulso:after {
    animation-delay: -1s;
}

@keyframes pulsoAnimado {
    100% {
        transform: scale(2);
        opacity: 0;
    }
}