#cabeca {
    height: 150px;
    width: 1200px;
    margin-left: 150px;
    flex-direction: column;
    font-size: large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.corpo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pessoal {
    display: flex;
    background-color: #663399;
    justify-content: center;
    width: 100%;
    height: 60%;
    margin-bottom: 0px;
}

.pessoal2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #745a8e;
    width: 100%;
    height: 35px;
}


.info_geral {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color: rgb(219, 217, 217);
    padding-left: 10px;
    border-bottom: #663399 3px solid;
}

.conteudo {
    display: flex;
    align-items: center;
    padding: 5px 0 5px 20px;
    color: rgb(50, 49, 49);
}

.lista {
    font-weight: bold;
}

.menu {
    display: flex;
    justify-content: flex-end;

    li {
        list-style-type: none;
        text-decoration: none;
        margin: 10px;
        display: inline-block;
        padding: 0px;
    }

    a {
        padding: 16px;
        color: black;
        background-color: #663399;
        text-decoration: none;

    }

    a:hover {
        background-color: #745a8e;
        color: white;
        text-decoration: none;

    }

}