/* Gooey Effect */
.gooey-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gooey-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease, background 250ms ease;
  cursor: pointer;
  overflow: visible;
}

/* Animación Gooey */
.gooey-icon:hover {
  transform: scale(1.5);
  animation: gooeyEffect 300ms ease-in-out;
  background: rgba(255, 165, 0, 0.3);
}

/* Texto flotante sobre los iconos */
.gooey-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
}

.gooey-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

@keyframes gooeyEffect {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.7, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}
