h3{
    font-size: 25px;
}

.itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify; 
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.4;
}

.itens p, .itens ul {
    max-width: 600px;
    margin: 15px auto;
    color: #929191;;
    font-size: 18px;
}

.itens ul {
    list-style: none; /* remove bolinhas padrão */
    padding: 0;
}

.itens ul li {
    margin-bottom: 10px;
    text-align: justify; /* melhor leitura */
}

.itens ul li::before {
    content: "• "; /* adiciona marcador customizado */
    color: #cd8df4;
    font-weight: bold;
}


.itens img{
    height: 100px;
    width: auto;
    margin: 1%;
    border-radius: 50%;
}