
/* Contenedor fijo */
.social-fixed {
  position: fixed;
  top: 60px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

/* Estilo de los enlaces */
.social-fixed a {
  background: #fff;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Colores al pasar el mouse */
.social-fixed a:hover {
  transform: scale(1.1);
}

.social-fixed a.facebook:hover { background: #1877f2; color: #fff; }
.social-fixed a.twitter:hover { background: #000; color: #fff; }
.social-fixed a.instagram:hover { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
  #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}