body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('fundo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loading-container {
    text-align: center;
}

#logo-container {
    margin-bottom: 20px; /* Espaço entre a logo e a barra de carregamento */
}

#logo {
    width: 600px;
    height: 424px;
}

#progress-bar {
    width: 90%;
    height: 30px;
    background-color: #e0e0e0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Alinha verticalmente o texto da porcentagem */
}

#percentage-text {
    position: absolute;
    left: 10px;
    color: white;
    font-weight: bold;
    line-height: 30px; /* Para centralizar verticalmente o texto */
}

#progress-inner {
    width: 0;
    height: 100%;
    background-color: red;
    transition: width 0.5s ease-in-out;
}
