.tela100 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#tela-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    text-align: center;
    flex-direction: column;
    z-index: 10000000
}

#tela-cheia {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: #000;
    z-index: 9999;
}

.dica {
    font-size: 18px;
    color: #fff;
    font-family: 'titulo', sans-serif;
}

a {
    font-size: 18px;
    font-family: 'titulo', sans-serif;
}

#tela-cheia span {
    color: #fff;
    font-size: 50px;
}

#tela-play {
    background-color: rgba(255, 0, 0, 0.25);
    z-index: 1750;
}

/* Aviso -------------- */

#aviso {
    position: absolute;
    background-color: #000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#aviso p {
    color: #fff;
    margin: 20px;
}

/* Tela inicial ---------- */

#tela-inicial {
    background-image: url(../../imagens/tela-inicial-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

#fucinho-div {
    position: absolute;
    top: 42.5vh;
    left: 62.5vw;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 1000;
}

#model-viewer-alert {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0.75);
    font-size: 14px;
    font-family: 'titulo', sans-serif;
    font-weight: bolder;
    padding: 10px;
    background-color: #fff;
    border-radius: 100px;
    opacity: 0;
    z-index: 1204;
    display: none;
}

@keyframes aparecer-alerta {
    0% {
        top: -50px;
        transform: translateX(-50%) scale(0.75);
        opacity: 0;
    }
    10% {
        top: 50px;
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    90% {
        top: 50px;
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    100% {
        top: -50px;
        transform: translateX(-50%) scale(0.75);
        opacity: 0;
    }
}

#confete {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1202 !important;
}

#model-viewer-div {
    position: absolute;
    width: 100vw;
    height: 100vh;
    backdrop-filter: brightness(0.5) blur(10px);
    z-index: 1201 !important;
    display: none;
}

model-viewer {
    width: 100vw;
    height: 100vh;
    z-index: 1203 !important;
    display: none;
}

#x-model-viewer {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1204 !important;
    display: none;
}

#x-model-viewer span {
    font-size: 100px;
    color: #fffa;
    transition-duration: .5s;
}

#x-model-viewer span:hover {
    transform: scale(1.05);
    filter: drop-shadow(20px);
}

#titulo {
    position: absolute;
    top: 10px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1vh;
}

#titulo p {
    font-family: 'titulo', sans-serif;
    font-size: 7.5vh;
    color: #fff;
}

#div-noites {
    position: fixed;
    left: 1.5vw;
    bottom: 1.5vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.noites {
    background-color: transparent;
    outline: none;
    border: none;
    color: #aaa;
    font-weight: bold;
    padding: 1vw;
    font-size: 2.5vh;
    pointer-events: none;
}

.noites:hover::before {
    content: '>>';
    position: absolute;
    left: -1.5vw;
}

.noites.active {
    color: #fff;
    pointer-events: all;
}

/* Tela de carregamento ----------- */

#tela-carregamento,
#tela-transicao-noite {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    overflow: hidden;
}

#tela-jornal {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

#jornal-img {
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition-timing-function: linear;
    transition-duration: 3s;
}

#animacao-carregando {
    background-color: transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid white;
    border-right: 10px solid white;
    border-left: 10px solid white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: preload .5s linear infinite;
}

#carregando-p {
    color: white;
    margin: 0;
}

@keyframes preload {
    to {
        transform: rotate(360deg);
    }
}

#transicao-info {
    opacity: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 50px;
    animation: anima-transicao-info 4s linear;
}

@keyframes anima-transicao-info {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#tela-pause {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000a0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-pause);
}

#div-pause {
    position: relative;
    width: 50vw;
    height: 50vh;
    background-color: #000;
    border: 0.5vw solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}

#tela-balloon-boy {
    animation: anima-balloon-boy-fundo .15s linear infinite;
    animation-timing-function: steps(1);
    z-index: 1;
}

@keyframes anima-balloon-boy-fundo {
    0% {
        background-color: #000;
    }

    50% {
        background-color: #0000;
    }

    100% {
        background-color: #000;
    }
}

#div-balloon-boy {
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-balloon-boy #balloon-boy-img {
    height: 100%;
}
