/*
 ESTILOS DE BOTON FLOTANTE DE WHATSAPP
*/

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.whatsapp-label {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 0.85rem;
    border-radius: 50%;
  }

  .whatsapp-label {
    display: none;
  }
}