.titulo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}
.titulo:hover{
    margin-top: 10px;
    background-color: rgb(106, 148, 197);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: 0.5s;
}

#logo {
    width: 100%;
    margin: 0px;
}
.infoAcesso{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
}
.infoAcesso a{
    text-decoration: none;
}

.aguardando{
    background-color: #ededed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aguardando img{
    width: 100%;
    max-width: 550px;
}


/* Estilo do header */
header {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa; /* Cor clara */
    border-bottom: 1px solid #ddd;
    z-index: 5;
    width: 100%; /* Ocupa toda a largura */
}

/* Estilo do rodapé */
footer {
    width: 100%;
    padding: 10px 0;
    background-color: #f8f9fa; /* Cor clara */
    border-top: 1px solid #ddd;
    text-align: center;
}