/* ============================================================================
   TOKENS.CSS — Manso Fishing Resort Design Tokens
   Fonte: brand/brandbook.yaml + content/design-system.md
   ============================================================================ */

:root {
  /* ─── Colors ─── */
  --color-primary: #1B2D5B;
  --color-secondary: #3BBCB5;
  --color-accent: #E8943A;
  --color-dark: #0F1A3A;
  --color-light: #F7F5F0;
  --color-white: #FFFFFF;
  --color-text: #1B2D5B;
  --color-text-muted: #6B7A99;
  --color-success: #2D8F5E;
  --color-border: #D9D5CC;
  --color-whatsapp: #25D366;

  /* ─── Typography ─── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* ─── Font Sizes ─── */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-hero: 4rem;

  /* ─── Font Weights ─── */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* ─── Spacing (4px base) ─── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.5rem;
  --space-10: 3rem;
  --space-11: 4rem;
  --space-12: 5rem;
  --space-13: 6rem;
  --space-14: 7.5rem;
  --space-15: 10rem;

  /* ─── Borders & Radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 3px rgba(15, 26, 58, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 26, 58, 0.12);
  --shadow-lg: 0 8px 32px rgba(15, 26, 58, 0.16);
  --shadow-hero: 0 16px 64px rgba(15, 26, 58, 0.24);

  /* ─── Transitions ─── */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-hero: 800ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ─── Layout ─── */
  --container-max: 1200px;
  --container-wide: 1440px;
  --header-height: 80px;

  /* ─── Z-Index ─── */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-fab: 400;
}

/* ─── Responsive Token Overrides ─── */
@media (max-width: 768px) {
  :root {
    --text-hero: 2rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --header-height: 64px;
  }
}
