/* Hoja compartida por las páginas institucionales: /privacy, /terms y
   /support. No depende de styles.css, que es del landing y se reorganiza
   en cada rediseño; acá solo repetimos los tokens que se usan. */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --green:        #16A34A;
  --green-bright: #22C55E;
  --bg:           #0F172A;
  --navy:         #0A1628;
  --card:         #1E293B;
  --text:         #F1F5F9;
  --text-soft:    #C3CEDD;
  --text-muted:   #8FA0B5;
  --line:         rgba(255, 255, 255, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-bright); }
a:focus-visible, .brand:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.top {
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; padding: 18px 0; }
.brand img { display: block; height: 34px; width: auto; }
.volver { font-size: .93rem; font-weight: 600; text-decoration: none; }
.volver:hover { text-decoration: underline; }

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

main { padding: clamp(36px, 6vw, 64px) 0 clamp(56px, 8vw, 88px); }

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}

.fecha { margin: 0 0 34px; font-size: .92rem; color: var(--text-muted); }

h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--text);
}

h3 {
  margin: 26px 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

p { margin: 0 0 16px; }
ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }
strong { color: var(--text); font-weight: 700; }

.aviso {
  margin: 0 0 36px;
  padding: 18px 20px;
  border: 1px solid rgba(251, 191, 36, .30);
  border-left-width: 3px;
  border-left-color: #FBBF24;
  border-radius: 12px;
  background: rgba(251, 191, 36, .07);
  font-size: .95rem;
}
.aviso p:last-child { margin-bottom: 0; }

.caja {
  margin: 0 0 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}
.caja p:last-child, .caja ul:last-child { margin-bottom: 0; }

footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--text-muted);
}
footer a { color: var(--text-soft); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
