body {
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.back-button {
  display: inline-block;
  margin-bottom: 30px;
  color: #fff;
  text-decoration: none;
  background-color: #222;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.back-button:hover {
  background-color: #444;
}

.team-profile {
  text-align: center;
  margin-bottom: 40px;
}

.team-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.team-name {
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.team-content {
  background-color: #111;
  padding: 25px;
  border-radius: 12px;
  min-height: 300px;
  outline: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.team-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #ccc;
  font-size: 16px;
}

iframe {
  margin: 20px 0;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* 🔽 Responsivo para telas menores */
@media (max-width: 600px) {
  body {
    padding: 20px 10px;
  }

  .team-logo {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-content {
    padding: 15px;
    min-height: auto;
  }

  .team-content p {
    font-size: 14px;
  }

  iframe {
    height: 250px;
  }

  .back-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}
