/* UVOYA — estilos complementarios a Tailwind (CDN).
   Solo lo que Tailwind no cubre directamente. */

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

/* Contenido de las páginas legales (Aviso legal, Términos, Privacidad, Cookies) */
.prose-legal h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-legal p { margin-bottom: 0.5rem; }
.prose-legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 0.5rem; }
.prose-legal li { margin-bottom: 0.4rem; }
.prose-legal strong { color: #e5e5e5; font-weight: 600; }
.prose-legal .placeholder-tag {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  padding: 1px 7px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92em;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
