/* Tema Claro (padrão) */
[data-theme="light"] {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg: #ffffff;
  --bg-secondary: #f9fafb;
  --text: #111827;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

/* Tema Escuro */
[data-theme="dark"] {
  --primary: #818cf8;
  --primary-dark: #6366f1;
  --primary-light: #a5b4fc;
  --success: #34d399;
  --danger: #f87171;
  --warning: #fbbf24;
  --bg: #111827;
  --bg-secondary: #1f2937;
  --text: #f9fafb;
  --text-secondary: #9ca3af;
  --border: #374151;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-lg: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .header {
  background-color: rgba(17, 24, 39, 0.95);
}

[data-theme="dark"] .auth-container {
  background: linear-gradient(135deg, #1f2937, #111827);
}

/* Animação de transição de tema */
* {
  transition-property: background-color, color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Exceções para elementos que não devem ter transição */
input,
textarea,
button,
.btn {
  transition: all 0.2s;
}
