.boxProfessores {
    float: left;
    width: 100%;
    padding: 20px 0 70px 0;
}

.boxProfessores h2 {
    float: left;
    width: 100%;
    color: #292929;
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 36px;
}

.boxProfessores p.subtitulo {
    color: #292929;
    margin: 0;
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    float: left;
    width: 100%;
}

.boxProfessores h3 {
    float: left;
    width: 100%;
    color: #292929;
    margin: 60px 0 50px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 28px;
}

.boxProfessores .listaProfessores {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.boxProfessores .listaProfessores li {
    list-style: none;
    background: #EFEFEF;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 28px 5px rgba(0,0,0,0.07);
    -moz-box-shadow: 0px 4px 28px 5px rgba(0,0,0,0.07);
    box-shadow: 0px 4px 28px 5px rgba(0,0,0,0.07);
}

.boxProfessores .listaProfessores li figure {
    float: left;
    width: 100%;
}

.boxProfessores .listaProfessores li figure img {
    width: 100%;
}

.boxProfessores .listaProfessores li .boxTexto {
    float: left;
    width: 100%;
    padding: 15px;
}

.boxProfessores .listaProfessores li .boxTexto .nome {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
}

.boxProfessores .listaProfessores li .boxTexto .especialidade {
    float: left;
    width: 100%;
    font-size: 12px;
    margin-top: 3px;
    font-weight: 500;
    color: #000;
}

@media only screen and (max-width: 1000px) {

    .boxProfessores .listaProfessores {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media only screen and (max-width: 768px) {

    .boxProfessores {
        padding: 0 0 50px 0;
    }

    .boxProfessores h2 {
        margin: 0 0 20px 0;
        font-size: 22px;
        line-height: 32px;
    }

    .boxProfessores p.subtitulo br {
        display: none;
    }

    .boxProfessores h3 {
        margin: 35px 0 30px 0;
    }

    .boxProfessores .listaProfessores {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .boxProfessores .listaProfessores li .boxTexto .nome {
        font-size: 14px;
        line-height: 24px;
    }

}