/* SECCION NOSOTROS / EQUIPO */

#nosotros.team-section {
  background-color: #ffffff;
  padding-bottom: 80px;
}

.team-title {
  font-size: 1.2rem; /* Coincide con el tamaño del cuerpo de texto del template */
  font-weight: 400;   /* Mismo peso que el párrafo descriptivo */
  color: #37A;       /* Azul institucional de la sección Nosotros */
  margin-top: 0;      /* Eliminado para que la separación dependa del mb-5 superior y sea consistente con los tags de sección */
  margin-bottom: 20px; /* Reducido de 35px a 20px */
}

.team-row {
  margin-top: 10px;
}

.team-member-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px 36px;
  height: 100%;
  min-height: 490px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #416799;
}

.team-name {
  font-size: 26px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.linkedin-icon {
  width: 27px;
  height: 27px;
  background-color: #2d3f4e;
  color: #ffffff;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.linkedin-icon:hover,
.linkedin-icon:focus,
.linkedin-icon:active {
  background-color: #416799;
  color: #ffffff;
  text-decoration: none;
}

.team-role {
  font-size: 18px;
  color: #777;
  margin-bottom: 18px;
}

.team-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4f4f4f;
  margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .team-member-card {
    max-width: 430px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding-bottom: 60px;
  }

  .about-desc {
    font-size: 16px;
  }

  .team-title {
    font-size: 1.1rem; /* Ajuste proporcional para móviles */
  }

  .team-photo {
    width: 165px;
    height: 165px;
  }

  .team-name {
    font-size: 23px;
  }

  .team-role {
    font-size: 16px;
  }

  .team-description {
    font-size: 15px;
  }
}