/*
 * Dimagro — design tokens
 * Convertidos desde src/styles.css (oklch) del proyecto Lovable a hex.
 */
:root {
  --radius: 0.75rem;

  --background: #ffffff;
  --foreground: #161d14;

  --card: #ffffff;
  --card-foreground: #161d14;

  /* verde hoja (Dimagro) */
  --primary: #3ba93a;
  --primary-foreground: #fbfcf9;
  --primary-dark: #126714;

  /* verde oliva suave */
  --secondary: #eaf1e4;
  --secondary-foreground: #1b3b21;

  --muted: #f4f4ee;
  --muted-foreground: #5a6054;

  --accent: #e4edcc;
  --accent-foreground: #153c1d;

  /* tierra / beige */
  --earth: #e3cead;
  --earth-foreground: #3e290f;

  --destructive: #e7000b;
  --destructive-foreground: #fef2f2;

  --border: #dddfd7;
  --input: #dddfd7;
  --ring: #3a8f4c;

  --gradient-green: linear-gradient(135deg, var(--primary-dark), var(--primary));
  --shadow-soft: 0 8px 24px -12px rgba(30, 66, 36, 0.28);
  --shadow-card: 0 14px 40px -18px rgba(30, 66, 36, 0.35);

  --container-max: 72rem; /* max-w-6xl */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}
