/* Contenedor fijo flotante abajo a la derecha */
.social-fixed {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Botones de redes sociales */
.btn-social {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Hover con pulso y elevación */
.btn-social:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  color: #ffffff;
}

/* Estilo Instagram */
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Estilo WhatsApp */
.whatsapp {
  background-color: #25D366;
}

/* Estilo TikTok */
.tiktok {
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.tiktok::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 28px;
  border-left: 5px solid #25f4ee;
  border-radius: 4px;
  transform: translate(-3px, -2px);
  opacity: 0.9;
  z-index: 1;
}

.tiktok::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 28px;
  border-left: 5px solid #fe2c55;
  border-radius: 4px;
  transform: translate(3px, 2px);
  opacity: 0.9;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .social-fixed {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  
  .btn-social {
    width: 48px;
    height: 48px;
  }
}