.gallery{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gallery__title{
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery__subtitle{
    color: white;
    opacity: .5;
    margin-bottom: 15px;
    font-size: 1rem;
}

.gallery__img{
    width: 80%;
    height: 200px;
    border: 15px solid var(--color-1);
    border-radius: 5px;
    margin-bottom: 15px;
}

.gallery__img-file{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__text{
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    opacity: .5;
    transition: .3s all ease-in-out;
}

.gallery__text:hover{
    opacity: 1;
}

.gallery__text img{
    width: 5%;
    margin-left: 5px;
    filter: invert();
}

@media screen and (min-width: 768px) {
    .galeria{
        margin-top: 20px;
    }

    .gallery{
        margin-top: 80px;
    }

    .gallery__title{
        font-size: 2.5rem;
    }
    
    .gallery__subtitle{
        font-size: 1.5rem;
    }

    .gallery__img{
        height: 400px;
        width: 80%;
    }
    
    .navegacao__lista a:nth-child(5){
        border-bottom: 2px solid white;
    }
}

@media screen and (min-width: 1024px) {
    .gallery__img{
        height: 600px;
        width: 100%;
    }

    .rodape{
        height: 70px;
    }
}