#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo Animation */
.logo-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    stroke-dasharray: 502; /* 2 * PI * 80 (circunferência do círculo) */
    stroke-dashoffset: 502;
    transform: rotate(-90deg);
    transform-origin: center;
    animation: fillCircle 1.5s ease forwards;
}

.loading-percentage {
    position: absolute;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    animation: updatePercentage 1.5s forwards linear;
}

/* Logo Text */
.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    /* Visível desde o início */
    opacity: 1;
}

.neo {
    color: #ffffff;
}

.build {
    color: #00AEEF;
}

/* Animações */
@keyframes fillCircle {
    0% { stroke-dashoffset: 502; }
    20% { stroke-dashoffset: 402; }
    40% { stroke-dashoffset: 302; }
    60% { stroke-dashoffset: 201; }
    80% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

@keyframes updatePercentage {
    0% { content: "0%"; }
    20% { content: "20%"; }
    40% { content: "40%"; }
    60% { content: "70%"; }
    80% { content: "90%"; }
    100% { content: "100%"; }
}

/* Classe para esconder a tela de loading */
.loading-hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 1;
}