:root {
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --surface-tint: #f3f8f2;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --line: #d2d2d7;
  --line-strong: #b8b8bf;
  --brand: #43fc1c;
  --brand-deep: #176b18;
  --brand-ink: #0e4e16;
  --white: #ffffff;
  --container: 1180px;
  --gutter: 28px;
  --header-height: 64px;
  --radius-card: 18px;
  --radius-flag: 2px;
  --radius-button: 999px;
  --shadow-soft: 0 12px 34px rgba(29, 29, 31, 0.08);
  --shadow-float: 0 10px 30px rgba(29, 29, 31, 0.14);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-state: 220ms;
  --motion-entrance: 520ms;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
  interpolate-size: allow-keywords;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--safe-top) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--brand);
  color: var(--text);
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: max(12px, calc(var(--safe-top) + 12px));
  left: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-button);
  background: var(--brand);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  width: 100%;
  height: calc(var(--header-height) + var(--safe-top));
  padding-top: var(--safe-top);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 18px rgba(29, 29, 31, 0.04);
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 128px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-navigation > a:not(.button) {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--radius-button);
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-navigation > a:not(.button):hover,
.site-navigation > a:not(.button):focus-visible {
  background: var(--surface-soft);
  color: var(--text);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button svg,
.text-link svg,
.card-action svg,
.related-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease);
}

.button--primary {
  background: var(--brand);
  color: var(--text);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #2ddc16;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--text);
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.8rem;
}

.button--large {
  min-height: 56px;
  padding: 15px 24px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-ink);
}

.text-link:hover svg,
.text-link:focus-visible svg,
.card-action:hover svg,
.card-action:focus-visible svg,
.related-link:hover svg,
.related-link:focus-visible svg {
  transform: translateX(3px);
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
summary,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 22ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.5vw, 5.1rem);
}

h2 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

p {
  max-width: 70ch;
}

main:focus,
section[id]:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--brand-deep);
  outline-offset: 4px;
}

.section {
  padding: clamp(88px, 10vw, 144px) 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--tint {
  background: var(--surface-tint);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 56px;
}

.section-head p,
.hero-lead,
.service-lead,
.service-section-head p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: min(780px, 100svh);
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + var(--safe-top) + 96px) 0 112px;
  background: var(--surface);
  text-align: center;
}

/* Arte de marca del hero: arcos de alcance bajo el titular. Es fondo, no
   contenido — va detrás del texto, no recibe puntero y no anuncia nada a un
   lector de pantalla. Como SVG en línea no cuesta ninguna petición. */
.hero-art {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: min(62%, 460px);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-content {
  width: min(100%, 900px);
  margin-inline: auto;
}

.hero h1 {
  margin-inline: auto;
}

.hero-lead {
  max-width: 62ch;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 34px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 32px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.hero-location::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-deep);
  content: "";
}

.logo-strip {
  padding: 0 0 clamp(72px, 8vw, 112px);
  background: var(--surface);
}

.logo-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(26px, 3vw, 38px);
}

.logo-strip-head h2 {
  max-width: none;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.logo-strip-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: -6px 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

html.js .logo-strip-toggle {
  display: inline-flex;
}

.logo-strip-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  color: var(--text);
}

.logo-strip-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.logo-strip-toggle .icon-play,
.logo-strip-toggle[data-paused="true"] .icon-pause {
  display: none;
}

