/* ============================================================
   Interativa — Design Tokens
   Paleta extraída da marca (logo + Instagram @interativaestetica):
   dourado champanhe + preto sobre branco/creme.
   ============================================================ */
:root {
  color-scheme: light;

  /* ---- Cor: base ---- */
  --c-white: #ffffff;
  --c-cream: #f9f5ee;
  --c-cream-deep: #f2ead9;
  --c-ink: #16130f;
  --c-ink-soft: #3a352c;
  --c-taupe: #8a8073;
  --c-taupe-light: #c9c0b0;
  --c-line: #e7ddc9;
  --c-line-strong: #d8c9a8;

  /* ---- Cor: dourado (identidade) ---- */
  --c-gold-50: #faf3e2;
  --c-gold-100: #f0dfad;
  --c-gold-300: #e0bf71;
  --c-gold-500: #c69a3f;
  --c-gold-600: #ab8130;
  --c-gold-700: #8a6524;
  --c-gold-900: #4a3612;
  --c-gold-grad: linear-gradient(135deg, #f0d999 0%, #c69a3f 45%, #96702a 100%);

  /* ---- Cor: preto profundo (identidade) ---- */
  --c-black: #0d0b08;
  --c-black-soft: #221e18;

  /* ---- Papéis semânticos ---- */
  --bg: var(--c-white);
  --bg-alt: var(--c-cream);
  --bg-dark: var(--c-black);
  --text: var(--c-ink);
  --text-muted: var(--c-taupe);
  --text-on-dark: #f4ece0;
  --text-on-dark-muted: #b3a894;
  --accent: var(--c-gold-500);
  --accent-strong: var(--c-gold-700);
  --border: var(--c-line);
  --border-strong: var(--c-line-strong);

  /* ---- Tipografia ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --font-body: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 1.9rem + 2.6vw, 3.75rem);
  --text-4xl: clamp(3rem, 2.1rem + 3.8vw, 4.75rem);

  /* ---- Espaçamento (base 4px) ---- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---- Forma ---- */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* ---- Layout ---- */
  --container-max: 1240px;
  --container-pad: clamp(20px, 5vw, 64px);

  /* ---- Sombra (uso raro e sutil) ---- */
  --shadow-soft: 0 20px 50px -25px rgba(13, 11, 8, 0.35);
  --shadow-card: 0 1px 0 rgba(13,11,8,0.04), 0 12px 30px -20px rgba(13,11,8,0.25);

  /* ---- Transições ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 220ms;
  --dur-med: 420ms;
}
