/* ============================================================
   Bompadre Arquitectura — hoja de estilos de produccion
   Direccion de diseño "Monumental". Tokens del handoff.
   ============================================================ */

:root {
  --bg:        #0b0d0e;
  --fg:        #f2f4f3;
  --body:      #c8cecd;
  --label:     #9aa3a4;
  --muted:     #6b7475;
  --line:      #1e2325;
  --border:    #3a4143;
  --accent:    #35e0dc;
  --accent-hi: #7deeeb;
  /* El <meta viewport> lleva viewport-fit=cover, asi que en iPhone con
     notch el contenido puede quedar debajo del recorte en horizontal.
     El gutter nunca baja del area segura. */
  --gutter:    max(clamp(20px, 5vw, 128px),
                   env(safe-area-inset-left, 0px),
                   env(safe-area-inset-right, 0px));
  --display:   'Josefin Sans', 'Trebuchet MS', sans-serif;
  --text:      'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mark:      'Aldrich', 'Courier New', monospace;

  /* Escala tipografica fluida.
     Antes todo frenaba cerca de los 1440px y en monitores grandes el
     diseño quedaba chico y perdido. Ahora crece con el viewport y recien
     topea en 4K. Un solo lugar para ajustar el conjunto. */
  --fs-h1:     clamp(30px, 6.2vw, 176px);
  --fs-h2:     clamp(28px, 4vw,   76px);
  --fs-h2-xl:  clamp(32px, 6vw,  116px);
  --fs-title:  clamp(24px, 3.4vw, 62px);
  --fs-lead:   clamp(16px, 1.05vw, 24px);
  --fs-body:   clamp(15px, 0.95vw, 21px);
  --fs-label:  clamp(12px, 0.78vw, 17px);
  --fs-micro:  clamp(11px, 0.68vw, 15px);
  --fs-num:    clamp(36px, 2.6vw, 68px);
  --fs-zona:   clamp(20px, 2.6vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Safari iOS no siempre respeta el overflow-x del body */
  overflow-x: hidden;
  /* Sin esto iOS agranda el texto solo al girar a horizontal */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--text);
  font-weight: 400;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a { color: var(--accent); }
a:hover { color: var(--accent-hi); }

/* Link que no se nota: hereda el color del texto y no lleva subrayado.
   Solo se revela al pasar el mouse. */
.link-plano {
  color: inherit; text-decoration: none;
  transition: color .2s ease;
}
.link-plano:hover, .link-plano:focus-visible { color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Salto al contenido — accesibilidad de teclado */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--bg); color: var(--accent);
  padding: 12px 18px; border: 1px solid var(--accent);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Utilidades tipograficas ---------- */

.kicker {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.kicker-line {
  display: inline-block; width: clamp(40px, 3vw, 88px); height: 1px;
  background: var(--accent); flex: none;
}
.kicker-text {
  margin: 0; min-width: 0;
  font-size: var(--fs-label); letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--label);
}

h2.h2 {
  margin: 0 0 clamp(40px, 4vw, 88px);
  font-family: var(--display); font-weight: 600;
  font-size: var(--fs-h2);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.1;
}
.dot { color: var(--accent); }

.section { padding: clamp(72px, 6.6vw, 168px) var(--gutter) clamp(40px, 3.4vw, 84px); }
.section--tight { padding: clamp(56px, 5vw, 128px) var(--gutter) clamp(72px, 6.6vw, 168px); }
.section--ruled { border-top: 1px solid var(--line); }

/* ---------- Botones subrayados ---------- */

.btn {
  font-family: var(--display); font-weight: 600;
  letter-spacing: 0.04em; font-size: var(--fs-lead);
  text-decoration: none; display: inline-block;
  padding-bottom: 6px; background: none;
  transition: color .2s ease, border-color .2s ease;
}
.btn--primary { color: var(--fg); border-bottom: 2px solid var(--accent); }
.btn--primary:hover { color: var(--accent); }
.btn--ghost { color: var(--label); border-bottom: 2px solid var(--border); }
.btn--ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-row {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: baseline;
}

/* ---------- Nav ---------- */

.nav {
  display: flex; align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding: 26px var(--gutter);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.lockup {
  display: flex; align-items: center; gap: 12px; margin-right: auto;
  color: var(--fg); text-decoration: none;
}
.logo-frame {
  border: 1px solid var(--border); padding: 6px 9px;
  display: flex; align-items: center; gap: 5px; position: relative;
}
.logo-frame::before, .logo-frame::after {
  content: ''; position: absolute; width: 6px; height: 6px;
}
.logo-frame::before {
  top: -3px; left: -3px;
  border-top: 1px solid var(--accent); border-left: 1px solid var(--accent);
}
.logo-frame::after {
  bottom: -3px; right: -3px;
  border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent);
}
.logo-b { font-family: var(--mark); font-size: var(--fs-label); line-height: 1; }
.logo-bar { width: 1px; height: 1.05em; background: var(--accent); }
.logo-a { font-family: var(--mark); font-size: var(--fs-label); line-height: 1; color: var(--accent); }
.wordmark {
  font-family: var(--mark); font-size: var(--fs-label);
  letter-spacing: 0.18em; text-transform: uppercase;
}

.nav-link {
  font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--label);
  transition: color .2s ease;
  padding: 6px 0;
}
.nav-link:hover { color: var(--accent); }

