/*
 :root {
  --primary-color:#4c4c4c;    
  --accent-color: #d4edda;    
  --secondary-color: #FFEEDB;   
  --bg-color: white;          
  --text-color: #3A3A3A;
  --gray-light: #ddd;
} 
*/

/* tokens.css */
:root{
  /* Brand / acción */
  --primary: #22c55e;          /* verde acción */
  --primary-600: #16a34a;
  --primary-700: #15803d;
  --primary-100: #dcfce7;

  /* Neutros */
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;

  /* Feedback */
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #38bdf8;

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);

  /* Escala 8px */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;

  /* Inputs */
  --focus-ring: 0 0 0 4px rgba(34,197,94,.18);
}

/* Dark mode por atributo (toggle) */
html[data-theme="dark"]{
  --bg: #0b1220;
  --surface: #0f172a;
  --surface-2: #111c33;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --border: rgba(148,163,184,.20);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.40);

  --focus-ring: 0 0 0 4px rgba(34,197,94,.25);
}

/* Fallback opcional si no seteás data-theme */
@media (prefers-color-scheme: dark){
  html:not([data-theme]){
    --bg: #0b1220;
    --surface: #0f172a;
    --surface-2: #111c33;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --border: rgba(148,163,184,.20);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.35);
    --shadow-md: 0 10px 30px rgba(0,0,0,.40);
    --focus-ring: 0 0 0 4px rgba(34,197,94,.25);
  }
}
