/* Styles shared by the three legal pages (aviso-legal, privacidad, cookies).
   Plain CSS on purpose: no build step needed to edit these pages. */
:root { --ink: #0A0A0A; --go: #35F06E; --paper: #F3F2EE; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: #fff; color: var(--ink); font-size: 1.0625rem; line-height: 1.6;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 0 1.25rem; }
.site-header { background: #000; color: #fff; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; padding-bottom: .75rem; }
.brand { font-family: "Barlow Semi Condensed", Barlow, sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; text-decoration: none; }
.brand span { color: var(--go); }
.back { color: #fff; font-weight: 600; padding: .5rem 0; }
h1, h2 { font-family: "Barlow Semi Condensed", Barlow, sans-serif; font-weight: 600; }
main.wrap { padding-top: 2.5rem; padding-bottom: 4rem; }
h1 { font-size: clamp(2.25rem, 7vw, 3.25rem); line-height: 1.02; margin: 0 0 .5rem; }
.updated { margin: 0 0 1.5rem; color: rgba(10,10,10,.65); }
h2 { font-size: 1.6rem; line-height: 1.15; margin: 2.25rem 0 .5rem; padding-top: 1.25rem; border-top: 1px solid rgba(10,10,10,.2); }
p, li { color: rgba(10,10,10,.88); }
ul { padding-left: 1.25rem; }
li { margin: .25rem 0; }
a { color: var(--ink); text-decoration-color: var(--go); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.data { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; padding: 1rem 1.25rem; margin: 1rem 0; }
.data p { margin: .25rem 0; }
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: .98rem; }
th, td { border: 1px solid rgba(10,10,10,.25); padding: .6rem .7rem; text-align: left; vertical-align: top; }
th { background: var(--paper); }
mark { background: #fff3a3; color: var(--ink); padding: 0 .2em; border-radius: 3px; }   /* text still to be filled in */
.site-footer { background: #000; color: rgba(255,255,255,.75); padding: 1.5rem 0; font-size: .9375rem; }
.site-footer p { color: rgba(255,255,255,.7); margin: .5rem 0 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0 1.25rem; }
.site-footer a { color: #fff; font-weight: 600; padding: .5rem 0; display: inline-block; }
:focus-visible { outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 2px #000; }