.lang-btn {
  font-family: var(--text); font-size: var(--fs-label);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); background: none;
  border: 1px solid var(--border); padding: 10px 16px;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: color .2s ease, border-color .2s ease;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav .btn { font-size: var(--fs-label); padding-bottom: 4px; }

/* ---------- Primera pantalla ----------
   Nav + hero ocupan exactamente el alto del viewport en cualquier
   dispositivo. Se usa min-height (nunca height) para que el contenido
   nunca quede cortado: si no entra, la pantalla crece y scrollea.
   100dvh contempla las barras dinamicas del navegador en mobile. */

.screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ---------- Hero ---------- */

.hero {
  flex: 1 0 auto;                 /* se estira hasta llenar la pantalla */
  display: flex;
  flex-direction: column;
  justify-content: center;        /* contenido centrado verticalmente */
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  background-image: radial-gradient(rgba(242,244,243,0.09) 1.2px, transparent 1.2px);
  background-size: 88px 88px;
}
.hero-rule {
  position: absolute; left: calc(var(--gutter) / 2); top: 0; bottom: 0; width: 1px;
  background: linear-gradient(rgba(53,224,220,0), rgba(53,224,220,0.7), rgba(53,224,220,0));
}
.rotulo {
  position: absolute; right: calc(var(--gutter) - 18px); top: 50%; transform: translateY(-50%);
  margin: 0;
  writing-mode: vertical-rl;
  font-size: var(--fs-micro); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted);
  max-height: 60dvh; overflow: hidden;
}

/* Marcas "+" interactivas (easter egg) */
.plus {
  position: absolute; color: rgba(53,224,220,0.45);
  font-weight: 300; font-size: 20px; line-height: 1;
  cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;      /* hit target tactil */
  /* Por encima de .hero-inner (z-index 1): cuando el contenido crecia,
     su caja tapaba las marcas y se comian el hover y el click. */
  z-index: 2;
  transition: color .2s ease;
}
/* Respuesta visual garantizada por CSS: funciona aunque el JS falle o el
   usuario tenga activado "reducir movimiento", que desactiva la animacion. */
.plus:hover, .plus:focus-visible { color: var(--accent); }
.plus--tl { top: 4px;  left: calc(var(--gutter) - 12px); }
.plus--br { bottom: 4px; right: calc(var(--gutter) - 12px); }
.plus--tr { top: 4px;  right: calc(var(--gutter) - 12px); }

.hero-inner {
  position: relative; z-index: 1;
  animation: rise .7s ease-out;
  /* Los items flex traen min-width:auto y se niegan a achicarse por debajo
     de su contenido: sin esto el texto se desborda y se corta en mobile. */
  min-width: 0; max-width: 100%;
}

.hero .kicker { gap: 18px; margin-bottom: clamp(24px, 2.4vw, 52px); }
.hero .kicker-line { width: clamp(56px, 5vw, 132px); animation: drawline 1s ease-out; }

