body {
    background-image: url('assets/img/basic/header-pattern.png'); /* Certifique-se de que o caminho está correto */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column; /* Coloca o logo e a barra em uma coluna */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8); /* Transparente */
}

#loading-screen img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px; /* Espaçamento entre o logo e a barra */
}

.progress-bar {
    width: 80%; /* Reduza o tamanho da barra de progresso para 80% da tela */
    height: 10px; /* Altura da barra */
    background-color: rgba(255, 255, 255, 0.2); /* Cor de fundo da barra */
    border-radius: 5px; /* Bordas arredondadas */
    overflow: hidden; /* Para esconder qualquer overflow */
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, red, orange, yellow, orange, red);
    animation: loadProgress 4s linear forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}