/* ============================================================
   Enfermeras Integrales — Sistema de diseño
   Dirección: cálida y humana (azul de marca + acentos cálidos)
   ============================================================ */

:root {
  /* Marca */
  --blue-900: #0B1E5B;
  --blue-700: #1E2F7A;
  --blue:     #2B4196;   /* azul principal de marca */
  --blue-500: #3B57B8;
  --sky:      #58B9E6;   /* azul claro de marca */
  --sky-soft: #E8F4FB;

  /* Acentos cálidos */
  --amber:    #F4A24C;
  --amber-600:#E8893A;
  --coral:    #F5836A;
  --warm-bg:  #FBF6EF;   /* fondo crema cálido */

  /* Neutros */
  --ink:      #1C2333;
  --muted:    #5B6478;
  --line:     #E7E9F0;
  --surface:  #FFFFFF;
  --bg:       #F7F8FB;

  /* Tipografía */
  --font: 'Lexend', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(16,24,64,.06), 0 2px 8px rgba(16,24,64,.05);
  --shadow-md: 0 8px 24px rgba(16,24,64,.10);
  --shadow-lg: 0 22px 60px rgba(16,24,64,.16);

  --radius:   18px;
  --radius-lg:26px;
  --maxw:     1180px;

  --grad-blue:  linear-gradient(120deg, var(--blue) 0%, var(--sky) 100%);
  --grad-warm:  linear-gradient(120deg, var(--amber) 0%, var(--coral) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.01em; color: var(--blue-900); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(56px, 8vw, 110px) 0; }

/* ---------- Etiquetas / eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: var(--sky-soft);
  padding: 7px 15px; border-radius: 999px;
}
.eyebrow.warm { color: var(--amber-600); background: #FCEEDD; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 12px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 48px; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-warm { background: var(--grad-warm); color: #fff; box-shadow: 0 8px 22px rgba(244,131,106,.32); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(244,131,106,.4); }
.btn-ghost { background: #fff; color: var(--blue); border: 1.6px solid var(--line); }
.btn-ghost:hover { border-color: var(--sky); color: var(--blue-700); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; transition: color .15s, background .15s; position: relative;
}
.nav-links a:hover { color: var(--blue); background: var(--sky-soft); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--blue); border-radius: 10px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,30,91,.5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82%, 340px);
  background: #fff; padding: 26px 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-panel .mp-head img { height: 34px; }
.mobile-panel .mp-close { background: var(--sky-soft); border: none; border-radius: 10px; padding: 8px; cursor: pointer; color: var(--blue); }
.mobile-panel a.mp-link {
  font-size: 1.12rem; font-weight: 500; padding: 14px 12px; border-radius: 12px; color: var(--ink);
}
.mobile-panel a.mp-link:hover, .mobile-panel a.mp-link.active { background: var(--sky-soft); color: var(--blue); }
.mobile-panel .mp-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--blue-900); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,30,91,.92) 0%, rgba(30,47,122,.78) 42%, rgba(11,30,91,.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(64px,11vw,128px) 0; max-width: 660px; }
.hero h1 { color: #fff; margin: 18px 0 18px; }
.hero h1 .accent { color: var(--amber); }
.hero p.lead { color: rgba(255,255,255,.9); font-size: clamp(1.05rem,1.6vw,1.25rem); margin-bottom: 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-trust .ht { color: #fff; }
.hero-trust .ht b { display: block; font-size: 1.7rem; font-weight: 700; line-height: 1; }
.hero-trust .ht span { font-size: .9rem; color: rgba(255,255,255,.78); }

/* ============================================================
   FRANJA DE CONFIANZA
   ============================================================ */
.trustbar { background: var(--blue); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; padding-block: 18px; }
.trustbar .ti { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; font-size: .98rem; }
.trustbar .ti svg { width: 20px; height: 20px; color: var(--sky); flex: none; }

/* ============================================================
   GRID DE TARJETAS GENÉRICAS
   ============================================================ */
.section-head { max-width: 640px; margin: 0 auto clamp(38px,5vw,58px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sky-soft); color: var(--blue); margin-bottom: 18px;
}
.card .ic.warm { background: #FCEEDD; color: var(--amber-600); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; font-size: 1.22rem; }
.card p { font-size: .98rem; }

/* ============================================================
   SERVICIOS (tarjetas con imagen)
   ============================================================ */
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-media .tag {
  position: absolute; left: 16px; top: 16px; background: rgba(255,255,255,.94);
  color: var(--blue); font-weight: 600; font-size: .8rem; padding: 6px 13px; border-radius: 999px;
}
.svc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-body h3 { font-size: 1.3rem; }
.svc-body p { font-size: .97rem; flex: 1; }
.svc-body .svc-link { color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.svc-body .svc-link svg { width: 17px; height: 17px; transition: transform .18s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ============================================================
   SPLIT (imagen + texto)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 18px; }
.split-body p { font-size: 1.05rem; margin-bottom: 16px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checklist li svg { width: 22px; height: 22px; color: var(--sky); flex: none; margin-top: 2px; }

/* ============================================================
   POR QUÉ NOSOTROS (destacados con imagen)
   ============================================================ */
.feat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; }
.feat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat-card::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,30,91,.92) 0%, rgba(11,30,91,.4) 50%, rgba(11,30,91,.05) 100%); }
.feat-card .fc-body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.feat-card .fc-body .fc-ico { width: 46px; height: 46px; background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.3); border-radius: 12px; display:grid; place-items:center; margin-bottom: 14px; backdrop-filter: blur(4px); }
.feat-card .fc-body .fc-ico svg { width: 24px; height: 24px; color: #fff; }
.feat-card .fc-body h3 { color: #fff; font-size: 1.2rem; line-height: 1.3; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testi-band { background: var(--warm-bg); }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testi .stars { color: var(--amber); display: flex; gap: 2px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi p { color: var(--ink); font-size: 1rem; line-height: 1.6; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sky-soft); }
.testi .who b { display: block; color: var(--blue-900); font-size: .98rem; }
.testi .who span { font-size: .85rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--grad-blue); padding: clamp(40px,6vw,68px); text-align: center; }
.cta-band::before { content:''; position:absolute; width:380px; height:380px; right:-90px; top:-140px; background: rgba(88,185,230,.35); border-radius: 50%; filter: blur(10px); }
.cta-band::after { content:''; position:absolute; width:260px; height:260px; left:-80px; bottom:-120px; background: rgba(244,162,76,.28); border-radius: 50%; filter: blur(8px); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   PAGE HEADER (subpáginas)
   ============================================================ */
.page-head { position: relative; overflow: hidden; background: var(--blue-900); }
.page-head .ph-bg { position: absolute; inset: 0; }
.page-head .ph-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-head .ph-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(95deg, rgba(11,30,91,.9) 0%, rgba(30,47,122,.74) 55%, rgba(11,30,91,.4) 100%); }
.page-head .container { position: relative; z-index: 2; padding: clamp(60px,9vw,110px) 22px; }
.page-head .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.page-head h1 { color: #fff; margin: 16px 0 14px; max-width: 760px; }
.page-head p { color: rgba(255,255,255,.88); font-size: 1.12rem; max-width: 580px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step .num { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-blue); color: #fff; font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { font-size: .95rem; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px,4vw,48px); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: border-color .2s, box-shadow .2s; }
.contact-item:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); }
.contact-item .ci-ic { width: 50px; height: 50px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--sky-soft); color: var(--blue); }
.contact-item.wa .ci-ic { background: #E4F7EC; color: #16A34A; }
.contact-item .ci-ic svg { width: 24px; height: 24px; }
.contact-item small { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .74rem; }
.contact-item .ci-val { font-size: 1.18rem; font-weight: 600; color: var(--blue-900); word-break: break-word; }
.contact-item .ci-sub { font-size: .9rem; color: var(--muted); }

/* Formulario */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card .fc-sub { margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s; min-height: 50px;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(88,185,230,.18);
}
.field .err { color: var(--coral); font-size: .85rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .fs-ico { width: 66px; height: 66px; border-radius: 50%; background: #E4F7EC; color: #16A34A; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .fs-ico svg { width: 34px; height: 34px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 1.05rem; color: var(--blue-900); padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; color: var(--blue); flex: none; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 1rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 24px 14px; }
.stat b { display: block; font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat span { color: var(--muted); font-weight: 500; font-size: .95rem; }

/* ============================================================
   VALUES / NOSOTROS
   ============================================================ */
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.value-card .vc-ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: var(--grad-warm); color: #fff; }
.value-card .vc-ic svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: .98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-900); color: #fff; padding-top: clamp(48px,7vw,76px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 46px; }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 540px){ .footer-top { grid-template-columns: 1fr; } }
.footer .f-logo { height: 42px; margin-bottom: 18px; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,.78); font-size: .96rem; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a:hover { color: var(--sky); }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; margin-top: 3px; }
.footer .pay { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.footer .pay img { height: 30px; background: #fff; border-radius: 6px; padding: 4px 7px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .fb-links a { font-size: .88rem; }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* Animaciones de entrada */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* Prosa legal */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.prose p, .prose li { color: var(--ink); margin-bottom: 12px; line-height: 1.7; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose .updated { color: var(--muted); font-size: .92rem; margin-bottom: 24px; }
