:root {
  --bg: #faf7f2;
  --bg-tint: #f3eee6;
  --surface: #ffffff;
  --ink: #1f1d1b;
  --ink-soft: #4d4945;
  --muted: #7a746d;
  --line: #e4ddd2;
  --dark: #1c1a24;

  --magenta: #d6336c;
  --orange: #f09a2e;
  --teal: #5fbfb6;
  --violet: #6b3fc4;
  --gradient: linear-gradient(100deg, var(--violet), var(--magenta) 35%, var(--orange) 65%, var(--teal));

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-brand: "Oswald", "Arial Narrow", sans-serif;

  --radius: 14px;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 500; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--magenta);
  margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 36em; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(214, 51, 108, .6); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-bird { width: 44px; height: 44px; object-fit: contain; }
.brand-word { font-family: var(--font-brand); font-weight: 400; font-size: 1.6rem; letter-spacing: .22em; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-size: .92rem; color: var(--ink-soft); position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--gradient); transition: width .25s;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav-cta { padding: .5em 1.2em; border-radius: 999px; background: var(--ink); color: #fff !important; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .25s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero { padding: 72px 0 96px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: auto -20% -60% 40%; height: 120%;
  background: radial-gradient(closest-side, rgba(95, 191, 182, .18), transparent 70%),
              radial-gradient(closest-side at 30% 60%, rgba(214, 51, 108, .12), transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.hero-art img { width: 100%; max-width: 460px; margin-left: auto; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(-1.5deg); } }

/* Sections */
.section { padding: 96px 0; }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--dark); color: #f1ede6; }
.section-dark .eyebrow { color: var(--teal); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.prose p { color: var(--ink-soft); }
.prose a { color: var(--magenta); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -20px rgba(31, 29, 27, .35); }
.card:hover::before { opacity: 1; }
.card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.card-num { font-family: var(--font-brand); color: var(--muted); letter-spacing: .1em; font-size: .85rem; display: block; margin-bottom: 1rem; }

/* Activities */
.activities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.activity { border-top: 1px solid var(--line); padding-top: 20px; }
.activity:nth-child(1) { border-top-color: var(--magenta); }
.activity:nth-child(2) { border-top-color: var(--orange); }
.activity:nth-child(3) { border-top-color: var(--teal); }
.activity:nth-child(4) { border-top-color: var(--violet); }
.activity ul { list-style: none; margin: 0; padding: 0; }
.activity li { color: var(--ink-soft); font-size: .95rem; padding: 6px 0; }

/* Values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value h3 { font-size: 1.15rem; }
.value p { color: #b9b3ab; font-size: .95rem; }
.value::before { content: ""; display: block; width: 36px; height: 2px; background: var(--gradient); margin-bottom: 18px; }

/* Steps */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.steps li strong { color: var(--ink); font-weight: 500; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  border: 1px solid var(--line);
  background: var(--surface);
}

/* Facts */
.facts { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.facts li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; font-size: .95rem; }
.facts span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }

/* Contact */
.address { font-style: normal; color: var(--ink-soft); margin-top: 1.5rem; line-height: 1.8; }
.address a { color: var(--magenta); }
.contact-form { display: grid; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-form label { display: grid; gap: 6px; font-size: .88rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 400; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(95, 191, 182, .2); }
.contact-form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; color: var(--ink-soft); }
.contact-form .check input { margin-top: 5px; }
.contact-form .btn { justify-self: start; }
.form-note { font-size: .9rem; color: var(--muted); margin: 0; min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 24px; font-size: .9rem; color: var(--ink-soft); }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-end; }
.footer-logo { width: 220px; height: auto; margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--magenta); }
.copyright { margin-top: 32px; font-size: .8rem; color: var(--muted); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art img { animation: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .activities, .values { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 1320px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 24px 24px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; font-size: 1rem; }
  .nav-cta { margin-top: 8px; width: auto !important; }
}
@media (max-width: 820px) {
  .hero { padding: 40px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 220px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .cards, .activities, .values, .facts { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
}

/* Federación */
.ferm-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 1.5rem; }
.ferm-links a { font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; }

/* Blog: listado */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }
.section-head-row h2 { margin-bottom: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card a {
  display: flex; flex-direction: column; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-decoration: none; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.post-card a::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.post-card a:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -20px rgba(31, 29, 27, .35); }
.post-card h3 { font-size: 1.35rem; }
.post-card p { color: var(--ink-soft); font-size: .95rem; }
.post-meta { font-size: .78rem !important; text-transform: uppercase; letter-spacing: .1em; color: var(--muted) !important; }
.read-more { margin-top: auto; font-weight: 500; font-size: .9rem; color: var(--magenta); }

.page-hero { padding: 72px 0 24px; }
.section-tight { padding-top: 32px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.filter {
  font: inherit; font-size: .88rem; padding: .45em 1.1em; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); cursor: pointer;
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { width: 100%; }

/* Blog: entrada */
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.post-header { padding: 64px 24px 32px; }
.post-header h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.back-link { display: inline-block; margin-bottom: 2rem; font-size: .9rem; color: var(--muted); text-decoration: none; }
.back-link:hover { color: var(--magenta); }
.post-body { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); padding-bottom: 32px; }
.post-body h2 { font-size: 1.7rem; color: var(--ink); margin-top: 2.2em; }
.post-body a { color: var(--magenta); }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body ul { padding-left: 1.2em; }
.post-body li { margin-bottom: .6em; }
.post-body li::marker { color: var(--magenta); }
.post-footer { padding-bottom: 96px; }

@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .post-grid { grid-template-columns: 1fr; }
  .container-narrow { padding: 0 16px; }
  .post-header { padding: 40px 16px 24px; }
}

/* ---------- Páginas interiores ---------- */
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.toc a { font-size: .85rem; text-decoration: none; padding: .4em 1em; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink-soft); }
.toc a:hover { border-color: var(--ink); color: var(--ink); }

