/**
 * Moser Turismo — Design Tokens
 * Extraídos da logo original (sol laranja + onda/pássaro ciano + texto carvão).
 * Fonte: public/assets/img/brand/logo.png
 */

:root {
  /* ─── Brand (logo) ─── */
  --color-brand-primary: #00a9e0;
  --color-brand-primary-dark: #0078a8;
  --color-brand-primary-light: #e5f7fc;
  --color-brand-accent: #f7941d;
  --color-brand-accent-dark: #d97a0a;

  /* ─── Neutrals ─── */
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  --color-navy: #1a2332;
  --color-navy-light: #243447;

  /* ─── Semantic ─── */
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --color-warning: #d97706;
  --color-warning-bg: #fffbeb;
  --color-danger: #dc2626;
  --color-danger-bg: #fef2f2;
  --color-info: #0284c7;
  --color-info-bg: #f0f9ff;

  /* ─── Status pacote ─── */
  --status-disponivel: var(--color-success);
  --status-ultimas-vagas: var(--color-warning);
  --status-promocao: var(--color-danger);
  --status-lotado: var(--color-gray-500);
  --status-novo: var(--color-info);

  /* ─── Surfaces ─── */
  --color-bg: var(--color-white);
  --color-bg-subtle: var(--color-gray-50);
  --color-bg-elevated: var(--color-white);
  --color-bg-dark: var(--color-navy);
  --color-bg-darker: var(--color-gray-900);
  --color-text: var(--color-gray-800);
  --color-text-muted: var(--color-gray-500);
  --color-text-inverse: var(--color-white);
  --color-border: var(--color-gray-200);
  --color-border-strong: var(--color-gray-300);
  --color-border-inverse: rgb(255 255 255 / 0.08);

  /* ─── Typography ─── */
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-hero: clamp(2.4rem, 6.5vw, 5.25rem);

  --leading-tight: 1.12;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ─── Spacing ─── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --container-max: 1360px;
  --container-narrow: 960px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* ─── Radius ─── */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  --radius-control: 0.2rem;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
  --shadow-md: 0 4px 12px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 12px 32px rgb(15 23 42 / 0.12);
  --shadow-xl: 0 24px 48px rgb(15 23 42 / 0.16);
  --shadow-card: 0 2px 8px rgb(15 23 42 / 0.06), 0 8px 24px rgb(15 23 42 / 0.04);
  --shadow-search: 0 8px 40px rgb(15 23 42 / 0.15);

  /* ─── Motion ─── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-arrive: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* ─── Z-index ─── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-whatsapp: 450;

  /* ─── Header ─── */
  --header-height: 5.5rem;
  --header-height-scrolled: 4.75rem;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
  }
}
