.titulo-galeria{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.titulo-galeria img{
    width: 100%;
}

.titulo-galeria p{
    position: absolute;
    font-family: Bebas Neue;
    font-size: 100px;
    text-align: center;
}

.fotografias{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.grupo-fotos{
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin: 15px;
}

.grupo-fotos img {
    width: 30%;
    background: red;
}

@media (max-width:866px) {
    .titulo-galeria img{
        width: 100%;
    }

    .titulo-galeria p{
        font-size: 30px;
    }

    .grupo-fotos{
        flex-direction: column;
        margin: 0px;
    }

    .grupo-fotos img {
        width: 100%;
        margin-top: 10px;
    }

}