/* assets/css/whatsapp.css */

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-toggle {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-toggle:hover {
  transform: scale(1.1);
}

.whatsapp-toggle i {
  color: #fff;
  font-size: 28px;
}

.whatsapp-menu {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: slideUp 0.4s ease forwards;
}

.wa-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInItem 0.4s forwards;
}

.wa-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
}

.wa-item-content {
  display: flex;
  flex-direction: column;
}

.wa-item-content strong {
  font-size: 14px;
  color: #333;
}

.wa-item-content a {
  font-size: 13px;
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2px;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
