section.sobre {
    background: #f5f5f5;
    padding: 90px 0;
}

section.sobre h2,
section.membros h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--azul);
    margin-bottom: 10px;
}

section.sobre p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

section.membros {
    padding: 90px 0;
}

section.membros h2 {
    text-align: center;
    margin-bottom: 50px;
}

section.membros ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

section.membros ul li {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section.membros ul li p:after {
    content: '';
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: var(--azul);
    display: block;
    margin: auto;
    margin-top: 5px;
}

section.membros img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    max-width: 150px;
}

section.membros h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}


@media all and (max-width: 768px) {
    section.membros ul {
        grid-template-columns: repeat(2, 1fr);
    }
}