.projetos {
  padding: 60px 20px;
  background-color: #fff; /* fundo claro valoriza PNGs com transparência */
  text-align: center;
}

.titulo-projetos {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.grid-projetos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-projetos img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background-color: #f5f5f5; /* fundo leve para imagens transparentes */
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.grid-projetos img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .grid-projetos {
    grid-template-columns: repeat(2, 1fr);
  }
}
