/* Paginas de texto (privacidad, eliminar cuenta): mismos colores y tipografia que index.html. */
:root {
  --deep: #0A2251;
  --blue: #19459C;
  --cyan: #56C8E2;
  --panel: #F2F6FC;
  --ink: #020617;
  --muted: #334155;
  --faint: #64748B;
  --line: #DCE4F0;
  --wrap: 760px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 400 17px/1.7 Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); }
h1, h2, h3 { font-family: Outfit, Inter, system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.2; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }

header {
  color: #fff;
  background: linear-gradient(160deg, var(--blue) 0%, var(--deep) 70%, #061634 100%);
  padding: 22px 0 48px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.brand span { font: 700 20px/1 Outfit, sans-serif; letter-spacing: -0.01em; }
header h1 { font-size: clamp(32px, 6vw, 44px); margin: 40px 0 8px; }
header p { margin: 0; color: rgba(255,255,255,.75); font-size: 15px; }

main { padding: 40px 0 64px; }
main h2 { font-size: 24px; margin: 40px 0 10px; }
main h3 { font-size: 18px; margin: 24px 0 6px; }
main p, main li { color: var(--muted); }
main ul, main ol { padding-left: 22px; }
main li { margin: 6px 0; }
main strong { color: var(--ink); }

.summary {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 6px 22px;
}
.summary li { margin: 10px 0; }

table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 12px 0; }
th, td { text-align: left; vertical-align: top; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); }
th { font-family: Outfit, Inter, sans-serif; color: var(--ink); font-weight: 600; }
td { color: var(--muted); }
.table-scroll { overflow-x: auto; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding-left: 44px; margin: 14px 0; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--deep); color: #fff;
  font: 700 15px/30px Outfit, sans-serif; text-align: center;
}
.mail {
  display: inline-block; margin-top: 4px; padding: 10px 18px; border-radius: 999px;
  background: var(--deep); color: #fff; text-decoration: none; font-weight: 600;
}

footer { background: #061634; color: rgba(255,255,255,.6); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 28px; padding-bottom: 28px; }
footer a { color: rgba(255,255,255,.8); text-decoration: none; }
footer a:hover { color: #fff; }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
