body {
  margin: 0;
  padding: 0;
  background: #1a0033;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

h1 {
  text-align: left; /* <- aqui é a mudança */
  color: #e57cff;
  font-size: 2.5rem;
  margin: 40px 0 20px 40px; /* margem lateral opcional pra afastar da borda */
}


.us {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px 40px;
}


.team-member {
  background: #32004d;
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #e57cff;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h2 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  font-weight: bold;
}

.team-member .role {
  font-size: 0.95rem;
  color: #caa0ff;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.9rem;
  color: #ddd;
}

.icons {
  margin-top: 15px;
}

.icons a {
  color: #e57cff;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.icons a:hover {
  color: #ffffff;
}
