.galeria-de-projetos {
  padding: 5rem 0;
}

.galeria-de-projetos .section-title,
.galeria-de-projetos .section-paragraph {
  text-align: center;
  margin: 0 auto 32px;
}

.galeria-de-projetos .section-paragraph {
  max-width: 515px;
}

.galeria-de-projetos .galeria-de-projetos-images {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.galeria-de-projetos .galeria-de-projetos-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: filter ease-in-out 0.3s;
}

.galeria-de-projetos .galeria-de-projetos-images img:hover {
  filter: brightness(0.5);
}

.galeria-de-projetos
  .galeria-de-projetos-images
  .galeria-de-projetos-images__large {
  grid-row: span 2;
}

.galeria-de-projetos-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .galeria-de-projetos .galeria-de-projetos-images {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 425px) {
  .galeria-de-projetos .galeria-de-projetos-images {
    gap: 8px;
  }
}
