
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo com imagem */
body {
    font-family: Arial, sans-serif;
    background: url("fundo.png") no-repeat center center fixed;
    background-size: cover;
}

/* Logotipo simples */
.menu-bar {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00ccff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Overlay para centralizar conteúdo */
.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 80px;
}

/* Texto "On going..." */
.status-text {
    color: #00ccff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ccff;
}

/* Container da barra */
.progress-container {
    width: 80%;
    max-width: 600px;
    height: 40px;
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

/* Barra de progresso */
.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00ccff, #0074D9);
    transition: width 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* Ícones dentro da barra */
.icons {
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Efeito de brilho animado */
.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(8px);
    animation: brilho 2s infinite linear;
}

@keyframes brilho {
    0% {
        left: -50px;
    }
    100% {
        left: 100%;
    }
}

/* Texto da percentagem */
.progress-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}