/* Widget de contacto flotante — reemplazable por agente IA sin tocar el resto del sitio */
#la-chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9990;
  pointer-events: none;
}

.la-chat-widget__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.la-chat-widget__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.la-chat-widget__btn:focus-visible {
  outline: 2px solid var(--blue, #052c4d);
  outline-offset: 3px;
}

.la-chat-widget__btn svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

@media (max-width: 600px) {
  #la-chat-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .la-chat-widget__btn {
    width: 3.5rem;
    height: 3.5rem;
  }

  .la-chat-widget__btn svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .la-chat-widget__btn {
    transition: none;
  }

  .la-chat-widget__btn:hover {
    transform: none;
  }
}
