
.profile-info *,
.profile_container{ *
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.profile-info {
  background-color: #0000FF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  width: fit-content;
  margin: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.profile-info::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 13px;
  background: linear-gradient(270deg, #00f, #8a2be2, #ff00ff, #00f);
  background-size: 600% 600%;
  animation: arcoiris 8s ease infinite;
}

@keyframes arcoiris {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.profile_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  gap: 15px;
  z-index: 1;
  cursor:pointer;
}

.caja {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.perfil-img {
  width: 30%;
  height: auto;
  margin-top: 50px;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  width: fit-content;
  margin: auto;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
}

.info-container span {
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  position: relative;
}

.ai-generated-info {
  width: 100px;
  height: auto;
  position: absolute;
  margin-top: -80px;
  z-index: 1;
}

.caja-title-info {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgb(0, 255, 234);
  animation: sombraArciris 6s ease-in-out infinite;
}

@keyframes sombraArciris {
  0% {
    box-shadow: 0 0 5px #00f, 0 0 10px #00f;
  }

  25% {
    box-shadow: 0 0 5px #8a2be2, 0 0 10px #8a2be2;
  }

  50% {
    box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
  }

  75% {
    box-shadow: 0 0 5px #8a2be2, 0 0 10px #8a2be2;
  }

  100% {
    box-shadow: 0 0 5px #00f, 0 0 10px #00f;
  }
}

.caja-title-truface {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #0000FF;
}

#caja1 {
  top: 50px;
  left: 30px;
}

#caja2 {
  top: -96px;
  right: 90px;
  z-index: 2;
}

#caja3 {
  bottom: 200px;
  left: 70px;
  z-index: 2;
}

#caja4 {
  bottom: 180px;
  right: 30px;
}

#caja1 .profile-img-info {
  position: absolute;
  top: 35px;
  left: 80px;
}

#caja2 .profile-img-info {
  position: relative;
  top: 113px;
  right: -162px;
}

#caja3 .profile-img-info {
  position: absolute;
  top: 40px;
  right: -10px;
}

#caja4 .profile-img-info {
  position: absolute;
  top: 40px;
  left: -50px;
}

.caja.tooltip-container {
  cursor: pointer;
}

.caja .tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 12px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  width: 200px;
  border: 4px solid transparent;
  animation: sombraArciris 6s ease-in-out infinite;
}

.tooltip-container:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

#caja1 .tooltip {
  left: 28%;
  top: -160%;
  transform: translateX(-50%);
}

#caja2 .tooltip {
  left: 50%;
  top: -160%;
  transform: translateX(-50%);
}

#caja3 .tooltip {
  left: 38%;
  top: 120%;
  transform: translateX(-50%);
}

#caja4 .tooltip {
  left: 60%;
  top: 120%;
  transform: translateX(-50%);
}

#caja1 .lootie-player {
  position: absolute;
  top: -30px;
  left: -35px;
}

#caja2 .lootie-player {
  position: absolute;
  top: 58px;
  right: -35px;
}

#caja3 .lootie-player {
  position: absolute;
  top: -30px;
  left: -35px;
}

#caja4 .lootie-player {
  position: absolute;
  top: -30px;
  right: -35px;
}