/* Pagatucoche.com base styles */
/* Dark mode default + light mode opt-in via [data-theme="light"] */
:root[data-theme="light"]{
  --bg: #ffffff;
  --bg-secondary: #f3f4f6;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --accent: #f59e0b;
}
:root[data-theme="light"] body{background:var(--bg)!important;color:var(--text)!important}
:root[data-theme="light"] header{background:var(--bg-secondary)!important;border-bottom-color:var(--border)!important}
:root[data-theme="light"] header a{color:var(--text)!important}
:root[data-theme="light"] footer{background:var(--bg-secondary)!important;color:var(--text-muted)!important;border-top-color:var(--border)!important}
:root[data-theme="light"] main, :root[data-theme="light"] article{color:var(--text)}
:root[data-theme="light"] h1, :root[data-theme="light"] h2, :root[data-theme="light"] h3{color:#0f172a!important}
:root[data-theme="light"] [style*="background:#1f2a3f"]{background:var(--bg-secondary)!important;color:var(--text)!important}
:root[data-theme="light"] [style*="background:#0a0f1c"]{background:var(--bg-secondary)!important}
:root[data-theme="light"] [style*="color:#cbd5e1"]{color:var(--text-muted)!important}
:root[data-theme="light"] [style*="color:#94a3b8"]{color:var(--text-muted)!important}
:root[data-theme="light"] [style*="color:#fff"]:not([style*="background:"]){color:var(--text)!important}
.theme-toggle{position:fixed;bottom:140px;right:18px;background:#1f2a3f;color:#fbbf24;border:1px solid #fbbf24;width:48px;height:48px;border-radius:50%;cursor:pointer;font-size:18px;z-index:998;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,0.3)}
:root[data-theme="light"] .theme-toggle{background:#fff;color:#0f172a;border-color:#0f172a}


/* === A11Y enhancements (Fase V) === */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@media (prefers-contrast: high) {
  body { background: #000 !important; color: #fff !important; }
  a { color: #ff0 !important; text-decoration: underline !important; }
}
*:focus-visible { outline: 3px solid #fbbf24 !important; outline-offset: 2px !important; }

/* Print styles */
@media print {
  body { background: #fff !important; color: #000 !important; }
  header, footer, nav, .sticky-cta-bar, .theme-toggle { display: none !important; }
  a { color: #000 !important; text-decoration: underline !important; }
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 0.8em; }
  main { max-width: 100% !important; padding: 0 !important; }
}
