/* ==========================================================================
   Estilos da Página de Equipe (equipe.php)
   ========================================================================== */
.team-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.team-container h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #007f2f;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.team-image-wrapper {
  margin: -70px auto 20px auto; /* Puxa a imagem para cima */
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a foto preencha o círculo */
  display: block;
}

.team-info h2 {
  font-size: 1.6rem;
  color: #1b263b;
  margin-bottom: 5px;
}

.team-info h3 {
  font-size: 1rem;
  color: #007f2f;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.no-team {
  background: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 12px;
  font-size: 1.2rem;
  color: #555;
  grid-column: 1 / -1;
}