:root {
  /* Paleta de Colores Clara - Este archivo solo sirve para mostrar la paleta completa*/
  --text-primary: #16a34a; /* Verde principal (más oscuro, bueno para texto) */
  --text-secondary: #3d3d3d; /* Se mantiene, es un buen gris para texto */
  --text-accent: #10b981; /* Verde más brillante para acentos (hover) */
  --background: #f9f9f9; /* Un blanco ligeramente más suave que el puro */
  --surface: #ececec; /* Blanco puro para tarjetas y secciones */
  --text: #1f2937; /* Texto principal (casi negro) */
  --text-muted: #6b7280; /* Texto secundario/gris */
  --border: #e5e7eb; /* Borde claro */
  --border-buttons: #121212;

  /* Colores Semánticos (Estándar) */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* --- Variables Estructurales (Sin cambios) --- */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.2);

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-general: 1rem 2rem;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 50%;

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}