#container-conteudo {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 80px;
    flex-grow: 0;
    align-items: flex-start;
}

.lista-secoes {
    display: flex;
    flex-direction: row;
    justify-content: start
}

.secao {
    margin-right: 1em;
    padding: 0.5em 0.8em;
    border-radius: 5px;
    background-color: rgba(35, 35, 35, 0.5);
    transition: .5s;
    cursor: pointer;
}

.secao a {
    text-decoration: none;
}

.secao:hover {
    background-color: #00F65C;
}

.titulo-secao {
    width: fit-content;
    border-bottom: 1px solid #00F65C;
    font-size: 1.2em;
    margin-bottom: 1em;
    font-weight: 500;
}

#container-pessoa-conteudo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


