/* Centrum — Páginas legales (compartido) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif; color: #1a1a1a; background: #ffffff;
  line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased;
}

:root {
  --navy:      #1B3458;
  --navy-dk:   #0F2444;
  --green:     #2E8049;
  --green-dk:  #226939;
  --green-lt:  #E7F3EB;
  --paper:     #FBF9F4;
  --off-white: #F7F5F0;
  --ink:       #1A1A1A;
  --ink-mid:   #4a4a4a;
  --ink-soft:  #8B8B8B;
  --rule:      #E4E0D8;
}

.container { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* NAV */
nav {
  background: var(--white); border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 20px;
}
.logo {
  display: flex; align-items: center; text-decoration: none;
  height: 64px; overflow: hidden; flex-shrink: 0;
}
.logo-img {
  height: 110px; width: auto; display: block;
  flex-shrink: 0; margin-left: -8px;
}
.nav-back {
  font-size: 13px; color: var(--ink-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--green-dk); }
.nav-back svg { color: var(--green); }
@media (max-width: 600px) {
  .nav-inner { height: 56px; }
  .logo { height: 56px; }
  .logo-img { height: 96px; margin-left: -6px; }
}

/* CONTENT */
.legal-hero {
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: 56px 0 40px;
}
.legal-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--navy);
  letter-spacing: -0.015em; margin-bottom: 12px;
}
.legal-meta {
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.legal-content {
  padding: 56px 0 80px;
}
.legal-content section { margin-bottom: 40px; }
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.3;
  padding-top: 16px; border-top: 1px solid var(--rule);
}
.legal-content section:first-child h2 { padding-top: 0; border-top: none; }
.legal-content h3 {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  margin: 22px 0 8px; line-height: 1.4;
}
.legal-content p {
  font-size: 0.95rem; color: var(--ink-mid); line-height: 1.75;
  margin-bottom: 12px; font-weight: 400;
}
.legal-content ul {
  margin: 8px 0 16px 18px; color: var(--ink-mid); font-size: 0.95rem;
}
.legal-content ul li { margin-bottom: 6px; padding-left: 4px; }
.legal-content a {
  color: var(--green-dk); text-decoration: underline; font-weight: 500;
}
.legal-content a:hover { color: var(--green); }
.legal-content strong { color: var(--navy); font-weight: 600; }

.legal-data-table {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 2px; padding: 22px 24px; margin: 16px 0;
}
.legal-data-row {
  display: grid; grid-template-columns: 1fr; gap: 4px;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.legal-data-row:last-child { border-bottom: none; }
@media (min-width: 600px) {
  .legal-data-row { grid-template-columns: 200px 1fr; gap: 16px; }
}
.legal-data-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--green);
}
.legal-data-value {
  font-size: 0.95rem; color: var(--navy); font-weight: 500;
}
.pending {
  background: rgba(184,50,39,0.08); color: #B83227;
  padding: 1px 6px; border-radius: 2px;
  font-size: 0.85rem; font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--navy); padding: 48px 0 24px; color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.footer-reg { color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; }
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
}
.footer-links a:hover { color: rgba(255,255,255,0.90); }
