body {
  background: #f7f7f7;
}
.equipo {
  background: #fff;
  padding: 2.5rem 0 2rem 0;
  min-height: 70vh;
}
.equipo h1 {
  color: #b71c1c;
  font-size: 1.7rem;
  margin-bottom: 2.2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}
.equipo__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.integrante {
  display: flex;
  gap: 2rem;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.integrante img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 3px solid #b71c1c;
}
.integrante__info {
  flex: 1;
  min-width: 220px;
}
.integrante__info h2 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.integrante__especialidad {
  display: inline-block;
  background: #b71c1c;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 1em;
  padding: 0.2em 1.1em;
  margin-bottom: 0.7rem;
  margin-top: 0.1rem;
}
.integrante__info p {
  color: #444;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}
.integrante__redes {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.2rem;
}
.btn-red {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 2px solid #b71c1c;
  border-radius: 50%;
  color: #b71c1c;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-red:hover {
  background: #b71c1c;
  color: #fff;
  border: 2px solid #7a6a5e;
}
@media (max-width: 700px) {
  .integrante {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0.7rem;
  }
  .equipo__list {
    gap: 1.2rem;
  }
  .integrante img {
    width: 90px;
    height: 90px;
  }
} 