/* Shared styles for the public ResumenVDP pages (/bienvenida, /privacidad, /terminos).
   Served same-origin outside the app bundle: the site CSP allows only
   self-hosted styles, so there are no external fonts or stylesheets here. */

:root { color-scheme: light; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fafaf9;
  color: #292524;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1c1917;
}

.brand img { display: block; width: 2rem; height: 2rem; }

h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1917;
}

h2 {
  margin: 2.25rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1c1917;
}

.lead { margin: 0; font-size: 1.125rem; color: #44403c; }

p { margin: 0.75rem 0; }

ul, ol { margin: 0.75rem 0; padding-left: 1.4rem; }

li { margin: 0.35rem 0; }

a { color: #c2410c; text-decoration: underline; text-underline-offset: 3px; }

a:hover { color: #9a3412; }

a:focus-visible { outline: 2px solid #ea580c; outline-offset: 2px; border-radius: 2px; }

.cta {
  display: inline-block;
  margin: 1rem 0 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: #ea580c;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.cta:hover { background: #c2410c; color: #ffffff; }

.note {
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid #ea580c;
  border-radius: 0 0.5rem 0.5rem 0;
  background: #fff7ed;
}

.table-wrap { overflow-x: auto; }

table { width: 100%; margin: 1rem 0; border-collapse: collapse; font-size: 0.9375rem; }

th, td { padding: 0.5rem 0.75rem; border-bottom: 1px solid #e7e5e4; text-align: left; vertical-align: top; }

th { color: #1c1917; }

code {
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
  background: #f5f5f4;
  font-size: 0.9em;
}

.meta { font-size: 0.875rem; color: #57534e; }

.footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e7e5e4;
  font-size: 0.875rem;
  color: #57534e;
}

.footer p { margin: 0.35rem 0; }

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.inline-links li { margin: 0; }