h1.h1 {
  margin: 0;
  font-family: var(--display); font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.04; letter-spacing: 0.06em;
  text-transform: uppercase;
}
h1.h1 .h1-accent { color: var(--accent); font-weight: 600; }

.hero-foot {
  display: flex; flex-wrap: wrap; gap: clamp(32px, 3.4vw, 80px);
  align-items: flex-end; margin-top: clamp(36px, 3.4vw, 84px);
}
.hero-foot > * { min-width: 0; }
.lead {
  margin: 0; max-width: min(52ch, 100%);
  font-size: var(--fs-lead); line-height: 1.7; font-weight: 300;
  color: var(--body);
}

/* ---------- Banner manuscrito ---------- */

/* Forma parte de la primera pantalla: vive dentro de .screen */
.banner {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px clamp(22px, 2vw, 48px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(18px, 1.8vw, 40px) var(--gutter);
  min-height: clamp(84px, 10vh, 168px);
}
.banner-label {
  font-size: var(--fs-micro); letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted);
}
.banner-word {
  display: inline-flex; align-items: center;
  height: clamp(40px, 3.8vw, 84px);
  min-width: min(300px, 62vw);
}
.banner-word svg {
  height: 100%; width: auto; max-width: 100%; overflow: visible;
  flex: none;   /* Safari mide raro los SVG dentro de un flex sin esto */
}
/* Fallback sin JS / reduced-motion: texto plano en cian */
.banner-word .zona-fallback {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(17px, 1.7vw, 34px); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}

/* ---------- Stats ---------- */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  border-bottom: 1px solid var(--line);
}
.stat { padding: clamp(28px, 2.6vw, 60px) var(--gutter); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display); font-weight: 600;
  font-size: var(--fs-num); line-height: 1;
}
.stat-num--accent { color: var(--accent); }
.stat-label {
  font-size: var(--fs-micro); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--label); margin-top: 8px;
}

/* ---------- Proceso ---------- */

.proc-row {
  display: grid;
  grid-template-columns: minmax(60px, 7vw) minmax(160px, 1fr) 2fr;
  gap: clamp(24px, 2.2vw, 56px); align-items: baseline;
  padding: clamp(24px, 2.2vw, 52px) 0; border-top: 1px solid var(--line);
}
.proc-row:last-child { border-bottom: 1px solid var(--line); }
.proc-num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 1.5vw, 36px); color: var(--accent);
}
.proc-title {
  margin: 0; font-size: clamp(18px, 1.35vw, 32px); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.proc-desc {
  margin: 0; font-weight: 300; color: var(--body);
  font-size: var(--fs-body); line-height: 1.7;
}

/* ---------- Estudio ---------- */

.studio {
  padding: clamp(56px, 5vw, 128px) var(--gutter);
  /* min(300px, 100%) y no 300px a secas: en pantallas de 280px el minimo
     rigido forzaba una columna mas ancha que el viewport (Galaxy Fold). */
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(40px, 4vw, 96px);
}
.studio h2 { margin-bottom: 0; }
.studio-role {
  margin: 24px 0 0;
  font-size: var(--fs-label); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--label);
}
.studio-copy { max-width: 56ch; }
.studio-copy p {
  margin: 0; font-weight: 300; line-height: 1.8;
  font-size: var(--fs-body); color: var(--body);
}
.studio-copy p + p { margin-top: 20px; }

/* ---------- Cita ---------- */

.quote {
  margin: 0; max-width: 32ch; font-weight: 300;
  font-size: clamp(24px, 3.4vw, 68px); line-height: 1.35;
}
.quote-mark { color: var(--accent); }
.quote-by {
  margin: 32px 0 0; font-size: var(--fs-label); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--label);
}

/* ---------- Zonas ---------- */

/* Crece en pantallas grandes, pero nunca supera el ancho disponible */
.zonas { display: grid; gap: 0; max-width: min(100%, clamp(880px, 62vw, 1500px)); }
/* Grilla y no flex-wrap: con flex, el detalle largo de Puertos del Lago
   se iba a una segunda linea alineado a la izquierda, mientras el resto
   de las filas lo mostraba a la derecha. Asi el detalle siempre queda en
   su columna y ajusta adentro. */
