.floating-socials {
  position: fixed;
  top: 80%;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.social-icon {
  background-color: #fff;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  outline: none;
  border: none;
}
.social-icon {
  border-bottom: none !important;
  text-decoration: none !important;
  outline: none;
}


.social-icon:hover,
.social-icon:focus,
.social-icon:active {
  transform: scale(1.1);
  outline: none;
  border: none;
  text-decoration: none;
  box-shadow: none;
}



.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0866ff 100%);
  color: white;
}

.whatsapp {
  background-color: #25d366;
  color: white;
}

.instagram {
  background: linear-gradient(135deg, 
    #833ab4 0%, 
    #c13584 25%, 
    #e1306c 50%, 
    #f56040 75%, 
    #fcaf45 100%);
  color: white;
}
.social-icon i {
  color: white !important;
  font-size: 1.3rem;
}

/* Variante alternativa para Instagram con degradado más fiel */
.instagram-alt {
  background: linear-gradient(45deg, 
    #ffdc80 0%, 
    #fcaf45 15%, 
    #f77737 30%, 
    #f56040 45%, 
    #fd1d1d 60%, 
    #e1306c 75%, 
    #c13584 90%, 
    #833ab4 100%);
  color: white;
}



.social-icon {
  outline: 2px solid white;
  outline-offset: 0px;
}
