/* =========================================================
   Design tokens
   ---------------------------------------------------------
   Paleta "cotton candy" — azul/branco com toques pastel.
   ========================================================= */

:root {
  /* ---- Marca: acentos e gradientes ---- */
  --color-accent-primary: #3b9eff;   /* azul */
  --color-accent-secondary: #8b7cff; /* lavanda */
  --color-accent-tertiary: #ff7eb6;  /* rosa */

  /* Gradiente dos fundos (hero / CTA) — pastel, porém vivo */
  --gradient-main: linear-gradient(135deg, #7ec8ff 0%, #b18cff 50%, #ff9ecb 100%);
  /* Acento mais saturado (botões) */
  --gradient-accent: linear-gradient(135deg, #4f86ff 0%, #9b6cff 100%);

  /* ---- Tipografia ---- */
  --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --text-sm: 0.9375rem;   /* 15px */
  --text-base: 1.125rem;  /* 18px */
  --text-lg: 1.5rem;      /* 24px */
  --text-xl: 2.25rem;     /* 36px */
  --text-2xl: 2.75rem;    /* 44px */
  --text-3xl: 3.75rem;    /* 60px */

  --weight-regular: 400;
  --weight-medium: 500;

  /* ---- Espaçamento (escala consistente) ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;

  /* ---- Layout ---- */
  --container-max: 1080px;
  --container-pad: 1.5rem;

  /* ---- Bordas e raios ---- */
  --radius-md: 12px;
  --radius-pill: 999px;
  --border-width: 1px;

  /* ---- Transições ---- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* ---- Superfícies e texto ---- */
  --color-bg: #cddef7;
  --color-surface: #dce8fb;
  --color-surface-raised: #ffffff;

  --color-border: #e3e9f5;

  --color-text-primary: #2b2f55;
  --color-text-secondary: #6b7299;
  --color-text-muted: #9aa0bd;
}
