/* ---------- Modern UI Variables ---------- */
:root {
  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Color Palette - Sophisticated & High Contrast */
  --navy: #0F172A; /* Slate 900 */
  --navy-2: #1E293B; /* Slate 800 */
  --brand: #2563EB; /* Blue 600 */
  --brand-dark: #1D4ED8; /* Blue 700 */
  --brand-light: #EFF6FF; /* Blue 50 */
  --stamp: #DC2626; /* Red 600 */
  --stamp-dark: #B91C1C; /* Red 700 */
  --stamp-light: #FEF2F2; /* Red 50 */
  --paper: #F8FAFC; /* Slate 50 */
  --paper-alt: #FFFFFF; /* White */
  --ink: #334155; /* Slate 700 */
  --ink-soft: #64748B; /* Slate 500 */
  --line: #E2E8F0; /* Slate 200 */
  --line-dark: #334155; /* Slate 700 */
  --green: #059669; /* Emerald 600 */
  --green-light: #ECFDF5; /* Emerald 50 */

  /* Shadows - Depth & Premium Feel */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-brand: 0 4px 14px 0 rgba(37, 99, 235, 0.39);

  /* Border Radius - Modern & Smooth */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Spacing - Increased Whitespace */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
}

/* ---------- Base Styles ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- Layout & Utilities ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-mark { display: flex; align-items: center; gap: 12px; }
.brand-mark .seal {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--stamp-light);
  border: 1.5px solid var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--stamp);
  flex-shrink: 0;
}
.brand-mark strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  letter-spacing: -0.01em;
}
.brand-mark span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-soft);
}
nav.links { display: flex; gap: 32px; }
nav.links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
nav.links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.menu-toggle { display: none; background: none; border: none; padding: 8px; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-ghost:hover {
  border-color: var(--line-dark);
  background: var(--paper);
}
.btn-on-dark {
  background: #fff;
  color: var(--navy);
}
.btn-on-dark:hover {
  background: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 80% 0%, var(--navy-2), var(--navy) 60%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: var(--brand-light);
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 18px;
  color: #94A3B8;
  max-width: 48ch;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-actions .link-secondary {
  font-size: 15px;
  font-weight: 600;
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}
.hero-actions .link-secondary:hover {
  color: #fff;
  border-color: #fff;
}

/* Signature element: stamped document card */
.doc-card-holder { position: relative; display: flex; justify-content: center; }
.doc-card {
  background: #fff;
  color: var(--ink);
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.doc-card:hover {
  transform: rotate(0deg) translateY(-5px);
}
.doc-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.doc-card .doc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.doc-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
}
.doc-line {
  height: 8px;
  border-radius: 4px;
  background: var(--paper);
  margin-bottom: 12px;
}
.doc-line.w1 { width: 100%; }
.doc-line.w2 { width: 85%; }
.doc-line.w3 { width: 60%; }
.doc-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.doc-foot .art {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.stamp-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--stamp);
  color: var(--stamp);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.2);
}
.stamp-badge .big { font-size: 14px; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
  gap: 24px;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-item .ico {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--brand-light);
  padding: 8px;
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
}
.trust-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.trust-item small {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- Sections ---------- */
section { padding: 120px 0; }
.section-alt { background: var(--paper-alt); }
.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 40px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

/* Qué es: definition grid */
.def-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.def-intro p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}
.def-intro img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
}
.def-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.def-item {
  background: #fff;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  transition: background 0.2s ease;
}
.def-item:hover { background: var(--paper); }
.def-item .num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.def-item h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.def-item p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* Obligados grid */
.oblig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.oblig-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.oblig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.oblig-card .ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.oblig-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}
.oblig-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.oblig-card.wide { grid-column: span 1; }

/* Normativa - article style */
.norm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.art-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.art-card:hover { box-shadow: var(--shadow-md); }
.art-card .art-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  background: var(--brand-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.art-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}
.art-card p {
  font-size: 15px;
  color: var(--ink-soft);
}
.sanciones {
  background: var(--stamp-light);
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 8px;
}
.sanciones .art-tag {
  background: #FEE2E2;
  color: var(--stamp-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}
.sanciones h3 {
  color: var(--stamp-dark);
  font-size: 20px;
  margin-bottom: 16px;
}
.sanciones-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sanciones-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.sanciones-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.sanciones-table tr:last-child td { border-bottom: none; }
.sanciones small {
  display: block;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

/* Beneficios */
.benef-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.benef-card {
  text-align: left;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.benef-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.benef-card .ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benef-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.benef-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* Implementar - transición simple */
.implementar {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-xl);
}
.implementar h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 16px;
}
.implementar p {
  color: #94A3B8;
  font-size: 18px;
  max-width: 52ch;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item:hover { background-color: var(--paper); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 16px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: transform 0.3s ease;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item[open] .faq-q .plus {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: rotate(180deg);
}
.faq-item[open] .faq-q .plus::before { background: var(--brand); }
.faq-item[open] .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  padding: 0 16px 32px;
  max-width: 68ch;
}
.faq-a p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
details.faq-item summary { list-style: none; cursor: pointer; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* Por qué elegir */
.why-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.why-block h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}
.why-block p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.why-block p:last-of-type { margin-bottom: 40px; }

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, var(--brand) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.cta-final .eyebrow {
  color: var(--brand-light);
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}
.cta-final p {
  color: #E2E8F0;
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand .brand-mark strong { color: #fff; }
.foot-brand .brand-mark span { color: #94A3B8; }
.foot-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: #94A3B8;
  max-width: 40ch;
  line-height: 1.6;
}
footer h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}
footer ul li { margin-bottom: 12px; }
footer a {
  font-size: 15px;
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover { color: #fff; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom small {
  font-size: 13px;
  color: #64748B;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .oblig-card, .benef-card, .art-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .benef-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  nav.links { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .doc-card-holder { margin-top: 32px; }
  .def-layout { grid-template-columns: 1fr; gap: 48px; }
  .oblig-grid { grid-template-columns: repeat(2, 1fr); }
  .norm-grid { grid-template-columns: 1fr; }
  .benef-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .implementar { grid-template-columns: 1fr; text-align: left; padding: 56px 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  .oblig-grid { grid-template-columns: 1fr; }
  .benef-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; padding: 24px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .stamp-badge { width: 80px; height: 80px; font-size: 10px; top: -16px; right: -16px; }
  .hero { padding: 80px 0 100px; }
  .implementar { padding: 48px 24px; border-radius: var(--radius); }
  .doc-card { padding: 24px; }
  .sanciones { padding: 24px; }
}
