/* Indicadores visuales modernos e intuitivos para iconos de redes y contacto */
.social-cue, .contact-cue {
  position: absolute;
  left: 50%;
  top: 112%;
  transform: translate(-50%, 0) scale(0.85);
  min-width: 140px;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, rgba(60,30,140,0.93) 0%, rgba(34,21,80,0.98) 80%);
  border-radius: 1.3rem;
  padding: 0.54rem 1.9rem 0.54rem 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 36px 0 rgba(80,0,120,0.23), 0 2px 10px 0 rgba(0,0,0,0.19);
  backdrop-filter: blur(12px) saturate(1.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.68,-0.55,.27,1.55),
              transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 120;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
  border: 1.5px solid rgba(255,255,255,0.13);
}

.social-cue__arrow, .contact-cue__arrow {
  display: inline-block;
  margin-left: 0.7em;
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
  opacity: 0.93;
  animation: arrow-float 1.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes arrow-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-0.32em); }
  100% { transform: translateY(0); }
}

@media (max-width: 600px) {
  .social-cue, .contact-cue {
    font-size: 0.98rem;
    min-width: 90px;
    max-width: 98vw;
    padding: 0.38rem 0.9rem 0.38rem 0.6rem;
  }
}

  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, 0) scale(0.85);
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #fff;
  background: rgba(34, 21, 80, 0.80);
  border-radius: 1rem;
  padding: 0.45rem 1.1rem 0.45rem 0.8rem;
  margin-top: 0.4rem;
  box-shadow: 0 6px 32px 0 rgba(80,0,120,0.19), 0 1.5px 6px 0 rgba(0,0,0,0.11);
  backdrop-filter: blur(6px) saturate(1.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.68,-0.55,.27,1.55),
              transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 120;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.social-icon-link:hover .social-cue,
.social-icon-link:focus .social-cue,
.contact-link:hover .contact-cue,
.contact-link:focus .contact-cue {
  opacity: 1;
  transform: translate(-50%, 0) scale(1.08);
  animation: pop-cue 0.38s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes pop-cue {
  0% { transform: translate(-50%, 0) scale(0.7); opacity: 0; }
  60% { transform: translate(-50%, -10%) scale(1.13); opacity: 1; }
  100% { transform: translate(-50%, 0) scale(1.08); opacity: 1; }
}

.social-cue__icon, .contact-cue__icon {
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  margin-right: 0.32em;
  filter: drop-shadow(0 2px 6px rgba(80,0,120,0.19));
  transition: filter 0.2s, color 0.2s;
}
.social-icon-link:hover .social-cue__icon,
.social-icon-link:focus .social-cue__icon,
.contact-link:hover .contact-cue__icon,
.contact-link:focus .contact-cue__icon {
  color: #f472b6;
  filter: drop-shadow(0 0 8px #f472b6);
  animation: cue-bounce 0.5s;
}

@keyframes cue-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.25) rotate(-10deg); }
  60% { transform: scale(0.92) rotate(7deg); }
  100% { transform: scale(1) rotate(0); }
}

.social-icon-link {
  transition: transform 0.22s cubic-bezier(.68,-0.55,.27,1.55);
}
.social-icon-link:hover {
  transform: scale(1.18) rotate(-8deg);
  z-index: 130;
}
.contact-link {
  transition: transform 0.22s cubic-bezier(.68,-0.55,.27,1.55);
}
.contact-link:hover {
  transform: scale(1.10) rotate(3deg);
  z-index: 130;
}
