:root {
  /* Cores de marca */
  --color-red: #d6262c;
  --color-red-dark: #b31e23;
  --color-red-soft: #fdecec;
  --color-orange: #f0871f;
  --color-orange-soft: #fef0e2;
  --color-graphite: #2e2e32;
  --color-graphite-soft: #5b5b60;
  --color-gray-100: #f5f5f7;
  --color-gray-200: #ededf0;
  --color-gray-300: #dcdce0;
  --color-white: #ffffff;

  /* Texto */
  --text-heading: var(--color-graphite);
  --text-body: #45454a;
  --text-muted: var(--color-graphite-soft);
  --text-on-dark: #f2f2f4;
  --text-on-dark-muted: #b7b7bd;

  /* Tipografia */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(23, 23, 26, 0.06);
  --shadow-card: 0 14px 32px rgba(23, 23, 26, 0.12), 0 2px 8px rgba(23, 23, 26, 0.06);
  --shadow-md: 0 16px 36px rgba(23, 23, 26, 0.16);
  --shadow-lg: 0 26px 58px rgba(23, 23, 26, 0.2);
  --shadow-red: 0 12px 28px rgba(214, 38, 44, 0.28);

  /* Movimento */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.8s;

  /* Navbar */
  --nav-height: 84px;
}
