body {
  background: #0e0e0e;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.equipe-container {
  padding: 5rem;
  text-align: center;
  padding-left: 28rem;
  padding-right: 28rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 1rem;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,255,255,0.1);
}

.card img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  height: 220px;
}

.card h2 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.9rem;
  color: #bbb;
}