.zona-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 8px clamp(24px, 3vw, 64px);
  align-items: baseline;
  padding: clamp(20px, 1.8vw, 42px) 0; border-top: 1px solid var(--line);
}
.zona-row:last-child { border-bottom: 1px solid var(--line); }
.zona-name {
  font-family: var(--display); font-weight: 400;
  font-size: var(--fs-zona); text-transform: uppercase;
}
.zona-name--accent { color: var(--accent); }
.zona-detail {
  font-size: var(--fs-micro); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--label);
  text-align: right; min-width: 0;
}

/* ---------- Obras ---------- */

.obras-title {
  margin: 0; font-family: var(--display); font-weight: 600;
  font-size: var(--fs-title);
  text-transform: uppercase; max-width: 22ch; line-height: 1.15;
}

/* ---------- FAQ (GEO) ---------- */

.faq { display: grid; gap: 0; max-width: min(100%, clamp(880px, 62vw, 1500px)); }
.faq-row {
  display: grid; grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 24px clamp(40px, 3vw, 72px); align-items: baseline;
  padding: clamp(24px, 2.2vw, 52px) 0; border-top: 1px solid var(--line);
}
.faq-row:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  margin: 0; font-size: clamp(16px, 1.2vw, 27px); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4;
}
.faq-a {
  margin: 0; font-weight: 300; color: var(--body);
  font-size: var(--fs-body); line-height: 1.7;
}

/* ---------- Contacto ---------- */

.contacto {
  position: relative; overflow: hidden;
  padding: clamp(72px, 6.6vw, 168px) var(--gutter);
  border-top: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(242,244,243,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,244,243,0.03) 1px, transparent 1px);
  background-size: 96px 96px;
}
.contacto h2 {
  margin: 0;
  font-family: var(--display); font-weight: 600;
  font-size: var(--fs-h2-xl);
  text-transform: uppercase; line-height: 1;
}

