/* =========================
   THEME VARIABLES
========================= */

:root {
  --primary-color: #F28C28;

  --bg-color: #ffffff;
  --card-bg: #f5f5f5;
  --text-primary: #111111;
  --text-secondary: #555555;
  --border-color: #e5e5e5;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);

  --transition-fast: 0.3s ease;
}

/* DARK MODE */
html[data-theme="dark"] {
  --bg-color: #0f0f0f;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: #2a2a2a;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ============================= */
/* TEMA CLARO (PADRÃO)           */
/* ============================= */

:root {
  --bg-color: #ffffff;
  --text-color: #111111;
  --card-bg: #f4f4f4;
}

/* ============================= */
/* TEMA ESCURO                   */
/* ============================= */

[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --card-bg: #1e1e1e;
}

