/* Theme presets (F64) and accent colours (F65) for the public booking pages.
   Four presets, each a type pairing plus a palette geometry, selected under
   [data-preset] on the document root. Eight curated accents, selected under
   [data-acento] — there is no free colour picker. The panel (web/panel) never
   reads these attributes: it stays on the neutral system theme (F67). */

[data-preset="classica"] {
  --fonte-titulo: Georgia, "Times New Roman", serif;
  --fonte-texto: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --superficie: #f5efe3;
  --superficie-alt: #ede4d3;
  --texto: #2a2116;
  --texto-suave: #5c4f3d;
  --borda: #d8c9ac;
  --raio: 3px;
  --raio-grande: 6px;
  --sombra: 0 1px 2px rgba(42, 33, 22, 0.16);
  --acento-l: 32%;
  --acento-contraste: #fffaf1;
}

[data-preset="moderna"] {
  --fonte-titulo: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fonte-texto: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --superficie: #ffffff;
  --superficie-alt: #f2f3f5;
  --texto: #191b1f;
  --texto-suave: #565b64;
  --borda: #dde0e4;
  --raio: 14px;
  --raio-grande: 22px;
  --sombra: 0 2px 8px rgba(25, 27, 31, 0.10);
  --acento-l: 34%;
  --acento-contraste: #ffffff;
}

[data-preset="quente"] {
  --fonte-titulo: "Trebuchet MS", "Century Gothic", Verdana, sans-serif;
  --fonte-texto: -apple-system, "Segoe UI", Verdana, sans-serif;
  --superficie: #fbeee1;
  --superficie-alt: #f5ddc4;
  --texto: #3a2311;
  --texto-suave: #6b4a2c;
  --borda: #e7c9a3;
  --raio: 10px;
  --raio-grande: 18px;
  --sombra: 0 2px 6px rgba(58, 35, 17, 0.18);
  --acento-l: 30%;
  --acento-contraste: #fff6ec;
}

[data-preset="escura"] {
  --fonte-titulo: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fonte-texto: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --superficie: #181513;
  --superficie-alt: #241f1b;
  --texto: #f1ede7;
  --texto-suave: #b9b0a4;
  --borda: #3a332c;
  --raio: 8px;
  --raio-grande: 16px;
  --sombra: 0 2px 10px rgba(0, 0, 0, 0.5);
  --acento-l: 68%;
  --acento-contraste: #14110f;
}

/* Eight curated accents. Each sets only hue and saturation; the lightness
   comes from --acento-l above, tuned per preset so every accent keeps AA
   contrast against that preset's own surface. */

[data-acento="azul"]     { --acento-h: 215; --acento-s: 62%; }
[data-acento="verde"]    { --acento-h: 150; --acento-s: 40%; }
[data-acento="vermelho"] { --acento-h: 355; --acento-s: 60%; }
[data-acento="laranja"]  { --acento-h: 25;  --acento-s: 72%; }
[data-acento="roxo"]     { --acento-h: 270; --acento-s: 42%; }
[data-acento="turquesa"] { --acento-h: 188; --acento-s: 50%; }
[data-acento="rosa"]     { --acento-h: 335; --acento-s: 52%; }
[data-acento="dourado"]  { --acento-h: 40;  --acento-s: 62%; }

[data-preset][data-acento] {
  --acento: hsl(var(--acento-h) var(--acento-s) var(--acento-l));
}

/*
Computed contrast ratios (WCAG 2.1 relative-luminance formula), accent as
hsl(h s l) against the preset's own --superficie. AA for normal text requires
4.5:1; every value below clears that bar with margin.

classica  (l 32%, surface #f5efe3, luminance 0.867):
  azul 7.80 · verde 5.00 · vermelho 8.32 · laranja 6.00 ·
  roxo 9.08 · turquesa 4.99 · rosa 8.15 · dourado 4.87

moderna   (l 34%, surface #ffffff, luminance 1.000):
  azul 8.31 · verde 5.20 · vermelho 8.88 · laranja 6.30 ·
  roxo 9.77 · turquesa 5.20 · rosa 8.69 · dourado 5.06

quente    (l 30%, surface #fbeee1, luminance 0.871):
  azul 8.43 · verde 5.53 · vermelho 8.97 · laranja 6.59 ·
  roxo 9.71 · turquesa 5.53 · rosa 8.79 · dourado 5.39

escura    (l 68%, surface #181513, luminance 0.008):
  azul 7.18 · verde 10.01 · vermelho 6.37 · laranja 8.62 ·
  roxo 6.40 · turquesa 9.98 · rosa 6.67 · dourado 10.25

Worst case overall: "dourado" on "classica", 4.87:1 — still above the 4.5:1
AA threshold for normal text. Method: sRGB -> linear -> relative luminance
-> (L1 + .05) / (L2 + .05), per WCAG 2.1 formula.
*/
