/* HERO */
.hero {
  background: linear-gradient(135deg, #0d1b2a, #6a0dad);
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.team-card {
  background: white;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106,13,173,0.2);
}

/* IMAGEM */
.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #6a0dad;
}

/* TEXTO */
.team-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #0d1b2a;
}

.team-card span {
  font-size: 13px;
  color: #6a0dad;
}

/* ANIMAÇÃO */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}