/* Sense House — Color tokens
   Sampled directly from the brand's website screenshots. */
:root {
  /* ---- Base palette ---- */
  /* Wine / maroon — the brand's grounding dark. "casa" warmth. */
  --wine-900: #3a0620;   /* darkest — footers, deepest sections */
  --wine-800: #4c0128;   /* PRIMARY brand dark — hero, main dark bg */
  --wine-700: #62002b;   /* redder wine — alternating dark sections */
  --wine-600: #7a1440;   /* raised surfaces on dark */

  /* Magenta / hot pink — the energetic signature */
  --magenta-500: #ff00cc;  /* PRIMARY accent — buttons, FAB, links, highlights */
  --magenta-600: #e0009f;  /* pressed / darker magenta */
  --pink-400: #ff16b7;     /* bright section band ("Janela de Cases") */

  /* Electric neons — used sparingly as jolts of energy */
  --lime-400: #eaff45;     /* electric lime — accent bands, circular kinetic text */
  --yellow-400: #fff233;   /* pure yellow — "Educação" pillar */
  --orange-400: #ff9903;   /* orange — "Marketing e Performance" pillar */

  /* Cream / neutrals — the calm, editorial ground */
  --cream-50: #faf6ed;     /* PRIMARY light bg */
  --cream-100: #f3ead9;    /* deeper cream — subtle pattern fills, borders */
  --white: #ffffff;
  --ink-900: #2b0a1b;      /* warm near-black — body text on light */
  --ink-600: #5c3a4a;      /* muted body text on light */

  /* ---- Semantic aliases ---- */
  --bg-page: var(--cream-50);
  --bg-dark: var(--wine-800);
  --bg-dark-alt: var(--wine-700);
  --surface-card: var(--white);
  --surface-card-dark: var(--wine-600);
  --border-subtle: var(--cream-100);
  --border-on-dark: rgba(255,255,255,.18);

  --text-heading: var(--wine-800);
  --text-body: var(--ink-900);
  --text-muted: var(--ink-600);
  --text-inverse: var(--cream-50);
  --text-inverse-muted: rgba(250,246,237,.72);

  --accent-primary: var(--magenta-500);
  --accent-primary-hover: var(--magenta-600);
  --accent-lime: var(--lime-400);
  --accent-yellow: var(--yellow-400);
  --accent-orange: var(--orange-400);
  --link: var(--magenta-500);
  --link-hover: var(--magenta-600);

  /* Pillar accents (the 4 areas of the House) */
  --pillar-entretenimento: var(--wine-800);
  --pillar-branding: var(--magenta-500);
  --pillar-educacao: var(--yellow-400);
  --pillar-marketing: var(--orange-400);
}
