/* Piratas do Amor — Color tokens
   Base palette from the official "Paleta de cores". Everything else is derived. */
:root {
  /* ---- Brand palette (from brand guide) ---- */
  --pda-black: #000000;        /* PRETO */
  --pda-gold: #e2b758;         /* LARANJA AMARELADO — the signature heart */
  --pda-teal: #3b9088;         /* CIANO */
  --pda-blue: #579cce;         /* AZUL CIANO */
  --pda-blue-deep: #236887;    /* AZUL CIANO ESCURO */
  --pda-coral: #ff9c89;        /* ROSA */
  --pda-red: #ce3030;          /* VERMELHO */

  /* ---- Ink & paper (warm neutral ramp) ---- */
  --pda-ink: #17130d;          /* near-black warm ink for body text */
  --pda-cream: #fbf4e4;        /* paper / eye-white cream */
  --pda-paper: #f3e8d0;        /* deeper paper tint */
  --pda-white: #ffffff;

  --neutral-0:   #ffffff;
  --neutral-50:  #f7f1e6;
  --neutral-100: #ece2cf;
  --neutral-200: #d9cbb1;
  --neutral-300: #bcaa8b;
  --neutral-400: #97856a;
  --neutral-500: #6f5f48;
  --neutral-600: #514535;
  --neutral-700: #383026;
  --neutral-800: #241f18;
  --neutral-900: #17130d;

  /* ---- Tints for washes / illustration fills over B&W photos ---- */
  --gold-tint: #f6e6bd;
  --teal-tint: #cfe3df;
  --blue-tint: #d5e6f2;
  --coral-tint: #ffe1d8;
  --red-tint: #f3cccc;

  /* ---- Semantic surfaces ---- */
  --bg-page: var(--pda-cream);
  --bg-surface: var(--pda-white);
  --bg-raised: var(--neutral-50);
  --bg-ink: var(--pda-ink);        /* dark sections & photo overlays */
  --bg-sunk: #100c07;

  /* ---- Semantic text ---- */
  --text-strong: var(--pda-ink);
  --text-body: #2c2419;
  --text-muted: #6f5f48;
  --text-faint: #97856a;
  --text-on-dark: var(--pda-cream);
  --text-on-dark-muted: #c8b48c;

  /* ---- Semantic accents ---- */
  --accent: var(--pda-gold);           /* primary brand accent */
  --accent-ink: #8a6a1e;               /* readable gold on light */
  --accent-rosa: var(--pda-coral);     /* rosa — favored soft/romantic accent */
  --accent-rosa-ink: #c25e46;          /* readable rosa on light (text) */
  --accent-secondary: var(--pda-red);  /* passion / CTA emphasis */
  --accent-ocean: var(--pda-blue-deep);
  --accent-wave: var(--pda-teal);

  /* rosa surfaces */
  --bg-rosa: var(--coral-tint);        /* soft rosa section wash */

  /* ---- Lines & borders ---- */
  --border-ink: var(--pda-ink);
  --border-strong: #2c2419;
  --border-soft: var(--neutral-200);
  --border-hair: rgba(23,19,13,0.12);

  /* ---- Status ---- */
  --success: var(--pda-teal);
  --info: var(--pda-blue);
  --warning: var(--pda-gold);
  --danger: var(--pda-red);

  /* ---- Focus ---- */
  --focus-ring: rgba(87,156,206,0.55);
}
