/* Kavena Consulting — estilos páginas legales (standalone, sin React) */
:root {
  --bg: #09090b;
  --panel: #18181b;
  --border: #27272a;
  --text: #e4e4e7;
  --muted: #a1a1aa;
  --gold: #e8a236;
  --gold-hover: #f59e0b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "rlig" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(9, 9, 11, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 900px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav a.home {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 700;
}
.nav .logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; padding: 4px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.nav .logo-pill img { height: 36px; display: block; }
.nav a.back {
  color: var(--muted); text-decoration: none;
  font-size: 14px; transition: color .15s;
}
.nav a.back:hover { color: var(--text); }

main {
  max-width: 900px; margin: 0 auto;
  padding: 48px 24px 96px;
}

header.page {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
header.page .kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
header.page h1 {
  font-size: 40px; line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 800; margin: 12px 0 8px;
}
header.page .updated {
  color: var(--muted); font-size: 14px;
}

h2 {
  font-size: 22px; letter-spacing: -0.01em;
  margin: 40px 0 12px;
  font-weight: 700;
  color: #fff;
}
h2::before {
  content: ""; display: inline-block;
  width: 3px; height: 16px; background: var(--gold);
  margin-right: 12px; vertical-align: -2px;
  border-radius: 2px;
}
h3 { font-size: 17px; margin: 24px 0 8px; color: #fff; font-weight: 600; }
p { margin: 0 0 14px; color: var(--text); }
ul, ol { padding-left: 22px; margin: 10px 0 18px; }
li { margin-bottom: 6px; color: var(--text); }
a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gold-hover); }

.card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.card.highlight {
  border-color: rgba(232, 162, 54, 0.3);
  background: rgba(232, 162, 54, 0.05);
}

.muted { color: var(--muted); font-size: 14px; }

table {
  width: 100%; border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
th, td {
  text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }

footer.page-foot {
  max-width: 900px; margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
}
footer.page-foot a { color: var(--muted); text-decoration: none; }
footer.page-foot a:hover { color: var(--text); }

.placeholder {
  background: rgba(232, 162, 54, 0.1);
  border: 1px dashed var(--gold);
  padding: 2px 6px; border-radius: 4px;
  color: var(--gold); font-weight: 600;
}
