/* Estilos compartidos por aviso legal, privacidad y cookies.
   Mismos tokens que la landing. */
:root{
  --orange:#E8602A;
  --orange-cta:#C44E1F;
  --orange-deep:#A8410F;
  --orange-pale:#FFF0EB;
  --white:#FFFFFF;
  --gray-100:#F5F5F5;
  --gray-200:#E8E8E8;
  --gray-400:#6E6E6E;
  --gray-600:#5C5C5C;
  --gray-900:#1A1A1A;
  --font-display:'Playfair Display',Georgia,serif;
  --font-body:'DM Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
  --r:16px;
  --r-full:999px;
  --header-h:74px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 20px);-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);font-size:1rem;line-height:1.75;
  color:var(--gray-600);background:var(--white);
  -webkit-font-smoothing:antialiased;
}
a{color:var(--orange-cta);text-decoration:underline;text-underline-offset:3px}
a:hover{color:var(--orange-deep)}
img{max-width:100%;display:block;height:auto}
:focus-visible{outline:3px solid var(--orange-cta);outline-offset:3px;border-radius:4px}

.skip{position:absolute;left:-9999px;background:var(--gray-900);color:#fff;padding:.8rem 1.2rem;z-index:200}
.skip:focus{left:0}

.wrap{width:min(760px,100% - 2.5rem);margin-inline:auto}

/* ── Cabecera ── */
.header{
  height:var(--header-h);position:sticky;top:0;z-index:10;
  background:rgba(255,255,255,.9);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--gray-200);
}
.header__in{width:min(1160px,100% - 2.5rem);margin-inline:auto;height:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.logo{display:flex;align-items:center;gap:.7rem;text-decoration:none}
.logo__mark{width:58px;height:44px;flex-shrink:0;background:url("logo-mark.png") no-repeat center;background-size:contain}
.logo__txt b{display:block;font-weight:700;font-size:1.02rem;letter-spacing:.04em;color:var(--orange-cta);line-height:1.1}
.logo__txt span{display:block;font-size:.72rem;color:var(--gray-400);letter-spacing:.14em;text-transform:uppercase}
.back{font-size:.9rem;font-weight:700;white-space:nowrap;text-decoration:none;color:var(--orange-cta)}
.back:hover{text-decoration:underline}

/* ── Contenido ── */
main{padding:3.5rem 0 5rem}
.eyebrow{
  display:inline-block;font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--orange-deep);background:var(--orange-pale);padding:.45rem .9rem;border-radius:var(--r-full);margin-bottom:1.1rem;
}
h1{font-family:var(--font-display);font-size:clamp(1.9rem,4.5vw,2.7rem);line-height:1.15;color:var(--gray-900);margin-bottom:.8rem}
.updated{font-size:.86rem;color:var(--gray-400);margin-bottom:2.8rem;padding-bottom:1.6rem;border-bottom:1px solid var(--gray-200)}

h2{
  font-family:var(--font-display);font-size:1.45rem;color:var(--gray-900);
  margin:2.8rem 0 .9rem;line-height:1.25;
}
h3{font-family:var(--font-body);font-size:1.02rem;font-weight:700;color:var(--gray-900);margin:1.8rem 0 .5rem}
p{margin-bottom:1rem}
ul,ol{margin:0 0 1.2rem 1.3rem}
li{margin-bottom:.5rem}
strong{color:var(--gray-900);font-weight:700}

/* Tabla de datos (identificación, cookies…) */
.data{width:100%;border-collapse:collapse;margin:1.2rem 0 1.8rem;font-size:.94rem}
.data th,.data td{text-align:left;padding:.85rem 1rem;border-bottom:1px solid var(--gray-200);vertical-align:top}
.data th{width:34%;color:var(--gray-900);font-weight:700;background:var(--gray-100)}
.data tr:last-child th,.data tr:last-child td{border-bottom:none}
.table-scroll{overflow-x:auto;border:1px solid var(--gray-200);border-radius:var(--r)}

/* Marcador de dato pendiente: imposible publicar sin verlo */
.todo{
  display:inline-block;background:#FFF3CD;color:#7A5B00;
  border:1px dashed #C9A227;border-radius:6px;
  padding:.1rem .45rem;font-size:.85rem;font-weight:700;font-family:var(--font-body);
}

.note{
  background:var(--orange-pale);border-left:4px solid var(--orange);
  border-radius:0 var(--r) var(--r) 0;padding:1.3rem 1.5rem;margin:1.8rem 0;
}
.note p:last-child{margin-bottom:0}

/* ── Pie ── */
.footer{background:var(--gray-900);color:#A8A8A8;padding:2.5rem 0;font-size:.88rem}
.footer__in{width:min(1160px,100% - 2.5rem);margin-inline:auto;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.footer a{color:#A8A8A8}
.footer a:hover{color:#fff}
.footer nav{display:flex;gap:1.4rem;flex-wrap:wrap}

@media (max-width:640px){
  main{padding:2.5rem 0 3.5rem}
  .footer__in{flex-direction:column;text-align:center;align-items:center}
  .data th{width:auto}
}
