/* times.css */

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  margin: 0;
  padding: 40px 20px;
  color: white;
}

h1 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
  font-size: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-box {
  width: 150px;
  height: 180px;
  background-color: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.team-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.team-box p {
  margin: 0;
  font-size: 16px;
}

/* 🔽 Responsivo para telas menores */
@media (max-width: 600px) {
  body {
    padding: 20px 10px;
  }

  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .container {
    gap: 20px;
  }

  .team-box {
    width: 120px;
    height: 150px;
  }

  .team-box img {
    width: 60px;
    height: 60px;
  }

  .team-box p {
    font-size: 14px;
  }
}
