.projetos {
  min-height: 100vh;
  background: #111;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projetos-titulo {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.projetos-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.projetos-carousel img {
  width: 320px; /* levemente maior para evitar upscale via CSS */
  height: auto;
  border-radius: 16px;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(1); /* neutraliza o upscale padrão */
  image-rendering: auto; /* preserva qualidade */
}

.projetos-carousel img.center {
  opacity: 1;
  transform: scale(1.03); /* apenas pequeno upscale para destaque */
}

