/* container principal */
.container-principal {
    width: 70%;
    margin: auto;
    margin-top: 50px;
}

/* main h1 {
    color: #32756C;
} */

main h3 {
    background: linear-gradient(to right, #32756C, #51b3a6 70%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    margin-top: 20px;
    margin-left: 10px;
}

/* sobre a equipe */
.sobre-equipe {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #D4ECE9;
    border-radius: 20px;
}


.sobre-equipe article {
    display: flex;
    flex-direction: row;
    text-align: justify;
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    background-color: #D4ECE9;
    border-radius: 20px;
}

.sobre-equipe article div {
    height: auto;
    width: 300px;
    border: 1px solid gray;
    background: #dce0df7a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.sobre-equipe article div img {
    height: 200px;
    width: 200px;
}

.info-equipe {
    height: auto;
    text-align: justify;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #12C7B9;
    padding: 20px;
    
}

.info-equipe p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* profissionais */
.profissionais {
    width: 100%;
    margin: 80px auto 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profissionais h1 {
    margin-bottom: 10px;
}

.profissionais div {
    display: flex;
    flex-direction: column;
}

.profissionais article {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    height: auto;
}

.profissionais article p {
    text-align: justify;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

.info-profissional {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border: 1px solid #12C7B9;
    border-radius: 5px;
    padding: 10px;
    height: fit-content;
    background-color: #D4ECE9;
}




.profissionais article img {
    width: 202px;
    height: 229px;
    border-radius: 25px;
    border: 5px solid #299E93;
}

@media (max-width: 768px){

    .sobre-equipe article{
        display: flex;
        flex-direction: column-reverse;
    }
    .sobre-equipe article div {
        width: 100%;
    }

    .profissionais .profissional-cima{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
        height: auto;
    }

    .profissionais .profissional-abaixo{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        height: auto;
    }

}