body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    position: relative;
    background-color: #082057;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.barra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #082057;
}

header img {
    max-width: 100%;
    max-height: 100%;
}

h1 {
    margin-top: 10px;
}

section#informacoes {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

section#informacoes p {
    margin: 10px 0; /* Ajuste o valor conforme necessário */
}

footer {
    background-color: #082057;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
}