.form {
  display: grid; gap: 14px;
  max-width: min(100%, clamp(560px, 42vw, 900px));
  margin-top: clamp(32px, 3vw, 72px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field {
  background: transparent; border: 1px solid var(--border);
  color: var(--fg); padding: clamp(14px, 1vw, 20px) clamp(16px, 1.1vw, 24px);
  font-family: var(--text);
  /* Nunca por debajo de 16px: con menos, iOS hace zoom al enfocar el campo
     y el usuario queda con la pagina descuadrada. */
  font-size: max(16px, var(--fs-body));
  min-height: 44px; width: 100%;
  transition: border-color .2s ease;
  /* iOS le pone esquinas redondeadas y sombra interna a los inputs */
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.field::placeholder { color: var(--muted); }
.field:focus { border-color: var(--accent); outline: none; }
textarea.field { resize: vertical; }

/* Honeypot anti-spam: invisible para humanos, tentador para bots */
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Visible solo para lectores de pantalla (labels, titulos de estructura) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.submit {
  justify-self: start; background: none; border: none;
  border-bottom: 2px solid var(--accent); padding: 0 0 6px;
  color: var(--fg); font-family: var(--display); font-weight: 600;
  letter-spacing: 0.04em; font-size: var(--fs-lead); cursor: pointer;
  min-height: 44px; transition: color .2s ease;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.submit:hover { color: var(--accent); }
.submit[disabled] { opacity: .5; cursor: progress; }

.form-msg { margin: 0; font-size: var(--fs-body); }
.form-msg--ok { color: var(--accent); }
.form-msg--err { color: #ff8a7a; }

.contacto-social { margin-top: clamp(28px, 2.6vw, 60px); }
.copyright {
  margin: clamp(48px, 4.4vw, 110px) 0 0;
  font-size: var(--fs-micro); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Volver arriba ---------- */

.top-link {
  position: fixed; z-index: 50;
  /* Se corre para no quedar bajo la barra de gestos del iPhone */
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  right:  max(28px, env(safe-area-inset-right, 0px));
  display: flex; align-items: center; gap: 10px;
  background: rgba(11,13,14,0.9); border: 1px solid var(--border);
  color: var(--label); text-decoration: none;
  padding: 12px 16px; min-height: 44px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease,
              opacity .25s ease, visibility .25s ease;
  /* Oculto en la primera pantalla: estando arriba no tiene sentido.
     Aparece al pasar el hero (lo activa site.js). */
  opacity: 0; visibility: hidden;
}
.top-link.is-visible { opacity: 1; visibility: visible; }
.top-link:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Animaciones ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes drawline {
  from { width: 0; }
  to   { width: 72px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .nav-link { display: none; }
  .rotulo   { display: none; }
  .proc-row { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .proc-desc { grid-column: 1 / -1; }
  .faq-row  { grid-template-columns: 1fr; row-gap: 12px; }
  /* En mobile no hay ancho para dos columnas: el detalle baja y va a la izquierda */
  .zona-row   { grid-template-columns: 1fr; }
  .zona-detail { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .section  { padding: 72px var(--gutter) 40px; }
  .top-link { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .nav { gap: 10px 12px; }
  .wordmark { font-size: 11px; letter-spacing: 0.14em; }
  .banner-word { min-width: 220px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- Portada en pantallas chicas o bajas ----------
   La primera pantalla tiene que entrar entera. En mobile la nav
   envuelve y se come 128px, asi que se comprime el ritmo vertical. */

@media (max-width: 760px) {
  .nav          { padding: 16px var(--gutter); }
  .hero         { padding: clamp(28px, 5vw, 56px) var(--gutter); }
  .hero .kicker { margin-bottom: 20px; }
  .hero-foot    { margin-top: 32px; gap: 24px; }
  .lead         { font-size: 16px; line-height: 1.65; }
}

@media (max-height: 700px) {
  .nav              { padding: 12px var(--gutter); }
  .hero             { padding: 22px var(--gutter); }
  .hero .kicker     { margin-bottom: 14px; }
  .hero .kicker-line{ width: 48px; }
  .hero .kicker-text{ font-size: 11px; letter-spacing: 0.18em; }
  .hero-foot        { margin-top: 22px; gap: 16px; }
  .lead             { font-size: 15px; line-height: 1.6; }
  h1.h1             { font-size: clamp(28px, 7.4vw, 64px); }
  .banner           { min-height: 0; padding: 12px var(--gutter); gap: 8px 18px; }
  .banner-word      { height: 34px; }
}

/* Telefono en horizontal: solo hay ~390px de alto para nav + hero + banner.
   El H1 pasa a escalar tambien contra la altura (vh) para que la portada
   entre entera sin achicar el texto mas de lo necesario. */
@media (max-height: 500px) and (orientation: landscape) {
  .nav              { padding: 8px var(--gutter); }
  .hero             { padding: 12px var(--gutter); }
  .hero .kicker     { margin-bottom: 6px; }
  .hero .kicker-line{ width: 40px; }
  .hero .kicker-text{ font-size: 10px; letter-spacing: 0.16em; }
  h1.h1             { font-size: min(6vw, 15vh); }
  .hero-foot        { margin-top: 10px; gap: 10px 28px; }
  .lead             { font-size: 13px; line-height: 1.45; max-width: 62ch; }
  .banner           { padding: 6px var(--gutter); }
  .banner-word      { height: 24px; }
  .banner-label     { font-size: 10px; }
  .rotulo           { display: none; }
}

/* ---------- Movimiento reducido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Impresion ---------- */

@media print {
  .top-link, .plus, .form, .lang-btn { display: none !important; }
  body { background: #fff; color: #000; }
}


/* ---------------------------------------------------------------------
   Reemplazo de los ultimos dos style="" que quedaban en el HTML.
   Sin atributos de estilo inline, el CSP puede prohibir style-src inline
   por completo en vez de tener que habilitar 'unsafe-inline'.
   --------------------------------------------------------------------- */
.bloque-espaciado { margin-top: 28px; }

.form-campos { display: grid; gap: 14px; }
