/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* Social Media Fixed Icons */
.social-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-fixed .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-fixed .icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  color: white;
}

.social-fixed .whatsapp {
  background-color: #25D366;
}

.social-fixed .whatsapp:hover {
  background-color: #1ebe57;
  color: white;
}

.social-fixed .instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-fixed .instagram:hover {
  background: linear-gradient(45deg, #d87e2c 0%, #cf5a31 25%, #c41f38 50%, #b41d5a 75%, #a5147a 100%);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-fixed {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }
  
  .social-fixed .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
