body {
    background: #ffffff;
    margin: 0;
    font-family: Arial, sans-serif;
}

.h3divs {
    margin-top: 100px;
    text-align: center;
    color: green;
    font-size: 32px;
}

/* Container1 (equivalente ao antigo container2) */
#container1 {
    display: flex;
    justify-content: center;
    font-size: 15px;
    flex-wrap: wrap;
    column-gap: 60px;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

#container1 img {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    object-fit: cover;
}

#container1 div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#container1 h3 {
    font-size: 18px !important;
    margin-top: 20px;
    color: rgb(0, 0, 0);
}

#container1 p {
    margin-top: 5px;
    color: rgb(58, 54, 54);
}

/* Responsividade para container1 */
@media (max-width: 850px) {
    #container1 {
        width: 100%;
        column-gap: 30px;
    }

    #container1 div {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    #container1 div {
        max-width: 100%;
    }

    #container1 img {
        width: 120px;
        height: 120px;
    }
}

/* ====== CSS do equipe ====== */

#p1equipe {
    text-align: center;
    margin-top: 40px;
    font-size: 30px;
    color: rgb(11, 148, 11);
}

#p2equipe {
    text-align: center;
    color: rgb(58, 54, 54);
    font-size: 25px;
}

#div1equipe {
    display: flex;
    justify-content: center;
    column-gap: 80px;
    flex-wrap: wrap;
    row-gap: 50px;
}

.divsequipe {
    text-align: center;
}

.imgsequipe {
    width: 200px;
    height: 200px;
    text-align: center;
    border-radius: 50%;
    object-fit: cover;
}

.p3equipe {
    color: rgb(11, 148, 11);
}

.p4equipe {
    color: rgb(58, 54, 54);
    margin-top: -15px;
}