.cabecalho {
    padding: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(../img/fachada.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cabecalho h2 {
    font-size: 54px;
}


.sobre {
    padding: 100px;
}

.sobre h2 {
    color: #0F2D87;
    font-size: 54px;
    font-weight: bold;
}

.sobre img {
    border-radius: 25px;
}

.equipe {
    padding: 50px;
    background-color: #f3f3f3;
}

.equipe h3 {
    color: #919191;
    font-size: 2rem;
}

.equipe h2 {
    font-size: 54px;
    color: #0F2D87;
    font-weight: 600;
}

.box-equipe {
    position: relative;
    background: #fff;
    box-shadow: 5px 5px 5px #0000004b;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.box-equipe img{
    border-radius: 50%;
    height: 200px;
    width: 200px;
    border: solid 7px #0F2D87;
}

.equipe-texto h3{
    color: #0F2D87;
    font-size: 40px;
}

.equipe-texto h4{
    font-size: 18px;
}

.foto{
    position: relative;
}

.box-galeria{
    position: absolute;
    background-color: #0f2d87ec;
    height: 100%;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    
}

.box-galeria:hover{
    opacity: 1;
    transition: .5s;
    cursor: pointer;
}

.box-galeria i{
    color: #fff;
    font-size: 46px;
}