/* Sabiduría de Bolsillo — paleta tomada de src/render/quote_card.py
   para que el sitio y las tarjetas sean la misma marca. */

:root {
  --oro-oscuro: #96722d;
  --oro: #bf9b4e;
  --oro-claro: #d6b774;
  --crema: #f7f1e4;
  --crema-honda: #eee4d0;
  --tinta: #2c261c;

  --fondo: var(--crema);
  --superficie: #fffdf7;
  --texto: var(--tinta);
  --texto-tenue: #6b6152;
  --borde: #e0d5bd;
  --acento: var(--oro-oscuro);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-tema="claro"]) {
    --fondo: #1a1712;
    --superficie: #221e17;
    --texto: #ede5d6;
    --texto-tenue: #a89c86;
    --borde: #3a3327;
    --acento: var(--oro-claro);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--fondo);
  color: var(--texto);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.envoltorio {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

/* ---- Cabecera ---- */

header.marca {
  background: linear-gradient(180deg, var(--oro-claro), var(--oro-oscuro));
  color: var(--crema);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

header.marca .escudo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(247, 241, 228, 0.45);
}

header.marca h1 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
}

header.marca p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---- Texto ---- */

h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.35;
  margin: 3rem 0 0.9rem;
  color: var(--texto);
}

h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: var(--acento);
  margin-top: 0.7rem;
}

h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
}

p, li { color: var(--texto); }
strong { font-weight: 500; }

a {
  color: var(--acento);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { text-decoration-thickness: 2px; }

.tenue {
  color: var(--texto-tenue);
  font-size: 0.9rem;
}

/* ---- Bloques ---- */

.tarjeta {
  background: var(--superficie);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin: 1.75rem 0;
}

.tarjeta h3 { margin-top: 0; }
.tarjeta > :last-child { margin-bottom: 0; }

.envoltorio-tabla { overflow-x: auto; margin: 1.75rem 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 34rem;
}

th, td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--borde);
  vertical-align: top;
}

th {
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--texto-tenue);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: var(--crema-honda);
  padding: 0.12em 0.42em;
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-tema="claro"]) code { background: #2e2820; }
}

ol, ul { padding-left: 1.3rem; }
li { margin: 0.4rem 0; }

/* ---- Navegación entre documentos ---- */

nav.documentos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2.5rem 0 0;
}

nav.documentos a {
  border: 1px solid var(--borde);
  background: var(--superficie);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--texto);
}

nav.documentos a:hover { border-color: var(--acento); color: var(--acento); }

footer {
  margin-top: 4.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--borde);
  color: var(--texto-tenue);
  font-size: 0.86rem;
}
