#universo-interactivo {
  width: 100%;
  height: 500px; /* Altura aumentada para evitar solapamiento */
  overflow-x: auto;
  white-space: nowrap;
  background: linear-gradient(to bottom, #000010, #000022);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cuerpo {
  display: inline-block;
  margin: 0 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.cuerpo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cuerpo:hover img {
  transform: scale(1.2);
}

.cuerpo.bloqueado img {
  filter: grayscale(100%) brightness(0.4);
}

.popup {
    max-width: 16ch;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    top: 140px; /* bajado un poco desde 120px */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: #1e1e3f;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  display: none;
  z-index: 10;
}
