/* =========================================================
   Botón flotante WhatsApp MiRed
   ========================================================= */

.mired-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mired-whatsapp-float:hover,
.mired-whatsapp-float:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.mired-whatsapp-float img {
  width: 34px;
  height: 34px;
  display: block;
}

/* Responsive */
@media screen and (max-width: 736px) {
  .mired-whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .mired-whatsapp-float img {
    width: 31px;
    height: 31px;
  }
}