.icon-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 50;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

.icon-link.whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.25);
}

.icon-link.facebook {
  background-color: #1877f2;
}

.icon-link.facebook:hover {
  background-color: #155bb5;
  transform: scale(1.25);
}

.icon-link.instagram {
  background-color: #e4405f; 
}

.icon-link.instagram:hover {
  background-color: #c13584; 
  transform: scale(1.25);
}

.icon-link.tiktok {
  background-color: #06f3f3; 
}

.icon-link.tiktok:hover {
  background-color: #5fe4df; 
  transform: scale(1.25);
}

.icon-link img {
  width: 32px;
  height: 32px;
}
