/* Overrides propios sobre Consulo */

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  z-index: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
  opacity: 0;
  animation: wa-fade-in .4s ease 3s forwards;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  color: #fff;
}
@keyframes wa-fade-in {
  to { opacity: 1; }
}
@media (max-width: 768px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
