/* Floating WhatsApp button — default site contact action */
#ags-whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#ags-whatsapp-fab:hover,
#ags-whatsapp-fab:focus-visible {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  outline: none;
}

#ags-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  display: block;
}

#ags-whatsapp-fab .bi-whatsapp {
  width: 30px;
  height: 30px;
}

@media (max-width: 767px) {
  #ags-whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  #ags-whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}
