.professores {
    background-image: radial-gradient(circle at 15% 1%,#172231,#131313 25%);
    background-color: #072347;
    position: relative;
    padding: 5em 0;
    box-sizing: border-box;
    width: 100%;
    text-align: center;

}

.professores_title {
    display: block;
    font-weight: 300;
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.2;
    margin: 1em auto;

    
}

.professores-p {
    color: white;
    font-size: 1.2em;
}
.professores-list {
    text-align: center;
    list-style: none;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    padding-left:0;

    

}
.professores-list li {
    flex-wrap: wrap;
    margin: 1em auto;
    width: 100%;
    justify-content: space-between;



}

.professores_box {
    width: 80%;

    border: solid 3px #023144;
    background-color: #172231;
    border-radius: .5em;
    padding: 1em 0;
    margin:  0 auto;
    box-shadow: 0px 9px 24px 0px rgba(0,0,0,0.57);
    transform: translate(0,10%);
    transition: .3s ease-in;
}

.professores_box:hover {
    transform: translate(0,0);
        box-shadow: 1px 11px 80px -7px rgba(0, 0, 0, 0.753);
        cursor: pointer;
        border: #01acf081 2px solid;
}
.professores_box h2 {
    margin-top: 1em;
    color: #01aef0;
    }

.professores_box p {
    color: #fff;
}
.professores-list img {
    width: 60%;
}

.professores-button {
    margin: 0 auto;
    margin-top: 5em;
    width: 75%;
    display: block;
    color: white;
    background-color: #fc4998;
    box-shadow: 1px 11px 80px -7px rgba(0, 0, 0, 0.753);
    text-decoration: none;
    border: none;
    border-radius: 2em;
    padding: 1em 0;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    }

.professores-button:hover {
    color: grey;
    background-color: white;
    cursor: pointer;

}
.detalhe_profs {
    
    display: none;
}


@media (min-width: 600px) {
    .professores-list li {
        width: 48%;
        height: auto;
    }

    .professores_box {
        min-height: 300px;
    }
}

@media (min-width: 768px) {
    .professores {
        padding: 2em 0 8em 0;
    }

    .professores-button {
        width: 20%;
        }
    .professores-list li {
        width: 20%;
        height: auto;
        padding-bottom: 0;
    }

    .professores_box {
        width: 90%;
        min-height: 280px;
    }

    .professores_title {
        font-size: 2.7em;
        
        
    }
    .professores-p {
        width: 55%;
        margin: 0 auto;
        font-size: 1.4em;
    }
    .detalhe_profs {
        position: absolute;
        left: -30%;
        bottom: -10%;
        max-width: 800px;
        opacity: .5;
            
    }

    
    
}