.note { margin-top: 32px; font-size: .95rem; color: var(--muted); max-width: 760px; }
.note a, .card a, .commit a, .muted a { color: var(--magenta); }
.two-col-spaced { margin-top: 80px; }
.prose h3 { margin-top: 1.6em; font-size: 1.15rem; }
.prose ul { padding-left: 1.2em; color: var(--ink-soft); }
.prose li { margin-bottom: .5em; }
.prose-dark p { color: #cfc9c0; }
.prose-dark em { color: #fff; }
.link-light { color: var(--teal); font-weight: 500; text-decoration: none; }
.link-light:hover { text-decoration: underline; }

/* Bloques numerados (forma de trabajar) */
.blocks { display: grid; gap: 0; }
.block { position: relative; padding: 40px 0 40px 72px; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.block:last-child { border-bottom: 0; }
.block-num { position: absolute; left: 0; top: 46px; font-family: var(--font-brand); font-size: .9rem; letter-spacing: .1em; color: var(--magenta); }
.block h2 { font-size: 1.7rem; }
.block p, .block li { color: var(--ink-soft); }
.block ul { padding-left: 1.2em; }
.block li { margin-bottom: .6em; }
.block a { color: var(--magenta); }

/* Equipo */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.person p { color: var(--ink-soft); margin: 0; }
.person .role { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--magenta); margin-bottom: 12px; }

/* Siguiente página */
.next-step { padding: 56px 0; }
.next-step .eyebrow { margin-bottom: .5rem; }
.next-link { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; text-decoration: none; }
.next-link:hover { color: var(--magenta); }

/* Inicio: cuatro preguntas */
.answers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.answer { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.answer:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -20px rgba(31, 29, 27, .35); }
.answer-q { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: .8rem; }
.answer p { color: var(--ink-soft); font-size: .93rem; }
.ferm-badge { margin-top: 2rem; font-size: .88rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.ferm-badge::before { content: ""; width: 24px; height: 2px; background: var(--gradient); }
.ferm-badge a { color: var(--ink); }

/* Buenas prácticas */
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.commit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.commit h3 { font-size: 1.05rem; margin-bottom: .4em; }
.commit p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.rights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rights h3 { font-size: 1.15rem; padding-top: 16px; border-top: 2px solid var(--magenta); }
.rights > div:nth-child(2) h3 { border-top-color: var(--orange); }
.rights > div:nth-child(3) h3 { border-top-color: var(--teal); }
.rights ul { padding-left: 1.1em; margin: 0; }
.rights li { color: var(--ink-soft); font-size: .93rem; margin-bottom: .6em; }

/* Estudios */
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 28px 32px; max-width: 860px; }
.callout h2 { font-size: 1.5rem; }
.callout p { color: var(--ink-soft); }
.callout p:last-child { margin: 0; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-decoration: none; transition: border-color .2s, transform .2s; }
.resource:hover { border-color: var(--ink); transform: translateY(-2px); }
.resource h3 { font-size: 1.1rem; margin: .4em 0; }
.resource p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.resource-org { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--magenta); }
.study-group { margin-top: 48px; }
.study-group[hidden] { display: none; }
.group-title { font-size: 1.5rem; margin-bottom: .3em; }
.study-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.study { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; }
.study h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; line-height: 1.4; margin: 0 0 .5em; }
.study h3 a { text-decoration: none; }
.study h3 a:hover { color: var(--magenta); text-decoration: underline; }
.study h3 a::after { content: " ↗"; color: var(--muted); font-size: .85em; }
.study p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.study .study-meta { font-size: .8rem; color: var(--muted); margin-bottom: .4em; }

