/* TEAM SECTION */
.team-section {
  padding: 3rem 1rem;
  background-color: #f7f9fc;
  text-align: center;
}

.team-section .section-header {
  margin-bottom: 2rem;
}

.team-section .section-header h2 {
  font-size: 17px;
  color: #09213d;
  margin-bottom: 0.5rem;
}

.team-section .section-header img {
  width: 100px;
  height: auto;
}

/* GRID DE MIEMBROS */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  padding: 0 1rem;
}

/* TARJETA DE MIEMBRO */
.member-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-icon {
  font-size: 4rem;
  color: #0a4174;
  margin-bottom: 1rem;
}

.member-info h2 {
  font-size: 1rem;
  color: #09213d;
  margin-bottom: 0.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.member-info h5 {
  font-size: 0.95rem;
  color: #4a4a4a;
  font-weight: 500;
}
