body {
  margin: 0;
  padding: 0;
  background: #1a0033;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

/* Título geral */
h1, h2, h3 {
  color: #e57cff;
  margin-left: 40px;
}

/* Cabeçalho (header vazio no seu código, mas já pode ter estilo) */
header {
  height: 80px;
  background: #26004a;
}

/* Banner */
.banner {
  background: #3d0068;
  color: #e57cff;
  font-size: 2rem;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 30px;
}

/* Seções com padding */
.section {
  padding: 0 40px 40px;
}

/* === Time - membros alinhados na horizontal com flex === */
.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;
}

/* === Jogos (games) === */
.games {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 0;
}

.game-image {
  width: 250px;
  height: 150px;
  background: #32004d;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* === Formulário de contato === */
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  resize: vertical;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #aaa;
}

.contact button {
  padding: 12px 20px;
  background: #e57cff;
  border: none;
  border-radius: 15px;
  color: #1a0033;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background: #c453e0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background: #26004a;
  color: #ccc;
  margin-top: 40px;
}