/* Footer */
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-cols .footer-links { flex-direction: column; gap: 8px; }
.footer-ferm { font-size: .85rem; }
.footer-ferm a { color: var(--magenta); }
.form-hint { font-size: .85rem; color: var(--muted); margin: -4px 0 0; }

@media (max-width: 960px) {
  .answers, .commit-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .rights { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .answers, .commit-grid, .resource-grid, .team { grid-template-columns: 1fr; }
  .block { padding-left: 0; padding-top: 56px; }
  .block-num { top: 28px; }
  .callout { padding: 22px; }
}

.callout-inline { margin: 1.5rem 0; padding: 22px 24px; }
.callout-inline h3 { margin-top: 0; font-size: 1.1rem; }
.callout-inline a { color: var(--magenta); }
.lead-note { background: var(--bg-tint); border-radius: 10px; padding: 14px 18px; font-size: .95rem; }

/* Visor del Código Ético */
.doc-viewer { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 85vh; min-height: 560px; }
.doc-viewer iframe { width: 100%; height: 100%; border: 0; display: block; }
.doc-fallback { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.doc-fallback a { color: var(--magenta); }
#codigo-etico { scroll-margin-top: 72px; }

.prose-dark-p { color: #cfc9c0; max-width: 720px; }
.resource-grid-dark .resource { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #f1ede6; }
.resource-grid-dark .resource p { color: #b9b3ab; }
.resource-grid-dark .resource-org { color: var(--teal); }
.resource-grid-dark .resource:hover { border-color: var(--teal); }

/* Marca con nombre completo */
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .brand-word { font-size: 1.35rem; }
.brand-sub { font-family: var(--font-brand); font-weight: 300; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; white-space: nowrap; }

@media (max-width: 420px) { .brand-sub { font-size: .58rem; letter-spacing: .04em; } .brand-bird { width: 36px; height: 36px; } }

/* Código Ético (texto) */
.code-source { font-size: .92rem; color: var(--muted); border-left: 3px solid var(--magenta); padding-left: 12px; margin-bottom: 2rem; }
.code-text { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 40px; color: var(--ink-soft); line-height: 1.75; }
.code-section { font-family: var(--font-brand); font-weight: 400; text-transform: uppercase; letter-spacing: .12em; font-size: .95rem; color: var(--ink); margin: 2.2em 0 1em; }
.code-list { padding-left: 2em; margin: 0; }
.code-list li { margin-bottom: .9em; padding-left: .3em; }
.code-list li::marker { color: var(--magenta); font-weight: 600; }
.code-list a { color: var(--magenta); }
.code-footnote { font-size: .85rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 2em; }
@media (max-width: 560px) { .code-text { padding: 22px 18px; } .code-list { padding-left: 1.6em; } }

/* Páginas legales */
.legal h2 { scroll-margin-top: 90px; }
.legal h3 { font-size: 1.15rem; color: var(--ink); margin-top: 1.8em; }
.data-list { list-style: none; padding: 0 !important; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.data-list li { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 12px 18px; margin: 0 !important; border-bottom: 1px solid var(--line); }
.data-list li:last-child { border-bottom: 0; }
.data-list li::marker { content: none; }
.data-list span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding-top: 3px; }
.form-legal { font-size: .78rem; line-height: 1.55; color: var(--muted); margin: 0; }
.form-legal a { color: var(--magenta); }
@media (max-width: 560px) { .data-list li { grid-template-columns: 1fr; gap: 2px; } }

/* Selector de idioma */
.lang-switch { display: inline-flex; gap: 2px; margin-left: 4px; font-size: .78rem; letter-spacing: .06em; }
.lang-switch a, .lang-switch span { padding: 4px 6px; border-radius: 6px; text-decoration: none; }
.lang-switch a { color: var(--muted); }
.lang-switch a::after { display: none; }
.lang-switch a:hover { color: var(--ink); background: var(--bg-tint); }
.lang-switch span { color: var(--ink); font-weight: 600; }
@media (max-width: 1320px) { .lang-switch { margin: 12px 0 0; } .nav .lang-switch a { width: auto; padding: 6px 10px; } }

.nav a { white-space: nowrap; }
@media (min-width: 1321px) { .nav { gap: 20px; } }

.site-header .container { max-width: 1320px; }
