/* ===== SECCIÓN PLANA DOCENTE ===== */

.team-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.team-container {
  max-width: 1300px; /* Aumentamos ancho para que 4 cards respiren mejor */
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #1e3a8a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-header h2 {
  font-size: 2.4rem;
  color: #1e3a8a;
  margin: 15px 0;
}

.team-header p {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== GRID 4 - 2 - 2 ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* TABLET */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* ===== CATEGORÍAS ===== */

.team-category {
  margin-top: 80px;
}

.category-title {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 40px;
  position: relative;
  padding-left: 15px;
  text-align: center;
}


/* ===== CARD ===== */

.team-card {
  background: #f5f7fb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGEN ===== */

.team-image {
  width: 100%;
  height: 260px; /* Más proporcionado para 4 columnas */
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

/* ===== INFO ===== */

.team-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.team-info h3 {
  color: #1e3a8a;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.team-role {
  display: block;
  font-weight: 600;
  color: #2563eb;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

