body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Grid adaptable */
  gap: 20px;
}

.team-member {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px; /* Bordes ligeramente redondeados */
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.member-photo {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Proporción cuadrada */
  overflow: hidden;
  background-color: #eaeaea; /* Fondo para contenedores vacíos */
}

.member-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen cubra el contenedor */
  border-radius: 4px; /* Redondeo mínimo */
}

.member-info {
  padding: 15px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #444;
}

.member-role {
  font-size: 1rem;
  color: #666;
}