.logo-strip-toggle[data-paused="true"] .icon-play {
  display: block;
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-marquee-scroll 38s linear infinite;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee.is-paused .logo-marquee-track {
  animation-play-state: paused;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

.logo-row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding-inline: clamp(24px, 3.4vw, 52px);
}

.logo-item img {
  width: auto;
  max-width: none;
  height: 42px;
  opacity: 0.8;
  filter: grayscale(1) brightness(0.55);
  transition: filter 280ms var(--ease), opacity 280ms var(--ease);
}

.logo-item--kaizen img {
  height: 60px;
}

.logo-item--ultraplus img {
  height: 56px;
}

.logo-item--torcoroma img {
  height: 46px;
}

.logo-item--angle img {
  height: 40px;
}

.logo-item:hover img {
  opacity: 1;
  filter: none;
}

.services-section {
  background: var(--surface-soft);
}

/* Seis servicios: tres por fila en desktop. */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color 220ms ease, box-shadow 320ms var(--ease-out-expo), transform 320ms var(--ease-out-expo);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card h3 {
  max-width: 20ch;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-list li {
  position: relative;
  padding-left: 15px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.service-card-list li + li {
  margin-top: 7px;
}

.service-card-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.card-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 28px;
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.coverage-section {
  background: var(--surface);
}

.coverage-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

/* Country names carry the meaning; the flags are civil flags, sin escudo. */
.flag {
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: var(--radius-flag);
  box-shadow: 0 0 0 1px var(--line);
}

.coverage-name {
  min-width: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.coverage-tag {
  flex: 0 0 auto;
  padding: 2px 9px;
  border-radius: var(--radius-button);
  background: var(--surface-tint);
  color: var(--brand-ink);
  font-size: 0.86rem;
  font-weight: 700;
}

/* The rule above the note spans the panel; the sentence keeps a readable measure. */
.coverage-note {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: clamp(26px, 3vw, 34px) 0 0;
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.coverage-note strong {
  color: var(--text);
  font-weight: 700;
}

.coverage-note span {
  max-width: 62ch;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 10vw, 160px);
}

.split-section > div {
  min-width: 0;
}

.split-section p {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.quiet-statement {
  max-width: 25ch;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

/* Marca del paso: geometría, no icono. Comparte el lenguaje de hairline del
   arte del hero y no aporta información que el texto no diga ya, por eso es
   aria-hidden. */
.process-mark {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 14px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.location-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 54px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.location-note strong {
  color: var(--text);
}

.location-note .text-link {
  margin-left: auto;
}

.cases-section {
  background: var(--surface-soft);
}

.case-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.case-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(190px, 1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-list strong {
  font-size: 1.08rem;
}

.case-list span,
.case-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.case-list p {
  line-height: 1.55;
}

.cases-note {
  max-width: 38ch;
  margin: 48px 0 0 auto;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 10vw, 150px);
}

.faq-layout > * {
  min-width: 0;
}

.faq-intro p {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

/* El marcador se dibuja con la misma hairline que estructura el sitio: dos
   barras de 1px. Al abrir, la vertical se contrae y el + se vuelve −, así el
   cambio de estado se ve ocurrir en vez de saltar. */
.faq-list summary::after {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background-image: linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 10px 1px, 1px 10px;
  color: var(--brand-deep);
  content: "";
}

.faq-list details[open] summary::after {
  background-size: 10px 1px, 1px 0;
  border-color: var(--brand-deep);
}

.faq-list details p {
  max-width: 65ch;
  margin: -2px 48px 22px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-section {
  background: var(--surface-tint);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}

.contact-layout > * {
  min-width: 0;
}

.contact-lead {
  max-width: 56ch;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-actions {
  min-width: min(100%, 270px);
  display: grid;
  justify-items: start;
  gap: 16px;
}

.contact-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-note::before {
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-deep);
  content: "";
}

.contact-note--handoff {
  max-width: 30ch;
}

.contact-note--handoff span {
  display: grid;
  gap: 3px;
}

.contact-note--handoff strong {
  color: var(--text);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-email {
  min-height: 44px;
  display: grid;
  align-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.contact-email strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.contact-email:hover strong,
.contact-email:focus-visible strong {
  color: var(--brand-deep);
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, var(--safe-bottom));
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--brand-deep);
  border-radius: var(--radius-button);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-float);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
}

.floating-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--brand-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--brand);
  color: var(--text);
  transform: translateY(-2px);
}

.floating-whatsapp.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--surface-soft);
  color: var(--text);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(180px, 1fr) minmax(200px, auto) auto;
  gap: 30px;
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  width: 126px;
}

.footer-top p,
.footer-links,
.footer-contact {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-top p {
  max-width: 24ch;
}

/* El navegador pone <address> en cursiva; aquí es dato de contacto, no cita. */
.footer-contact address {
  margin: 4px 0 2px;
  font-style: normal;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-links a,
.footer-contact a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--brand-deep);
}

.footer-contact a:first-child {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.service-page {
  background: var(--surface);
}

.service-hero {
  padding: calc(var(--header-height) + var(--safe-top) + 86px) 0 96px;
  background: var(--surface);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.service-hero-inner > * {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--brand-deep);
}

.service-lead {
  max-width: 60ch;
}

.service-hero h1 {
  max-width: 28ch;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
}

.service-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 30px;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.service-facts li {
  min-width: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.service-hero-statement {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.service-hero-statement p {
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.service-hero-statement span {
  max-width: 30ch;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.service-section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.service-section--soft {
  background: var(--surface-soft);
}

.service-section--tint {
  background: var(--surface-tint);
}

.service-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.9fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
  margin-bottom: 56px;
}

.service-section-copy {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.service-section-head > * {
  min-width: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
}

.content-grid > * {
  min-width: 0;
}

.content-grid h2 {
  margin-bottom: 0;
}

.feature-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  font-size: 1.06rem;
}

.feature-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-method-step {
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.service-method-step h3 {
  font-size: 1.25rem;
}

.service-method-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
}

.service-faq-layout > * {
  min-width: 0;
}

.service-faq-intro {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.related-section {
  background: var(--surface-soft);
}

.related-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
}

.related-layout > * {
  min-width: 0;
}

.related-intro {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.related-links {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.related-links li {
  border-bottom: 1px solid var(--line);
}

.related-link {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.service-contact {
  background: var(--surface-tint);
}

.service-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}

.service-contact-layout > * {
  min-width: 0;
}

.service-contact-layout > div > p:not(.contact-note) {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.service-contact-actions {
  min-width: min(100%, 270px);
  display: grid;
  justify-items: start;
  gap: 16px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 0 100px;
  background: var(--surface);
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
}

.not-found p {
  margin-inline: auto;
  color: var(--text-muted);
}

.not-found .button {
  margin-top: 18px;
}

/* ==========================================================================
   Movimiento
   Momento focal: el hero se desenmascara hacia arriba, como texto que se
   compone en su sitio. Firma del sistema: las hairlines de 1px que estructuran
   el contenido se dibujan solas. Escalonado solo donde la secuencia informa.
   Todo parte de un estado visible: sin JS no se oculta nada.
   ========================================================================== */

@keyframes hero-unmask {
  from {
    clip-path: inset(0 -0.25em 100% -0.25em);
    opacity: 0;
    transform: translateY(9px);
  }

  to {
    clip-path: inset(0 -0.25em -0.35em -0.25em);
    opacity: 1;
    transform: none;
  }
}

html.js .hero-content > *,
html.js .service-hero-inner > div > *,
html.js .service-hero-statement {
  animation: hero-unmask var(--motion-entrance) var(--ease-out-expo) both;
}

html.js .hero-content > *:nth-child(1),
html.js .service-hero-inner > div > *:nth-child(1) {
  animation-delay: 40ms;
}

html.js .hero-content > *:nth-child(2),
html.js .service-hero-inner > div > *:nth-child(2) {
  animation-delay: 120ms;
}

html.js .hero-content > *:nth-child(3),
html.js .service-hero-inner > div > *:nth-child(3) {
  animation-delay: 200ms;
}

html.js .hero-content > *:nth-child(4),
html.js .service-hero-inner > div > *:nth-child(4) {
  animation-delay: 270ms;
}

html.js .service-hero-inner > div > *:nth-child(5) {
  animation-delay: 330ms;
}

html.js .service-hero-statement {
  animation-delay: 380ms;
}

/* El punto verde de la línea de ubicación cierra la secuencia. */
html.js .hero-location::before {
  animation: hero-dot 340ms var(--ease-out-expo) 400ms both;
}

@keyframes hero-dot {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Entrada de bloques: opacidad y un desplazamiento corto, nunca un salto. */
html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--motion-entrance) var(--ease-out-expo),
    transform var(--motion-entrance) var(--ease-out-expo);
  transition-delay: calc(var(--reveal-i, 0) * var(--reveal-step, 55ms));
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* La hairline que encabeza una lista se traza en vez de aparecer. */
html.js .rule-draw {
  position: relative;
  border-top-color: transparent;
}

html.js .rule-draw::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms var(--ease-out-expo);
  content: "";
}

html.js .rule-draw.is-visible::before {
  transform: scaleX(1);
}

/* La respuesta de la FAQ crece en lugar de aparecer de golpe. */
.faq-list details::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition: block-size var(--motion-state) var(--ease-out-expo),
    opacity var(--motion-state) ease,
    content-visibility var(--motion-state) allow-discrete;
}

.faq-list details[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq-list summary::after {
  transition: background-size var(--motion-state) var(--ease-out-expo),
    border-color var(--motion-state) ease;
}

.faq-list summary:hover::after {
  border-color: var(--brand-deep);
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-hero-inner > h1 {
  max-width: 20ch;
}

.blog-list-section {
  background: var(--surface-soft);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color 220ms ease, box-shadow 320ms var(--ease-out-expo), transform 320ms var(--ease-out-expo);
}

.post-card:hover,
.post-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.post-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  flex: 1;
  padding: 26px 28px 0;
}

.post-card-body h2 {
  max-width: none;
  margin: 12px 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  line-height: 1.17;
}

/* El título cubre toda la tarjeta; las etiquetas se elevan por encima. */
.post-card-link {
  color: inherit;
}

.post-card-link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.post-card-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.post-meta time {
  font-variant-numeric: tabular-nums;
}

.post-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 22px 28px 26px;
  list-style: none;
}

.post-tags li > * {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.post-tags a:hover,
.post-tags a:focus-visible {
  border-color: var(--line-strong);
  color: var(--text);
}

.blog-empty {
  color: var(--text-muted);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.pagination-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.pagination-link:hover,
.pagination-link:focus-visible {
  color: var(--brand-deep);
}

.pagination-status {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: center;
}

/* --- El artículo --------------------------------------------------------- */

.post-hero {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.post-hero-inner > h1 {
  max-width: 24ch;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.post-hero-inner .post-meta {
  margin-bottom: 20px;
}

.post-hero-inner .post-tags {
  padding: 26px 0 0;
}

.post-cover {
  margin: 0;
  padding-bottom: clamp(24px, 4vw, 40px);
}

.post-cover img {
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: var(--radius-card);
}

.post-body-wrap {
  padding-bottom: clamp(72px, 9vw, 116px);
}

.post-body {
  max-width: 68ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.post-body p,
.post-body ul,
.post-body ol,
.post-body blockquote,
.post-body pre,
.post-body figure,
.post-body .table-scroll {
  max-width: none;
  margin: 0 0 1.2em;
}

.post-body > :last-child {
  margin-bottom: 0;
}

.post-body h2 {
  max-width: 26ch;
  margin: 2.1em 0 0.55em;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.post-body h3 {
  max-width: 32ch;
  margin: 1.8em 0 0.45em;
  font-size: clamp(1.18rem, 2vw, 1.4rem);
}

.post-body h4 {
  margin: 1.6em 0 0.4em;
  font-size: 1.02rem;
  font-weight: 700;
}

.post-body > :is(h2, h3, h4):first-child {
  margin-top: 0;
}

.post-body a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.post-body a:hover,
.post-body a:focus-visible {
  color: var(--brand-deep);
  text-decoration-color: currentColor;
}

/* Las listas del artículo usan la misma hairline que estructura el resto. */
.post-body ul,
.post-body ol {
  padding-left: 0;
  list-style: none;
}

.post-body li {
  position: relative;
  padding-left: 22px;
}

.post-body li + li {
  margin-top: 10px;
}

.post-body ul > li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.post-body ol {
  counter-reset: post-step;
}

.post-body ol > li {
  padding-left: 32px;
  counter-increment: post-step;
}

.post-body ol > li::before {
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  content: counter(post-step) ".";
}

.post-body li > ul,
.post-body li > ol {
  margin: 10px 0 0;
}

.post-body blockquote {
  margin-left: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
  color: var(--text-muted);
}

.post-body blockquote > :last-child {
  margin-bottom: 0;
}

.post-body hr {
  height: 1px;
  margin: 2.4em 0;
  border: 0;
  background: var(--line);
}

.post-body img {
  display: block;
  height: auto;
  border-radius: var(--radius-card);
}

/* Única excepción al sistema sans de DESIGN.md: el código necesita alinearse
   en columnas para poder leerse. Se limita al cuerpo de un artículo. */
.post-body code {
  padding: 0.15em 0.4em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.post-body pre {
  overflow-x: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.post-body pre code {
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.post-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.post-body th,
.post-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.post-body th {
  border-bottom-color: var(--line-strong);
  font-weight: 700;
}

.post-body tbody tr:last-child td {
  border-bottom: 0;
}

/* En un artículo el bloque relacionado lleva un solo enlace: el título se
   deja respirar a lo ancho en vez de apilarse en cuatro líneas. */
.blog-page .related-section h2 {
  max-width: 22ch;
}

.blog-related {
  background: var(--surface-soft);
}

.blog-back {
  margin: 34px 0 0;
}

@media (max-width: 1040px) {
  :root {
    --gutter: 22px;
  }

  .service-grid,
  .process-grid,
  .service-method-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Con el enlace del blog el menú suma un ítem: se aprietan las cajas. */
  .site-navigation > a:not(.button) {
    padding: 8px 7px;
  }

  .coverage-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 18px;
    --header-height: 62px;
  }

  .site-header {
    height: calc(var(--header-height) + var(--safe-top));
  }

  .nav-shell {
    height: var(--header-height);
  }

  .brand {
    width: 116px;
  }

  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: fixed;
    top: calc(var(--header-height) + var(--safe-top));
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px var(--gutter) 20px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }

  html.js .site-navigation {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 0s linear 180ms;
  }

  html.js .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-navigation > a:not(.button) {
    min-height: 52px;
    justify-content: flex-start;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
  }

  .site-navigation .nav-cta {
    width: 100%;
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--safe-top) + 82px);
    padding-bottom: 86px;
  }

  .section-head,
  .split-section,
  .faq-layout,
  .contact-layout,
  .service-hero-inner,
  .service-section-head,
  .content-grid,
  .service-faq-layout,
  .related-layout,
  .service-contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .service-hero {
    padding-top: calc(var(--header-height) + var(--safe-top) + 70px);
    padding-bottom: 76px;
  }

  .service-hero-statement {
    min-height: 240px;
  }

  .service-facts {
    gap: 12px;
  }

  .location-note .text-link {
    margin-left: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 15px;
  }

  h1 {
    max-width: 17ch;
    font-size: clamp(2.65rem, 12.5vw, 4.2rem);
  }

  h2 {
    max-width: 17ch;
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero {
    padding-bottom: 76px;
  }

  .hero-lead,
  .section-head p,
  .service-lead,
  .service-section-head p,
  .contact-lead,
  .service-contact-layout > div > p:not(.contact-note) {
    font-size: 1rem;
  }

  .hero-actions,
  .service-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link,
  .service-hero-actions .button,
  .service-hero-actions .text-link,
  .contact-actions,
  .contact-actions .button,
  .service-contact-actions,
  .service-contact-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .service-hero-actions .text-link {
    justify-content: center;
  }

  .service-grid,
  .process-grid,
  .service-method-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card-body {
    padding: 22px 22px 0;
  }

  .post-tags {
    padding: 18px 22px 22px;
  }

  .pagination {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .pagination-status {
    order: 3;
    text-align: left;
  }

  .post-body {
    font-size: 1.02rem;
  }

  .hero-art {
    height: min(48%, 300px);
    opacity: 0.75;
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .service-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .service-facts li + li {
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .case-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .case-list strong {
    font-size: 1.05rem;
  }

  .cases-note {
    margin-top: 36px;
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 1rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-top {
    gap: 22px;
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, var(--safe-bottom));
    padding: 10px 14px;
  }

  .logo-marquee-track {
    animation-duration: 26s;
  }

  .logo-item {
    height: 52px;
  }

  .logo-item img {
    height: 34px;
  }

  .logo-item--kaizen img {
    height: 48px;
  }

  .logo-item--ultraplus img {
    height: 40px;
  }

  .logo-item--torcoroma img {
    height: 37px;
  }

  .logo-item--angle img {
    height: 32px;
  }
}

/* Without JavaScript the marquee has no pause control, so it must not move
   (WCAG 2.2.2). Same static presentation when motion is reduced. */
html.no-js .logo-marquee {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

html.no-js .logo-marquee-track {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  animation-name: none;
}

html.no-js .logo-row {
  flex-wrap: wrap;
  justify-content: center;
}

html.no-js .logo-row + .logo-row {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation-name: none;
  }

  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-row + .logo-row {
    display: none;
  }

  html.js .logo-strip-toggle {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  /* Movimiento reducido no es ausencia de movimiento: se elimina el
     desplazamiento espacial y se conserva la retroalimentación de color y
     opacidad, que es la que confirma que un control respondió. */
  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 120ms !important;
    transition-delay: 0ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }

  html.js .rule-draw {
    border-top-color: var(--line-strong);
  }

  html.js .rule-draw::before {
    display: none;
  }

  .service-card:hover,
  .service-card:focus-visible,
  .button--primary:hover,
  .button--primary:focus-visible,
  .button--secondary:hover,
  .button--secondary:focus-visible {
    transform: none;
  }

  .text-link:hover svg,
  .text-link:focus-visible svg,
  .card-action:hover svg,
  .card-action:focus-visible svg,
  .related-link:hover svg,
  .related-link:focus-visible svg {
    transform: none;
  }
}
