@charset "UTF-8";

/* src/styles.scss */
:root {
  --brand-900: #10233f;
  --brand-800: #16305a;
  --brand-700: #1b3a6b;
  --brand-600: #22518f;
  --brand-500: #2f6fb0;
  --brand-400: #5b93cc;
  --brand-100: #e6eef8;
  --brand-050: #f2f6fc;
  --ink: #16202e;
  --ink-2: #3d4a5c;
  --muted: #6b7684;
  --faint: #98a2b1;
  --bg: #eef1f5;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --surface-3: #eff3f8;
  --border: #dde3ec;
  --border-strong: #c4cedb;
  --ok: #1f9d6b;
  --ok-bg: #e5f6ee;
  --ok-border: #a9e0c6;
  --warn: #b9770f;
  --warn-bg: #fbf1dd;
  --warn-border: #efd39a;
  --danger: #c0392b;
  --danger-bg: #fbeae7;
  --danger-border: #f0c3bb;
  --info: var(--brand-600);
  --info-bg: var(--brand-100);
  --a-affirme: #1f9d6b;
  --a-nie: #c0392b;
  --a-suspecte: #b9770f;
  --a-antecedent: #5a6b86;
  --r-xs: 4px;
  --r-sm: 6px;
  --r: 9px;
  --r-lg: 14px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(16, 35, 63, 0.06), 0 1px 3px rgba(16, 35, 63, 0.05);
  --shadow-2: 0 2px 8px rgba(16, 35, 63, 0.08), 0 6px 18px rgba(16, 35, 63, 0.06);
  --shadow-pop: 0 8px 30px rgba(16, 35, 63, 0.16);
  --ring: 0 0 0 3px rgba(47, 111, 176, 0.32);
  --header-h: 56px;
  --font:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    sans-serif;
  --mono:
    ui-monospace,
    "SF Mono",
    "Cascadia Mono",
    Menlo,
    Consolas,
    monospace;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-sm);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-weight: 550;
  font-size: 13px;
  white-space: nowrap;
  transition:
    background 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}
.btn:hover {
  background: var(--surface-2);
  border-color: var(--faint);
}
.btn-primary {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}
.btn-ghost {
  border-color: transparent;
  background: transparent;
}
.btn-ghost:hover {
  background: var(--surface-3);
}
.btn-sm {
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
.btn-icon {
  width: 34px;
  padding: 0;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  background: var(--surface-3);
  color: var(--ink-2);
  border: 1px solid transparent;
  white-space: nowrap;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.muted {
  color: var(--muted);
}
.mono {
  font-family: var(--mono);
  font-size: 0.9em;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--faint);
  background-clip: content-box;
}
.page {
  width: 100%;
  padding: 28px 24px 56px;
}
.page-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.page-head h1 {
  font-size: 22px;
}
.page-head p {
  margin-top: 4px;
  font-size: 14px;
}
.sec-title {
  font-size: 15px;
  margin-bottom: 6px;
}
.illus {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 13px;
  border-radius: var(--r);
  background: var(--info-bg);
  border: 1px solid var(--brand-400);
  color: var(--brand-700);
  font-size: 12.5px;
  font-weight: 550;
}
.illus svg {
  flex: 0 0 auto;
  margin-top: 1px;
}
@media print {
  body {
    background: #fff;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
