:root {
  --global-transition: 220ms cubic-bezier(0.25, 0.8, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.25rem;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Sprint 01: Header y Hero exclusivos de Inicio */
.home-page {
  --home-ink: #0a1f38;
  --home-blue: #1f5d91;
  --home-blue-deep: #153f68;
  --home-blue-soft: #e9f1f8;
  --home-surface: #f7f9fc;
  --home-line: rgba(10, 31, 56, 0.12);
  --home-muted: #56667a;
  --home-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f9fc;
  color: var(--home-ink);
  font-family: var(--home-font);
  line-height: 1.6;
}

.home-skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--home-ink);
  color: #fff;
  font-family: var(--home-font);
  font-weight: 700;
  transform: translateY(-160%);
}

.home-skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #8eb9df;
  outline-offset: 3px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(247, 249, 252, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-header.is-scrolled,
.home-header.is-menu-open {
  border-bottom-color: var(--home-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(10, 31, 56, 0.07);
}

.home-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 3rem));
  min-height: 5.25rem;
  margin: 0 auto;
  gap: 2rem;
}

.home-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  color: var(--home-ink);
  font-family: var(--home-font);
}

.home-brand__mark {
  width: 3.2rem;
  height: 3.2rem;
  margin-inline: -0.55rem -0.45rem;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: center;
  transition: transform 200ms ease;
}

.home-header.is-scrolled:not(.is-menu-open) .home-brand__mark {
  transform: scale(1.18);
}

.home-brand__copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.home-brand__copy strong,
.home-brand__copy span {
  font-size: 0.78rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.home-brand__copy strong {
  font-weight: 760;
}

.home-brand__copy span {
  color: var(--home-muted);
  font-weight: 600;
}

.home-brand:focus-visible,
.home-nav a:focus-visible,
.home-menu-toggle:focus-visible,
.home-button:focus-visible {
  outline: 3px solid #6fa4d2;
  outline-offset: 4px;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  font-family: var(--home-font);
}

.home-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.home-nav__links a {
  position: relative;
  padding: 0.8rem 0;
  color: #415267;
  font-size: 0.94rem;
  font-weight: 590;
  letter-spacing: -0.01em;
}

.home-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.42rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--home-blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 200ms ease;
}

.home-nav__links a:hover,
.home-nav__links a:focus-visible,
.home-nav__links a[aria-current="page"] {
  color: var(--home-ink);
}

.home-nav__links a:hover::after,
.home-nav__links a:focus-visible::after,
.home-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.home-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  border: 1px solid rgba(31, 93, 145, 0.16);
  border-radius: 0.7rem;
  background: rgba(233, 241, 248, 0.62);
  color: var(--home-blue-deep);
  font-size: 0.88rem;
  font-weight: 680;
  white-space: nowrap;
}

.home-access:hover,
.home-access:focus-visible {
  border-color: rgba(31, 93, 145, 0.3);
  background: #e3edf6;
}

.home-access__icon {
  display: inline-block;
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.home-access:hover .home-access__icon,
.home-access:focus-visible .home-access__icon {
  transform: translate(1px, -1px);
}

.home-menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.home-menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--home-ink);
  transition: transform 200ms ease, top 200ms ease;
}

.home-menu-toggle__line:first-child {
  top: 1.06rem;
  transform: translateX(-50%);
}

.home-menu-toggle__line:last-child {
  top: 1.58rem;
  transform: translateX(-50%);
}

.home-menu-toggle[aria-expanded="true"] .home-menu-toggle__line:first-child {
  top: 1.34rem;
  transform: translateX(-50%) rotate(45deg);
}

.home-menu-toggle[aria-expanded="true"] .home-menu-toggle__line:last-child {
  top: 1.34rem;
  transform: translateX(-50%) rotate(-45deg);
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - 5.25rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 31, 56, 0.08);
  background:
    radial-gradient(circle at 78% 20%, rgba(110, 161, 205, 0.17), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef4f9 100%);
  font-family: var(--home-font);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(31, 93, 145, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 93, 145, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -13rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 93, 145, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.12), 0 0 0 10rem rgba(255, 255, 255, 0.08);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vh, 7.5rem) 0 clamp(5rem, 10vh, 8rem);
}

.home-hero__content {
  max-width: 49rem;
  animation: home-hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: var(--home-blue-deep);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-hero__eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

.home-hero h1 {
  max-width: 50rem;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--home-font);
  font-size: clamp(3rem, 5.35vw, 5.35rem);
  font-weight: 720;
  letter-spacing: -0.066em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 span:first-child {
  margin-bottom: 0.18em;
  color: var(--home-blue);
  font-weight: 620;
}

.home-hero__support {
  max-width: 45rem;
  margin: 1.65rem 0 0;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  font-weight: 430;
  line-height: 1.68;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-family: var(--home-font);
  font-size: 0.94rem;
  font-weight: 690;
  line-height: 1.2;
  text-align: center;
  transition: transform 190ms ease, color 190ms ease, background-color 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button--primary {
  border-color: var(--home-blue-deep);
  background: var(--home-blue-deep);
  color: #fff;
  box-shadow: 0 14px 32px rgba(21, 63, 104, 0.18);
}

.home-button--primary:hover,
.home-button--primary:focus-visible {
  border-color: #0f3458;
  background: #0f3458;
  box-shadow: 0 18px 38px rgba(21, 63, 104, 0.23);
}

.home-button--secondary {
  border-color: rgba(10, 31, 56, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--home-ink);
}

.home-button--secondary:hover,
.home-button--secondary:focus-visible {
  border-color: rgba(31, 93, 145, 0.32);
  background: rgba(255, 255, 255, 0.92);
}

.home-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 31rem;
  padding: 2.1rem 0 2.1rem clamp(1.5rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(31, 93, 145, 0.2);
  animation: home-hero-rise 780ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 55%;
  width: 21rem;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 93, 145, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home-hero__visual-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.home-hero__visual-heading p {
  margin: 0;
  color: var(--home-blue-deep);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-hero__visual-heading img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  opacity: 0.88;
}

.home-hero__pillars {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero__pillars li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(10, 31, 56, 0.14);
}

.home-hero__pillars li:last-child {
  border-bottom: 1px solid rgba(10, 31, 56, 0.14);
}

.home-hero__pillars span {
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-hero__pillars strong {
  max-width: 18rem;
  color: var(--home-ink);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.home-hero__visual-note {
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@keyframes home-hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .home-header__inner,
  .home-hero__inner {
    width: min(100% - 2.5rem, 1240px);
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr);
    gap: 3rem;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.5rem);
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .home-page.home-menu-open {
    overflow: hidden;
  }

  .home-header__inner {
    min-height: 4.65rem;
  }

  .home-menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .home-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 1rem;
    padding: 1.1rem;
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(10, 31, 56, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem) scale(0.985);
    transform-origin: top center;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .home-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .home-nav__links {
    display: grid;
    gap: 0;
  }

  .home-nav__links a {
    display: block;
    padding: 0.82rem 0.4rem;
    border-bottom: 1px solid rgba(10, 31, 56, 0.08);
    font-size: 1rem;
  }

  .home-nav__links a::after {
    display: none;
  }

  .home-access {
    justify-content: space-between;
    width: 100%;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    padding: 5rem 0 5.5rem;
  }

  .home-hero__content {
    max-width: 44rem;
  }

  .home-hero h1 {
    max-width: 43rem;
    font-size: clamp(3.2rem, 9vw, 4.8rem);
  }

  .home-hero__support {
    max-width: 40rem;
  }

  .home-hero__visual {
    min-height: auto;
    padding: 0 0 0 1.75rem;
  }

  .home-hero__visual::before {
    left: 72%;
    width: 18rem;
  }
}

@media (max-width: 560px) {
  .home-header__inner,
  .home-hero__inner {
    width: min(100% - 2rem, 1240px);
  }

  .home-brand {
    gap: 0.62rem;
  }

  .home-brand__mark {
    width: 2.9rem;
    height: 2.9rem;
    margin-inline: -0.5rem -0.4rem;
    transform: scale(1.23);
  }

  .home-header.is-scrolled:not(.is-menu-open) .home-brand__mark {
    transform: scale(1.16);
  }

  .home-brand__copy strong,
  .home-brand__copy span {
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .home-hero__inner {
    gap: 3.25rem;
    padding: 4.25rem 0 4.75rem;
  }

  .home-hero__eyebrow {
    margin-bottom: 1.15rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .home-hero__eyebrow::before {
    width: 1.5rem;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 12.7vw, 3.65rem);
    letter-spacing: -0.058em;
    line-height: 1;
  }

  .home-hero__support {
    margin-top: 1.35rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .home-hero__actions {
    display: grid;
    margin-top: 1.75rem;
  }

  .home-button {
    width: 100%;
    min-height: 3.35rem;
  }

  .home-hero__visual {
    padding-left: 1.2rem;
  }

  .home-hero__visual-heading {
    margin-bottom: 1.4rem;
  }

  .home-hero__visual-heading img {
    width: 3.6rem;
    height: 3.6rem;
  }

  .home-hero__pillars li {
    grid-template-columns: 1.9rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1rem 0;
  }

  .home-hero__visual-note {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 390px) {
  .home-brand__copy span {
    display: none;
  }

  .home-hero h1 {
    font-size: 2.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-header,
  .home-brand__mark,
  .home-nav,
  .home-nav__links a::after,
  .home-access__icon,
  .home-menu-toggle__line,
  .home-button,
  .home-hero__content,
  .home-hero__visual {
    animation: none;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}

/* Sprint 02: contenido completo de Inicio */
.home-page .home-section,
.home-page .home-footer,
.home-page .home-widgets {
  font-family: var(--home-font);
}

.home-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
}

.home-section__shell,
.home-footer__shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.home-section__eyebrow {
  margin: 0 0 1.1rem;
  color: var(--home-blue-deep);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-section__eyebrow--light {
  color: #9bc1df;
}

.home-section h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.45rem, 4.25vw, 4.3rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.home-section h3,
.home-section p,
.home-section li {
  font-family: var(--home-font);
}

.home-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.35rem 0 0.45rem;
  color: var(--home-blue-deep);
  font-size: 0.94rem;
  font-weight: 720;
}

.home-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 200ms ease;
}

.home-text-link:hover::after,
.home-text-link:focus-visible::after {
  transform: scaleX(1);
}

.home-text-link--light {
  color: #e9f4fc;
}

.home-text-link:focus-visible,
.home-axis__link:focus-visible,
.home-cases__grid a:focus-visible,
.home-projects__button:focus-visible,
.home-footer a:focus-visible,
.home-widget:focus-visible {
  outline: 3px solid #7eb3df;
  outline-offset: 4px;
}

.home-intro {
  background: #fff;
}

.home-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.home-intro__content {
  max-width: 46rem;
}

.home-intro__lead {
  margin: 0;
  color: #35475c;
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.65;
}

.home-intro__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 3rem 0 2.3rem;
  padding: 0;
  list-style: none;
}

.home-intro__values li {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(10, 31, 56, 0.18);
}

.home-intro__values strong {
  color: var(--home-ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-intro__values span {
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-problems {
  overflow: hidden;
  background: #0b2139;
  color: #fff;
}

.home-problems::before {
  content: "";
  position: absolute;
  top: -22rem;
  right: -14rem;
  width: 50rem;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 193, 223, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(255, 255, 255, 0.015), 0 0 0 14rem rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.home-problems__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.home-problems__header .home-section__eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2.5rem;
}

.home-problems h2,
.home-differences h2 {
  color: #fff;
}

.home-problems__header > p:last-child,
.home-differences__statement > p:last-child {
  margin: 0;
  color: #b8c9d8;
  font-size: 1.03rem;
  line-height: 1.7;
}

.home-problems__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 3.25rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.home-problems__list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 12.5rem;
  padding: 2rem 2.2rem 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-problems__list li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.home-problems__list li:nth-child(even) {
  padding-left: 2.2rem;
}

.home-problems__list > li > span {
  color: #84b4d9;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-problems__list h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.home-problems__list p {
  max-width: 28rem;
  margin: 0;
  color: #aebfce;
  font-size: 0.94rem;
  line-height: 1.65;
}

.home-axes {
  background: #f7f9fc;
}

.home-axes__header,
.home-method__header,
.home-cases__header {
  max-width: 55rem;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.home-axes__header > p:last-child,
.home-method__header > p:last-child,
.home-cases__header > p:last-child {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.home-axes__list {
  border-bottom: 1px solid rgba(10, 31, 56, 0.16);
}

.home-axis {
  display: grid;
  grid-template-columns: clamp(4.5rem, 9vw, 8.5rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid rgba(10, 31, 56, 0.16);
}

.home-axis__index {
  color: var(--home-blue);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.home-axis__body {
  display: grid;
  grid-template-areas:
    "title list"
    "description list"
    "link list";
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(3rem, 8vw, 8rem);
}

.home-axis__body h3 {
  grid-area: title;
  max-width: 30rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.home-axis__body > p {
  grid-area: description;
  max-width: 31rem;
  margin: 1.25rem 0 2.25rem;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-axis__body ul {
  grid-area: list;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-axis__body li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.4rem;
  border-top: 1px solid rgba(10, 31, 56, 0.12);
  color: #35475c;
  font-size: 0.95rem;
  font-weight: 580;
  line-height: 1.45;
}

.home-axis__body li:last-child {
  border-bottom: 1px solid rgba(10, 31, 56, 0.12);
}

.home-axis__body li::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--home-blue);
}

.home-axis__link {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  color: var(--home-blue-deep);
  font-size: 0.92rem;
  font-weight: 720;
}

.home-axis__link span,
.home-cases__grid a span {
  transition: transform 180ms ease;
}

.home-axis__link:hover span,
.home-axis__link:focus-visible span,
.home-cases__grid a:hover span,
.home-cases__grid a:focus-visible span {
  transform: translateX(3px);
}

.home-differences {
  overflow: hidden;
  background: #112a43;
  color: #fff;
}

.home-differences__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.home-differences__statement {
  position: sticky;
  top: 8rem;
}

.home-differences__statement > p:last-child {
  margin-top: 1.65rem;
}

.home-differences__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.home-differences__list li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-differences__list > li > span {
  color: #8db7d8;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-differences__list h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 650;
}

.home-differences__list p {
  margin: 0;
  color: #afc0ce;
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-method {
  background: #fff;
}

.home-method__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 3.25rem;
  padding: 0;
  list-style: none;
}

.home-method__steps li {
  position: relative;
  min-height: 18rem;
  padding: 2.2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(10, 31, 56, 0.2);
  border-right: 1px solid rgba(10, 31, 56, 0.12);
}

.home-method__steps li:first-child {
  padding-left: 0;
}

.home-method__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-method__steps li::before {
  content: "";
  position: absolute;
  top: -0.34rem;
  left: 1.5rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--home-blue);
  box-shadow: 0 0 0 1px var(--home-blue);
}

.home-method__steps li:first-child::before {
  left: 0;
}

.home-method__steps span {
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-method__steps h3 {
  margin: 2rem 0 0.8rem;
  color: var(--home-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  font-weight: 660;
  letter-spacing: -0.025em;
}

.home-method__steps p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-cases {
  background: #eef3f7;
}

.home-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 56, 0.14);
  border-radius: 1rem;
  background: rgba(10, 31, 56, 0.14);
}

.home-cases__grid article {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.9);
  transition: background-color 200ms ease;
}

.home-cases__grid article:hover {
  background: #fff;
}

.home-case__label {
  margin: 0 0 3.5rem;
  color: var(--home-blue-deep);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-cases__grid h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.18;
}

.home-cases__grid article > p:not(.home-case__label) {
  margin: 1.4rem 0 2.5rem;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.home-cases__grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  color: var(--home-blue-deep);
  font-size: 0.9rem;
  font-weight: 720;
}

.home-projects {
  background: #fff;
}

.home-projects__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border-radius: 1.25rem;
  background: #ef7b32;
  color: #fff;
}

.home-projects__panel::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -11rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.04), 0 0 0 10rem rgba(255, 255, 255, 0.025);
}

.home-projects__content,
.home-projects__brand {
  position: relative;
}

.home-projects__eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-projects h2 {
  color: #fff;
}

.home-projects__lead {
  max-width: 41rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.home-projects__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.home-projects__content li {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.55rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 620;
}

.home-projects__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid #fff;
  border-radius: 0.7rem;
  background: #fff;
  color: #9f3f0c;
  font-size: 0.92rem;
  font-weight: 740;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.home-projects__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(111, 41, 4, 0.18);
}

.home-projects__external-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.home-projects__brand {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.25rem;
  min-height: 23rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
}

.home-projects__brand > div {
  display: grid;
  width: min(13rem, 70%);
  aspect-ratio: 1;
  place-items: center;
  padding: 1rem;
  border-radius: 50%;
  background: #fff;
}

.home-projects__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-projects__brand > span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.home-final-cta {
  border-top: 1px solid rgba(10, 31, 56, 0.1);
  background: #f7f9fc;
}

.home-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.home-final-cta h2 {
  max-width: 48rem;
}

.home-final-cta__layout > div:first-child > p:last-child {
  max-width: 41rem;
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.home-final-cta__actions {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}

.home-footer {
  background: #07192c;
  color: #fff;
}

.home-footer__shell {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 2rem;
}

.home-footer__top {
  display: grid;
  grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(9rem, 0.7fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 4.5rem;
}

.home-footer__brand img {
  width: min(18rem, 100%);
  height: auto;
  margin-bottom: 1.5rem;
}

.home-footer__brand p {
  max-width: 28rem;
  margin: 0 0 1rem;
  color: #b3c3d1;
  font-size: 0.92rem;
  line-height: 1.7;
}

.home-footer__brand > span {
  color: #8fa7bb;
  font-size: 0.82rem;
  font-weight: 650;
}

.home-footer__group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}

.home-footer__group h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-footer__group a {
  color: #a9bac8;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-footer__group a:hover,
.home-footer__group a:focus-visible {
  color: #fff;
}

.home-footer__legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-footer__legal p,
.home-footer__legal span {
  margin: 0;
  color: #8199ad;
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-footer__legal > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1.2rem;
}

.home-widgets {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 85;
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.home-widgets.is-managed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
}

.home-widgets.is-managed.is-visible:not(.is-footer-visible) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.home-page.home-menu-open .home-widgets {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-widget {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(7, 25, 44, 0.15);
  font-size: 0.77rem;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 25, 44, 0.22);
}

.home-widget--whatsapp {
  background: #168b55;
}

.home-widget--projects {
  border-color: rgba(10, 31, 56, 0.14);
  background: linear-gradient(135deg, #ffece1 0%, #d8e7ff 100%);
  color: var(--home-ink);
  box-shadow: 0 10px 26px rgba(10, 31, 56, 0.16);
}

.home-widget__icon,
.home-widget--projects img {
  display: block;
  flex: 0 0 auto;
}

.home-widget__icon {
  width: 1.6rem;
  height: 1.6rem;
  color: #fff;
}

.home-widget--projects img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: center;
}

.home-widget__label,
.home-widget > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-widget--projects:hover {
  box-shadow: 0 14px 30px rgba(10, 31, 56, 0.22);
}

.home-page.home-motion-ready [data-home-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.home-motion-ready [data-home-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .home-section__shell,
  .home-footer__shell {
    width: min(100% - 2.5rem, 1240px);
  }

  .home-intro__layout,
  .home-differences__layout {
    gap: 4rem;
  }

  .home-intro__values {
    grid-template-columns: 1fr;
  }

  .home-axis__body {
    grid-template-columns: minmax(0, 0.95fr) minmax(17rem, 1.05fr);
    column-gap: 3rem;
  }

  .home-method__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(10, 31, 56, 0.12);
  }

  .home-method__steps li,
  .home-method__steps li:first-child,
  .home-method__steps li:last-child {
    min-height: 15rem;
    padding: 2rem 1.5rem;
    border: 0;
    background: #fff;
  }

  .home-method__steps li::before,
  .home-method__steps li:first-child::before {
    top: 1.35rem;
    left: auto;
    right: 1.3rem;
  }

  .home-method__steps h3 {
    margin-top: 1.5rem;
  }

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

  .home-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .home-section {
    padding: 5.5rem 0;
  }

  .home-intro__layout,
  .home-problems__header,
  .home-differences__layout,
  .home-final-cta__layout {
    grid-template-columns: 1fr;
  }

  .home-intro__content {
    max-width: none;
  }

  .home-problems__header {
    gap: 1.5rem;
  }

  .home-problems__header .home-section__eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .home-problems__list {
    grid-template-columns: 1fr;
  }

  .home-problems__list li,
  .home-problems__list li:nth-child(even) {
    min-height: auto;
    padding: 1.75rem 0;
    border-right: 0;
  }

  .home-axis {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.5rem;
  }

  .home-axis__body {
    grid-template-areas:
      "title"
      "description"
      "list"
      "link";
    grid-template-columns: 1fr;
  }

  .home-axis__body ul {
    margin-bottom: 2rem;
  }

  .home-differences__statement {
    position: static;
  }

  .home-method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cases__grid {
    grid-template-columns: 1fr;
  }

  .home-cases__grid article {
    min-height: auto;
  }

  .home-case__label {
    margin-bottom: 2rem;
  }

  .home-cases__grid article > p:not(.home-case__label) {
    margin-bottom: 2rem;
  }

  .home-cases__grid a {
    margin-top: 0;
  }

  .home-projects__panel {
    grid-template-columns: 1fr;
  }

  .home-projects__brand {
    min-height: 18rem;
  }

  .home-final-cta__actions {
    justify-items: start;
  }

  .home-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer__brand {
    grid-column: 1 / -1;
  }

  .home-footer__legal {
    flex-direction: column;
  }

  .home-footer__legal > div {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .home-section__shell,
  .home-footer__shell {
    width: min(100% - 2rem, 1240px);
  }

  .home-section h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .home-intro__layout,
  .home-differences__layout {
    gap: 2.75rem;
  }

  .home-axis {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-axis__index {
    font-size: 1.25rem;
  }

  .home-axis__body h3 {
    font-size: 2rem;
  }

  .home-method__steps {
    grid-template-columns: 1fr;
  }

  .home-method__steps li,
  .home-method__steps li:first-child,
  .home-method__steps li:last-child {
    min-height: auto;
  }

  .home-projects__panel {
    padding: 1.6rem;
    border-radius: 1rem;
  }

  .home-projects__brand {
    min-height: 15rem;
  }

  .home-projects__content li {
    width: 100%;
  }

  .home-final-cta__actions,
  .home-final-cta__actions .home-button {
    width: 100%;
  }

  .home-footer__top {
    grid-template-columns: 1fr;
  }

  .home-footer__brand {
    grid-column: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-page.home-motion-ready [data-home-reveal],
  .home-page.home-motion-ready [data-home-reveal].is-visible,
  .home-text-link::after,
  .home-axis__link span,
  .home-cases__grid a span,
  .home-projects__button,
  .home-widget,
  .home-widgets {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms;
  }
}

/* Sprint 03: página Soluciones */
.solutions-page {
  background: #f7f9fc;
  color: var(--home-ink);
  font-family: var(--home-font);
}

.solutions-page::before {
  display: none;
}

.solutions-page main,
.solutions-page .home-footer {
  font-family: var(--home-font);
}

.solutions-page main {
  overflow: clip;
}

.solutions-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.solutions-eyebrow {
  margin: 0 0 1rem;
  color: var(--home-blue-deep);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.solutions-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 31, 56, 0.1);
  background:
    radial-gradient(circle at 78% 32%, rgba(100, 157, 205, 0.18), transparent 31%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3f8 100%);
}

.solutions-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(31, 93, 145, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 93, 145, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.solutions-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -15rem;
  width: 44rem;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 93, 145, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.12), 0 0 0 10rem rgba(255, 255, 255, 0.07);
}

.solutions-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: min(50rem, calc(100svh - 5.25rem));
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.solutions-hero__content {
  max-width: 48rem;
  animation: home-hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solutions-hero h1 {
  max-width: 50rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(3.2rem, 5.15vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.99;
  text-wrap: balance;
}

.solutions-hero__support {
  max-width: 43rem;
  margin: 1.65rem 0 2rem;
  color: var(--home-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.68;
}

.solutions-hero__map {
  position: relative;
  display: grid;
  padding: 2rem 0 2rem clamp(1.5rem, 3vw, 2.75rem);
  border-left: 1px solid rgba(31, 93, 145, 0.2);
  animation: home-hero-rise 780ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solutions-hero__map > p {
  margin: 0 0 1.4rem;
  color: var(--home-blue-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-hero__map a {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.15rem 0.8rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(10, 31, 56, 0.12);
}

.solutions-hero__map a:last-child {
  border-bottom: 1px solid rgba(10, 31, 56, 0.12);
}

.solutions-hero__map span {
  grid-row: 1 / 3;
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solutions-hero__map strong {
  color: var(--home-ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.solutions-hero__map small {
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.solutions-hero__map a:hover strong,
.solutions-hero__map a:focus-visible strong {
  color: var(--home-blue);
}

.solutions-section {
  position: relative;
  padding: clamp(6rem, 9vw, 9rem) 0;
}

.solutions-section__intro h2,
.solutions-area h2,
.solutions-integration h2,
.solutions-faq h2,
.solutions-final h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 680;
  letter-spacing: -0.058em;
  line-height: 1.01;
  text-wrap: balance;
}

.solutions-section__intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.solutions-section__intro--split > p,
.solutions-section__intro--split > div:last-child > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.solutions-section__intro--split small {
  display: block;
  margin-top: 1rem;
  color: #718095;
  font-size: 0.83rem;
  line-height: 1.65;
}

.solutions-challenges {
  background: #fff;
}

.solutions-challenges__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(3.5rem, 6vw, 6rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.14);
  list-style: none;
}

.solutions-challenges__list li {
  border-bottom: 1px solid rgba(10, 31, 56, 0.14);
}

.solutions-challenges__list li:nth-child(odd) {
  border-right: 1px solid rgba(10, 31, 56, 0.14);
}

.solutions-challenges__list a {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  gap: 1.25rem;
  min-height: 15rem;
  padding: 2.25rem;
  background: transparent;
  transition: background-color 190ms ease;
}

.solutions-challenges__list a:hover,
.solutions-challenges__list a:focus-visible {
  background: #f4f7fa;
}

.solutions-challenges__list span {
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solutions-challenges__list h3 {
  max-width: 28rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.solutions-challenges__list p {
  max-width: 32rem;
  margin: 0.8rem 0 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.solutions-challenges__list b {
  color: var(--home-blue);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.solutions-challenges__list a:hover b,
.solutions-challenges__list a:focus-visible b {
  transform: translate(2px, 2px);
}

.solutions-area {
  --solutions-area-bg: #f7f9fc;
  --solutions-area-ink: var(--home-ink);
  --solutions-area-muted: var(--home-muted);
  --solutions-area-line: rgba(10, 31, 56, 0.14);
  position: relative;
  scroll-margin-top: 5.25rem;
  padding: clamp(6.5rem, 10vw, 10rem) 0;
  background: var(--solutions-area-bg);
  color: var(--solutions-area-ink);
}

.solutions-area--finance {
  --solutions-area-bg: #f7f9fc;
}

.solutions-area--dark {
  --solutions-area-bg: #0b2139;
  --solutions-area-ink: #fff;
  --solutions-area-muted: #b8c8d5;
  --solutions-area-line: rgba(255, 255, 255, 0.15);
}

.solutions-area--technology {
  --solutions-area-bg: #eaf2f8;
}

.solutions-area__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.solutions-area__identity {
  position: sticky;
  top: 7.5rem;
}

.solutions-area__number {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  color: var(--home-blue);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.solutions-area--dark .solutions-area__number,
.solutions-area--dark .solutions-eyebrow {
  color: #91bfe2;
}

.solutions-area h2 {
  color: var(--solutions-area-ink);
  font-size: clamp(2.65rem, 4.1vw, 4.15rem);
}

.solutions-area__problem {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--solutions-area-line);
}

.solutions-area__label {
  margin: 0 0 1.15rem;
  color: var(--solutions-area-muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-area__problem > p:last-child {
  max-width: 50rem;
  margin: 0;
  color: var(--solutions-area-ink);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.22;
  text-wrap: balance;
}

.solutions-area__support {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.solutions-area__support h3 {
  margin: 0;
  color: var(--solutions-area-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.solutions-area__support p {
  margin: 0;
  color: var(--solutions-area-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.solutions-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--solutions-area-line);
}

.solutions-capabilities article {
  min-height: 12.5rem;
  padding: 2rem 1.8rem 2rem 0;
  border-bottom: 1px solid var(--solutions-area-line);
}

.solutions-capabilities article:nth-child(odd) {
  padding-right: 2.4rem;
  border-right: 1px solid var(--solutions-area-line);
}

.solutions-capabilities article:nth-child(even) {
  padding-left: 2.4rem;
}

.solutions-capabilities span,
.solutions-tech-directions span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solutions-area--dark .solutions-capabilities span {
  color: #8fbad9;
}

.solutions-capabilities h3,
.solutions-tech-directions h3 {
  margin: 0;
  color: var(--solutions-area-ink);
  font-size: 1.15rem;
  line-height: 1.35;
}

.solutions-capabilities p,
.solutions-tech-directions p {
  margin: 0.7rem 0 0;
  color: var(--solutions-area-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.solutions-tech-directions {
  border-top: 1px solid var(--solutions-area-line);
}

.solutions-tech-directions article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--solutions-area-line);
}

.solutions-tech-directions span {
  margin: 0;
}

.solutions-tech-directions p {
  max-width: 43rem;
}

.solutions-area__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 3.5rem;
  padding: 0.45rem 0 0.6rem;
  color: var(--solutions-area-ink);
  font-size: 0.95rem;
  font-weight: 740;
}

.solutions-area__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 190ms ease;
}

.solutions-area__cta span {
  transition: transform 190ms ease;
}

.solutions-area__cta:hover::after,
.solutions-area__cta:focus-visible::after {
  transform: scaleX(1);
}

.solutions-area__cta:hover span,
.solutions-area__cta:focus-visible span {
  transform: translateX(3px);
}

.solutions-method {
  scroll-margin-top: 5.25rem;
  background: #fff;
}

.solutions-method__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(4rem, 7vw, 6.5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.18);
  list-style: none;
}

.solutions-method__steps li {
  position: relative;
  min-height: 17rem;
  padding: 2.5rem 1.5rem 2rem;
  border-right: 1px solid rgba(10, 31, 56, 0.12);
}

.solutions-method__steps li:first-child {
  padding-left: 0;
}

.solutions-method__steps li:last-child {
  border-right: 0;
}

.solutions-method__steps li::before {
  content: "";
  position: absolute;
  top: -0.38rem;
  left: 1.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--home-blue);
  box-shadow: 0 0 0 1px var(--home-blue);
}

.solutions-method__steps li:first-child::before {
  left: 0;
}

.solutions-method__steps span {
  color: var(--home-blue-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solutions-method__steps h3 {
  margin: 2rem 0 1rem;
  color: var(--home-ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.solutions-method__steps p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.solutions-integration {
  scroll-margin-top: 5.25rem;
  background: #edf3f8;
}

.solutions-integration__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.solutions-integration__statement {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.solutions-integration__statement > p:last-child {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.solutions-integration__connections {
  border-top: 1px solid rgba(10, 31, 56, 0.15);
}

.solutions-integration__connections article {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.15);
}

.solutions-integration__connections span {
  color: var(--home-blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solutions-integration__connections h3 {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--home-ink);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.solutions-integration__connections p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.solutions-faq {
  scroll-margin-top: 5.25rem;
  background: #fff;
}

.solutions-faq__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.solutions-faq__header {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.solutions-faq__header > p:last-child {
  max-width: 30rem;
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.solutions-faq__list {
  border-top: 1px solid rgba(10, 31, 56, 0.16);
}

.solutions-faq details {
  border-bottom: 1px solid rgba(10, 31, 56, 0.16);
}

.solutions-faq summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--home-ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 710;
  line-height: 1.45;
  list-style: none;
}

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

.solutions-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--home-blue);
  font-size: 1.35rem;
  font-weight: 450;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.solutions-faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.solutions-faq details p {
  max-width: 45rem;
  margin: -0.2rem 0 1.8rem;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.solutions-final {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: #0a1f38;
  color: #fff;
}

.solutions-final__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.solutions-final .solutions-eyebrow {
  color: #91bfe2;
}

.solutions-final h2 {
  max-width: 50rem;
  color: #fff;
}

.solutions-final__layout > div:first-child > p:last-child {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: #b8c8d5;
  font-size: 1.02rem;
  line-height: 1.75;
}

.solutions-final__actions {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}

.solutions-final__whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0 0.6rem;
  color: #d7e4ee;
  font-size: 0.92rem;
  font-weight: 720;
}

.solutions-final__whatsapp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.solutions-final__whatsapp:hover::after,
.solutions-final__whatsapp:focus-visible::after {
  transform: scaleX(1);
}

.solutions-hero__map a:focus-visible,
.solutions-challenges__list a:focus-visible,
.solutions-area__cta:focus-visible,
.solutions-faq summary:focus-visible,
.solutions-final__whatsapp:focus-visible {
  outline: 3px solid #79add8;
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .solutions-shell {
    width: min(100% - 2.5rem, 1240px);
  }

  .solutions-hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    gap: 4rem;
  }

  .solutions-hero h1 {
    font-size: clamp(3.25rem, 5.9vw, 4.65rem);
  }

  .solutions-area__layout,
  .solutions-integration__layout,
  .solutions-faq__layout {
    gap: 4.5rem;
  }

  .solutions-method__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(10, 31, 56, 0.12);
    border-top: 0;
  }

  .solutions-method__steps li,
  .solutions-method__steps li:first-child {
    min-height: 15rem;
    padding: 2rem 1.5rem;
    border: 0;
    background: #fff;
  }

  .solutions-method__steps li::before,
  .solutions-method__steps li:first-child::before {
    top: 1.4rem;
    right: 1.3rem;
    left: auto;
  }

  .solutions-method__steps h3 {
    margin-top: 1.6rem;
  }
}

@media (max-width: 840px) {
  .solutions-hero__layout,
  .solutions-section__intro--split,
  .solutions-area__layout,
  .solutions-integration__layout,
  .solutions-faq__layout,
  .solutions-final__layout {
    grid-template-columns: 1fr;
  }

  .solutions-hero__layout {
    gap: 4rem;
    min-height: auto;
    padding: 5.5rem 0 6rem;
  }

  .solutions-hero__content {
    max-width: 44rem;
  }

  .solutions-hero h1 {
    max-width: 44rem;
    font-size: clamp(3.15rem, 9.2vw, 4.7rem);
  }

  .solutions-hero__map {
    padding: 0 0 0 1.75rem;
  }

  .solutions-section__intro--split {
    align-items: start;
    gap: 1.8rem;
  }

  .solutions-challenges__list {
    grid-template-columns: 1fr;
  }

  .solutions-challenges__list li:nth-child(odd) {
    border-right: 0;
  }

  .solutions-challenges__list a {
    min-height: auto;
  }

  .solutions-area__identity,
  .solutions-integration__statement,
  .solutions-faq__header {
    position: static;
  }

  .solutions-area__number {
    margin-bottom: 2.5rem;
  }

  .solutions-area__support {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .solutions-method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-integration__layout,
  .solutions-faq__layout,
  .solutions-final__layout {
    gap: 3.5rem;
  }
}

@media (max-width: 560px) {
  .solutions-shell {
    width: min(100% - 2rem, 1240px);
  }

  .solutions-hero__layout {
    gap: 3.5rem;
    padding: 4.5rem 0 5rem;
  }

  .solutions-hero h1 {
    font-size: clamp(2.72rem, 12.4vw, 3.55rem);
    letter-spacing: -0.058em;
  }

  .solutions-hero__support {
    font-size: 1rem;
    line-height: 1.62;
  }

  .solutions-hero__map {
    padding-left: 1.1rem;
  }

  .solutions-section,
  .solutions-area,
  .solutions-final {
    padding: 5.5rem 0;
  }

  .solutions-section__intro h2,
  .solutions-area h2,
  .solutions-integration h2,
  .solutions-faq h2,
  .solutions-final h2 {
    font-size: clamp(2.3rem, 11vw, 3.15rem);
  }

  .solutions-challenges__list {
    margin-top: 3rem;
  }

  .solutions-challenges__list a {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.75rem 0;
  }

  .solutions-challenges__list b {
    display: none;
  }

  .solutions-area__layout {
    gap: 3.5rem;
  }

  .solutions-area__problem > p:last-child {
    font-size: 1.65rem;
  }

  .solutions-capabilities {
    grid-template-columns: 1fr;
  }

  .solutions-capabilities article,
  .solutions-capabilities article:nth-child(odd),
  .solutions-capabilities article:nth-child(even) {
    min-height: auto;
    padding: 1.65rem 0;
    border-right: 0;
  }

  .solutions-tech-directions article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .solutions-method__steps {
    grid-template-columns: 1fr;
  }

  .solutions-method__steps li,
  .solutions-method__steps li:first-child {
    min-height: auto;
  }

  .solutions-final__actions,
  .solutions-final__actions .home-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-hero__content,
  .solutions-hero__map,
  .solutions-hero__map a,
  .solutions-challenges__list a,
  .solutions-challenges__list b,
  .solutions-area__cta::after,
  .solutions-area__cta span,
  .solutions-faq summary::after,
  .solutions-final__whatsapp::after {
    animation: none;
    transition-duration: 0.01ms;
  }
}

/* Sprint 04: página Nosotros */
.about-page main,
.about-page .home-footer,
.about-page .home-widgets {
  font-family: var(--home-font);
}

.about-page main {
  overflow: hidden;
  background: #fff;
  color: var(--home-ink);
}

.about-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.about-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--home-blue-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-eyebrow--light {
  color: #9dc0dc;
}

.about-eyebrow--projects {
  color: #a84713;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page li {
  font-family: var(--home-font);
}

.about-page h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.45rem, 4.35vw, 4.45rem);
  font-weight: 680;
  letter-spacing: -0.057em;
  line-height: 1.02;
  text-wrap: balance;
}

.about-page .home-text-link:focus-visible,
.about-projects__action a:focus-visible,
.about-final__link:focus-visible {
  outline: 3px solid #6fa4d2;
  outline-offset: 4px;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 5.25rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 31, 56, 0.1);
  background: #f4f7fa;
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(31, 93, 145, 0.07) 50%, transparent calc(50% + 1px));
  background-size: 25% 100%;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -17rem;
  right: -12rem;
  width: 41rem;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 93, 145, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.28), 0 0 0 12rem rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.about-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
  min-height: calc(100svh - 5.25rem);
  padding: clamp(5rem, 10vh, 8.5rem) 0;
}

.about-hero__content {
  max-width: 52rem;
  animation: about-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-hero h1 {
  max-width: 50rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(3.25rem, 5.75vw, 5.75rem);
  font-weight: 710;
  letter-spacing: -0.067em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-hero__content > p:not(.about-eyebrow) {
  max-width: 44rem;
  margin: 1.7rem 0 2.15rem;
  color: #4f6073;
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.about-hero__composition {
  position: relative;
  padding: 2.25rem 0 2.25rem clamp(1.6rem, 3.5vw, 3.4rem);
  border-left: 1px solid rgba(31, 93, 145, 0.24);
  animation: about-rise 780ms 110ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-hero__index {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 2.4rem;
}

.about-hero__index span {
  color: var(--home-blue);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero__index strong {
  color: var(--home-ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.about-hero__composition ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.16);
  list-style: none;
}

.about-hero__composition li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.16);
}

.about-hero__composition li span {
  padding-top: 0.2rem;
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.about-hero__composition li p {
  margin: 0;
  color: #35475c;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.5;
}

@keyframes about-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  position: relative;
  padding: clamp(6rem, 10vw, 9.5rem) 0;
}

.about-section__heading {
  max-width: 56rem;
}

.about-section__heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: none;
}

.about-section__heading--split > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-purpose {
  background: #fff;
}

.about-purpose__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(4rem, 11vw, 11rem);
}

.about-purpose__narrative {
  padding-top: 0.25rem;
}

.about-purpose__narrative p {
  margin: 0 0 1.45rem;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.about-purpose__narrative .about-lead {
  margin-bottom: 2.2rem;
  color: #263b51;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 540;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.about-manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9.5rem) 0;
  background: #0c2239;
  color: #fff;
}

.about-manifesto::after {
  content: "";
  position: absolute;
  top: -20rem;
  right: -16rem;
  width: 47rem;
  aspect-ratio: 1;
  border: 1px solid rgba(157, 192, 220, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(255, 255, 255, 0.012), 0 0 0 14rem rgba(255, 255, 255, 0.009);
  pointer-events: none;
}

.about-manifesto__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.about-manifesto header {
  position: sticky;
  top: 8rem;
}

.about-manifesto h2 {
  color: #fff;
}

.about-manifesto header > p:last-child {
  max-width: 33rem;
  margin: 1.7rem 0 0;
  color: #b5c6d4;
  font-size: 1rem;
  line-height: 1.75;
}

.about-manifesto__statements {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.about-manifesto__statements li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1.25rem;
  min-height: 13rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-manifesto__statements > li > span {
  color: #87b2d3;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.about-manifesto__statements h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-manifesto__statements p {
  max-width: 37rem;
  margin: 0;
  color: #acbdcb;
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-disciplines {
  background: #f6f8fb;
}

.about-disciplines__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(10, 31, 56, 0.17);
  border-bottom: 1px solid rgba(10, 31, 56, 0.17);
}

.about-disciplines__grid article {
  min-height: 24rem;
  padding: 2.3rem clamp(1.5rem, 3vw, 2.8rem) 2.5rem;
  border-right: 1px solid rgba(10, 31, 56, 0.14);
}

.about-disciplines__grid article:first-child {
  padding-left: 0;
}

.about-disciplines__grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-disciplines__grid span {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--home-blue);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.about-disciplines__grid h3 {
  margin: 0 0 1.1rem;
  color: var(--home-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.15;
}

.about-disciplines__grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-disciplines__example {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.8rem;
}

.about-disciplines__example > p {
  margin: 0.35rem 0 0;
  color: var(--home-blue-deep);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-disciplines__example h3 {
  max-width: 48rem;
  margin: 0;
  color: #263b51;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.42;
}

.about-disciplines__example .home-text-link {
  margin-top: 0.1rem;
  white-space: nowrap;
}

.about-principles {
  background: #fff;
}

.about-principles__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(4rem, 11vw, 11rem);
}

.about-principles header {
  position: sticky;
  top: 8rem;
}

.about-principles header > p:last-child {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-principles__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.16);
  list-style: none;
}

.about-principles__list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.9rem;
  min-height: 10.5rem;
  padding: 1.7rem 1.6rem 1.7rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.16);
}

.about-principles__list li:nth-child(odd) {
  border-right: 1px solid rgba(10, 31, 56, 0.13);
}

.about-principles__list li:nth-child(even) {
  padding-left: 1.6rem;
}

.about-principles__list > li > span {
  color: var(--home-blue);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.about-principles__list h3 {
  margin: 0 0 0.5rem;
  color: var(--home-ink);
  font-size: 1.08rem;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.about-principles__list p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-capacities {
  background: #eef3f8;
}

.about-capacities__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.about-capacities__intro .about-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.about-capacities__intro > p:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-capacities__list {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(10, 31, 56, 0.18);
}

.about-capacities__list article {
  display: grid;
  grid-template-columns: minmax(8rem, 0.3fr) minmax(15rem, 0.78fr) minmax(20rem, 0.92fr);
  align-items: baseline;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
}

.about-capacities__list span {
  color: var(--home-blue-deep);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-capacities__list h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.about-capacities__list p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-capacities__coverage {
  display: flex;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 2.5rem 0 0 auto;
  color: #415368;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-capacities__coverage span {
  flex: 0 0 auto;
  color: var(--home-blue-deep);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-projects {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  border-top: 1px solid rgba(168, 71, 19, 0.14);
  border-bottom: 1px solid rgba(168, 71, 19, 0.14);
  background: #fff8f3;
}

.about-projects__layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.about-projects__identity {
  display: grid;
  justify-items: start;
  gap: 1.1rem;
  padding-right: 3rem;
  border-right: 1px solid rgba(168, 71, 19, 0.22);
}

.about-projects__identity img {
  width: clamp(5.5rem, 8vw, 7.5rem);
  height: auto;
  padding: 0.45rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgba(101, 52, 21, 0.1);
}

.about-projects__identity span {
  color: #97502a;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-projects__content h2 {
  max-width: 50rem;
}

.about-projects__content > p:not(.about-eyebrow) {
  max-width: 45rem;
  margin: 1.45rem 0 0;
  color: #675548;
  font-size: 1rem;
  line-height: 1.72;
}

.about-projects__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-top: 2rem;
}

.about-projects__action a {
  display: inline-flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid #a84713;
  border-radius: 0.72rem;
  background: #c65318;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 720;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.about-projects__action a:hover,
.about-projects__action a:focus-visible {
  background: #a84713;
  box-shadow: 0 14px 30px rgba(168, 71, 19, 0.18);
  transform: translateY(-2px);
}

.about-projects__action small {
  color: #816c5e;
  font-size: 0.78rem;
}

.about-method {
  background: #fff;
}

.about-method__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.about-method__layout > div:first-child > p:last-child {
  max-width: 31rem;
  margin: 1.45rem 0 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-method__steps {
  margin: 0 0 2.25rem;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.18);
  list-style: none;
}

.about-method__steps li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
  color: var(--home-ink);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 630;
}

.about-method__steps span {
  color: var(--home-blue);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.about-final {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background: #12304e;
  color: #fff;
}

.about-final::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.018), 0 0 0 12rem rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.about-final__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(17rem, 0.82fr);
  align-items: end;
  gap: clamp(4rem, 9vw, 9rem);
}

.about-final h2 {
  color: #fff;
}

.about-final__layout > div:first-child > p:last-child {
  max-width: 44rem;
  margin: 1.4rem 0 0;
  color: #b7c7d5;
  font-size: 1rem;
  line-height: 1.72;
}

.about-final__actions {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}

.home-button--light {
  border-color: #fff;
  background: #fff;
  color: #12304e;
  box-shadow: 0 14px 34px rgba(4, 18, 32, 0.16);
}

.home-button--light:hover,
.home-button--light:focus-visible {
  border-color: #eaf2f8;
  background: #eaf2f8;
  box-shadow: 0 18px 38px rgba(4, 18, 32, 0.22);
}

.about-final__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #dceaf4;
  font-size: 0.9rem;
  font-weight: 690;
}

.about-final__link span {
  transition: transform 180ms ease;
}

.about-final__link:hover span,
.about-final__link:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .about-hero__layout {
    gap: 4rem;
  }

  .about-purpose__layout,
  .about-manifesto__layout,
  .about-principles__layout,
  .about-method__layout {
    gap: 5rem;
  }

  .about-disciplines__example {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .about-disciplines__example .home-text-link {
    grid-column: 2;
  }

  .about-capacities__list article {
    grid-template-columns: 7rem minmax(15rem, 0.8fr) minmax(17rem, 1fr);
  }

}

@media (max-width: 840px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero__layout,
  .about-purpose__layout,
  .about-manifesto__layout,
  .about-principles__layout,
  .about-method__layout,
  .about-final__layout {
    grid-template-columns: 1fr;
  }

  .about-hero__layout {
    gap: 4.5rem;
    min-height: auto;
    padding: 5.5rem 0 6rem;
  }

  .about-hero__content {
    max-width: 46rem;
  }

  .about-hero h1 {
    max-width: 44rem;
    font-size: clamp(3.2rem, 9vw, 4.8rem);
  }

  .about-hero__composition {
    max-width: 40rem;
  }

  .about-section__heading--split,
  .about-capacities__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .about-capacities__intro .about-eyebrow {
    grid-column: auto;
    margin-bottom: -0.5rem;
  }

  .about-purpose__layout,
  .about-manifesto__layout,
  .about-principles__layout,
  .about-method__layout {
    gap: 3.75rem;
  }

  .about-manifesto header,
  .about-principles header {
    position: static;
  }

  .about-disciplines__grid {
    grid-template-columns: 1fr;
  }

  .about-disciplines__grid article,
  .about-disciplines__grid article:first-child,
  .about-disciplines__grid article:last-child {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 31, 56, 0.14);
  }

  .about-disciplines__grid article:last-child {
    border-bottom: 0;
  }

  .about-disciplines__grid span {
    margin-bottom: 1.5rem;
  }

  .about-capacities__list article {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .about-capacities__list article p {
    grid-column: 2;
  }

  .about-projects__layout {
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 3.5rem;
  }

  .about-projects__identity {
    padding-right: 2rem;
  }

  .about-final__actions {
    gap: 1.3rem;
  }
}

@media (max-width: 600px) {
  .about-shell {
    width: min(100% - 2rem, 1240px);
  }

  .about-page h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .about-hero__layout {
    gap: 3.5rem;
    padding: 4.5rem 0 5rem;
  }

  .about-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.75rem);
    line-height: 1;
  }

  .about-hero__content > p:not(.about-eyebrow) {
    margin-top: 1.4rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .about-hero__content .home-button {
    width: 100%;
  }

  .about-hero__composition {
    padding: 0 0 0 1.2rem;
  }

  .about-hero__index {
    margin-bottom: 1.5rem;
  }

  .about-section,
  .about-manifesto {
    padding: 5.5rem 0;
  }

  .about-purpose__narrative .about-lead {
    font-size: 1.25rem;
  }

  .about-manifesto__statements li {
    min-height: auto;
    padding: 1.8rem 0;
  }

  .about-disciplines__example {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-disciplines__example .home-text-link {
    grid-column: auto;
    white-space: normal;
  }

  .about-principles__list {
    grid-template-columns: 1fr;
  }

  .about-principles__list li,
  .about-principles__list li:nth-child(even) {
    min-height: auto;
    padding: 1.45rem 0;
    border-right: 0;
  }

  .about-capacities__list article {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.65rem 0;
  }

  .about-capacities__list article p {
    grid-column: auto;
  }

  .about-capacities__coverage {
    display: grid;
    gap: 0.65rem;
    margin-top: 2rem;
  }

  .about-projects__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-projects__identity {
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 71, 19, 0.22);
  }

  .about-projects__action {
    display: grid;
  }

  .about-projects__action a {
    justify-content: center;
    width: 100%;
  }

  .about-final__actions,
  .about-final__actions .home-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .about-hero h1 {
    font-size: 2.6rem;
  }

  .about-manifesto__statements li {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__content,
  .about-hero__composition,
  .about-projects__action a,
  .about-final__link span {
    animation: none;
    transition-duration: 0.01ms;
  }
}

/* Sprint 05: Contacto, formulario real y privacidad */
.contact-page main,
.contact-page .home-footer,
.contact-page .home-widgets,
.privacy-page main,
.privacy-page .home-footer,
.redirect-page {
  font-family: var(--home-font);
}

.contact-page main,
.privacy-page main {
  overflow: clip;
  background: #fff;
  color: var(--home-ink);
}

.contact-shell,
.privacy-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.contact-eyebrow {
  margin: 0 0 1.05rem;
  color: var(--home-blue-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-eyebrow--light {
  color: #a7c6dd;
}

.contact-eyebrow--projects {
  color: #a84713;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p,
.contact-page li,
.privacy-page h1,
.privacy-page h2,
.privacy-page h3,
.privacy-page p {
  font-family: var(--home-font);
}

.contact-page h2,
.privacy-page h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.4rem, 4.25vw, 4.25rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-wrap: balance;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 5.25rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 31, 56, 0.1);
  background: #f3f7fa;
}

.contact-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 93, 145, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 93, 145, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18rem;
  right: -12rem;
  width: 45rem;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 93, 145, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.22), 0 0 0 12rem rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.contact-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
  min-height: calc(100svh - 5.25rem);
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.contact-hero__content {
  max-width: 50rem;
  animation: contact-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-hero h1 {
  max-width: 48rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(3.5rem, 6.3vw, 6.35rem);
  font-weight: 710;
  letter-spacing: -0.07em;
  line-height: 0.96;
  text-wrap: balance;
}

.contact-hero__content > p:not(.contact-eyebrow) {
  max-width: 43rem;
  margin: 1.7rem 0 2.15rem;
  color: #4f6073;
  font-size: clamp(1.03rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.contact-hero__orientation {
  padding: 2.2rem 0 2.2rem clamp(1.7rem, 3.6vw, 3.5rem);
  border-left: 1px solid rgba(31, 93, 145, 0.24);
  animation: contact-rise 780ms 110ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-hero__orientation > p {
  margin: 0 0 1.7rem;
  color: var(--home-blue-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hero__orientation ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(10, 31, 56, 0.17);
  list-style: none;
}

.contact-hero__orientation li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.17);
}

.contact-hero__orientation li > span {
  padding-top: 0.18rem;
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.contact-hero__orientation strong,
.contact-hero__orientation small {
  display: block;
}

.contact-hero__orientation strong {
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-hero__orientation small {
  margin-top: 0.35rem;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-main {
  padding: clamp(6rem, 10vw, 9.5rem) 0;
  background: #eef3f8;
  scroll-margin-top: 5.5rem;
}

.contact-main__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.contact-guide {
  position: sticky;
  top: 7.5rem;
}

.contact-guide h2 {
  font-size: clamp(2.55rem, 4.1vw, 4rem);
}

.contact-guide > p:not(.contact-eyebrow):not(.contact-guide__coverage) {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.74;
}

.contact-guide__channels {
  margin-top: 3rem;
  border-top: 1px solid rgba(10, 31, 56, 0.18);
}

.contact-guide__channels h3 {
  margin: 0;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
  color: var(--home-ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-guide__channels a {
  display: grid;
  gap: 0.18rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
}

.contact-guide__channels a span {
  color: var(--home-muted);
  font-size: 0.72rem;
}

.contact-guide__channels a strong {
  color: var(--home-blue-deep);
  font-size: 0.94rem;
  font-weight: 680;
}

.contact-guide__channels a:hover strong,
.contact-guide__channels a:focus-visible strong {
  color: var(--home-blue);
}

.contact-guide__coverage {
  display: grid;
  gap: 0.45rem;
  margin: 2rem 0 0;
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.contact-guide__coverage span {
  color: var(--home-blue-deep);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(10, 31, 56, 0.12);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 22px 60px rgba(10, 31, 56, 0.07);
}

.contact-form-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(10, 31, 56, 0.14);
}

.contact-form-panel__heading p,
.contact-form-panel__heading strong {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-form-panel__heading p {
  color: var(--home-muted);
}

.contact-form-panel__heading p span,
.contact-field label > span,
.contact-consent label > span {
  color: #a53d28;
  font-weight: 800;
}

.contact-form-panel__heading strong {
  max-width: 23rem;
  color: var(--home-blue-deep);
  font-weight: 680;
  text-align: right;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.25rem;
}

.contact-field {
  min-width: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label,
.contact-choice legend {
  display: block;
  margin-bottom: 0.48rem;
  color: var(--home-ink);
  font-size: 0.86rem;
  font-weight: 690;
  line-height: 1.45;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(10, 31, 56, 0.2);
  border-radius: 0.72rem;
  background: #fbfcfe;
  color: var(--home-ink);
  font: 500 1rem/1.45 var(--home-font);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 3.35rem;
  padding: 0.72rem 0.88rem;
}

.contact-field textarea {
  min-height: 10rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.contact-field select {
  cursor: pointer;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(31, 93, 145, 0.42);
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible,
.contact-choice input:focus-visible,
.contact-consent input:focus-visible,
.contact-guide__channels a:focus-visible,
.contact-projects a:focus-visible,
.contact-whatsapp a:focus-visible,
.privacy-content a:focus-visible,
.contact-page .home-footer__legal a:focus-visible,
.privacy-page .home-footer__legal a:focus-visible {
  outline: 3px solid #6fa4d2;
  outline-offset: 3px;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  border-color: var(--home-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 93, 145, 0.1);
}

.contact-field input[aria-invalid="true"],
.contact-field select[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"],
.contact-consent input[aria-invalid="true"] {
  border-color: #a53d28;
  box-shadow: 0 0 0 3px rgba(165, 61, 40, 0.09);
}

.contact-field > small,
.contact-choice > small,
.contact-consent > small {
  display: block;
  margin-top: 0.42rem;
  color: #697789;
  font-size: 0.72rem;
  line-height: 1.48;
}

.contact-field__error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.3rem;
  color: #92341f;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.contact-choice__options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.contact-choice__options input {
  position: absolute;
  opacity: 0;
}

.contact-choice__options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(10, 31, 56, 0.18);
  border-radius: 0.72rem;
  background: #fbfcfe;
  color: #415368;
  font-size: 0.84rem;
  font-weight: 640;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.contact-choice__options input:checked + span {
  border-color: var(--home-blue-deep);
  background: var(--home-blue-soft);
  color: var(--home-blue-deep);
  box-shadow: inset 0 0 0 1px var(--home-blue-deep);
}

.contact-choice__options input:focus-visible + span {
  outline: 3px solid #6fa4d2;
  outline-offset: 3px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-consent {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.2rem 0.75rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(10, 31, 56, 0.14);
  border-radius: 0.85rem;
  background: #f6f9fc;
}

.contact-consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.18rem 0 0;
  accent-color: var(--home-blue-deep);
}

.contact-consent label {
  color: #35475c;
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact-consent label a {
  color: var(--home-blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-consent > small,
.contact-consent .contact-field__error {
  grid-column: 2;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-form__submit button {
  flex: 0 0 auto;
  min-width: 10.5rem;
}

.contact-form__submit button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__submit p {
  max-width: 27rem;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.contact-form__status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.55;
}

.contact-form__status.is-success,
.contact-form__status.is-error {
  display: block;
}

.contact-form__status.is-success {
  border-color: rgba(26, 115, 74, 0.3);
  background: #eaf7f0;
  color: #125f3b;
}

.contact-form__status.is-error {
  border-color: rgba(146, 52, 31, 0.28);
  background: #fff1ed;
  color: #7c2a18;
}

.contact-form__status:focus {
  outline: 3px solid #6fa4d2;
  outline-offset: 3px;
}

.contact-form__noscript {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff1ed;
  color: #7c2a18;
  font-size: 0.84rem;
}

.contact-form__noscript a {
  font-weight: 700;
  text-decoration: underline;
}

.contact-process {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9.5rem) 0;
  background: #0c2239;
  color: #fff;
}

.contact-process::after {
  content: "";
  position: absolute;
  top: -20rem;
  right: -16rem;
  width: 48rem;
  aspect-ratio: 1;
  border: 1px solid rgba(167, 198, 221, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(255, 255, 255, 0.012), 0 0 0 14rem rgba(255, 255, 255, 0.009);
  pointer-events: none;
}

.contact-section-heading {
  position: relative;
  z-index: 1;
  max-width: 53rem;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.contact-process h2,
.contact-whatsapp h2 {
  color: #fff;
}

.contact-process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.contact-process__steps li {
  min-height: 18rem;
  padding: 2rem clamp(1.2rem, 2.3vw, 2.2rem) 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-process__steps li:first-child {
  padding-left: 0;
}

.contact-process__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-process__steps span {
  display: block;
  margin-bottom: 4rem;
  color: #87b2d3;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.contact-process__steps h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.contact-process__steps p {
  margin: 0;
  color: #afc0ce;
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-answers {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: #fff;
}

.contact-answers__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-answers header {
  position: sticky;
  top: 8rem;
}

.contact-answers header > p:last-child {
  max-width: 28rem;
  margin: 1.45rem 0 0;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-answers__list {
  border-top: 1px solid rgba(10, 31, 56, 0.18);
}

.contact-answers details {
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
}

.contact-answers summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 670;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.contact-answers summary::-webkit-details-marker {
  display: none;
}

.contact-answers summary::after {
  content: "+";
  position: absolute;
  top: 1.45rem;
  right: 0;
  color: var(--home-blue);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.contact-answers details[open] summary::after {
  transform: rotate(45deg);
}

.contact-answers summary:focus-visible {
  outline: 3px solid #6fa4d2;
  outline-offset: 4px;
}

.contact-answers details p {
  max-width: 43rem;
  margin: -0.3rem 0 1.6rem;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-projects {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  border-top: 1px solid rgba(168, 71, 19, 0.16);
  border-bottom: 1px solid rgba(168, 71, 19, 0.16);
  background: #fff8f3;
}

.contact-projects__layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-projects__brand {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding-right: 3rem;
  border-right: 1px solid rgba(168, 71, 19, 0.22);
}

.contact-projects__brand img {
  width: clamp(9.5rem, 13vw, 12.5rem);
  height: auto;
  object-fit: contain;
}

.contact-projects__brand span {
  color: #97502a;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-projects h2 {
  max-width: 52rem;
}

.contact-projects__layout > div:last-child > p:not(.contact-eyebrow) {
  max-width: 44rem;
  margin: 1.4rem 0 1.8rem;
  color: #675548;
  font-size: 0.96rem;
  line-height: 1.72;
}

.contact-projects a {
  display: inline-flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid #a84713;
  border-radius: 0.72rem;
  background: #c65318;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 720;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-projects a:hover,
.contact-projects a:focus-visible {
  background: #a84713;
  box-shadow: 0 14px 30px rgba(168, 71, 19, 0.18);
  transform: translateY(-2px);
}

.contact-projects small {
  display: block;
  margin-top: 0.75rem;
  color: #816c5e;
  font-size: 0.76rem;
}

.contact-whatsapp {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background: #12304e;
  color: #fff;
}

.contact-whatsapp__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  align-items: end;
  gap: clamp(4rem, 9vw, 9rem);
}

.contact-whatsapp__layout > div > p:last-child {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #b7c7d5;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-whatsapp__layout > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.75rem;
  background: #fff;
  color: #12304e;
  font-size: 0.92rem;
  font-weight: 720;
}

.contact-whatsapp__layout > a:hover,
.contact-whatsapp__layout > a:focus-visible {
  background: #eaf2f8;
  transform: translateY(-2px);
}

.contact-page .home-footer__legal a,
.privacy-page .home-footer__legal a {
  color: #8199ad;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-page .home-widgets.is-contact-form-visible,
.contact-page .home-widgets.is-contact-action-visible {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(0.8rem) !important;
}

.contact-page .home-footer__legal a:hover,
.contact-page .home-footer__legal a:focus-visible,
.privacy-page .home-footer__legal a:hover,
.privacy-page .home-footer__legal a:focus-visible {
  color: #fff;
}

/* Información mínima de privacidad */
.privacy-hero {
  padding: clamp(6rem, 11vw, 10rem) 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.1);
  background: #f3f7fa;
}

.privacy-hero h1 {
  max-width: 58rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 710;
  letter-spacing: -0.068em;
  line-height: 0.98;
  text-wrap: balance;
}

.privacy-hero .privacy-shell > p:last-child {
  max-width: 45rem;
  margin: 1.6rem 0 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.privacy-content {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: #fff;
  scroll-margin-top: 5.5rem;
}

.privacy-content__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.privacy-content aside {
  position: sticky;
  top: 8rem;
}

.privacy-content aside h2 {
  font-size: clamp(2.3rem, 4vw, 3.75rem);
}

.privacy-content aside a {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--home-blue-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.privacy-content__body {
  border-top: 1px solid rgba(10, 31, 56, 0.18);
}

.privacy-content__body section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(10, 31, 56, 0.18);
}

.privacy-content__body h3 {
  margin: 0 0 0.9rem;
  color: var(--home-ink);
  font-size: 1.25rem;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.privacy-content__body p {
  margin: 0 0 0.85rem;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-content__body p:last-child {
  margin-bottom: 0;
}

.privacy-content__body a {
  color: var(--home-blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content__notice {
  margin-top: 1.5rem;
  padding: 1.5rem !important;
  border: 1px solid rgba(146, 52, 31, 0.22) !important;
  border-radius: 0.85rem;
  background: #fff6f2;
}

/* Compatibilidad local para la antigua página Cotizaciones */
.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #f3f7fa;
}

.redirect-page__content {
  width: min(38rem, calc(100% - 2rem));
  padding: 3rem;
  border: 1px solid rgba(10, 31, 56, 0.12);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}

.redirect-page__content img {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.redirect-page__content h1 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.redirect-page__content p {
  margin: 1rem 0 1.7rem;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .contact-hero__layout {
    gap: 4rem;
  }

  .contact-main__layout,
  .contact-answers__layout,
  .privacy-content__layout {
    gap: 5rem;
  }

}

@media (max-width: 900px) {
  .contact-hero,
  .contact-hero__layout {
    min-height: auto;
  }

  .contact-hero__layout,
  .contact-main__layout,
  .contact-answers__layout,
  .contact-whatsapp__layout,
  .privacy-content__layout {
    grid-template-columns: 1fr;
  }

  .contact-hero__layout {
    gap: 4.5rem;
    padding: 5.5rem 0 6rem;
  }

  .contact-hero__content {
    max-width: 46rem;
  }

  .contact-hero h1 {
    max-width: 45rem;
    font-size: clamp(3.3rem, 10vw, 5rem);
  }

  .contact-hero__orientation {
    max-width: 43rem;
  }

  .contact-main__layout,
  .contact-answers__layout,
  .privacy-content__layout {
    gap: 4rem;
  }

  .contact-guide,
  .contact-answers header,
  .privacy-content aside {
    position: static;
  }

  .contact-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-process__steps li,
  .contact-process__steps li:first-child,
  .contact-process__steps li:last-child {
    min-height: 15rem;
    padding: 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
  }

  .contact-process__steps li:nth-child(2n) {
    border-right: 0;
  }

  .contact-projects__layout {
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 3.5rem;
  }

  .contact-projects__brand {
    padding-right: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-shell,
  .privacy-shell {
    width: min(100% - 2rem, 1240px);
  }

  .contact-page h2,
  .privacy-page h2 {
    font-size: clamp(2.3rem, 11vw, 3.15rem);
  }

  .contact-hero__layout {
    gap: 3.5rem;
    padding: 4.5rem 0 5rem;
  }

  .contact-hero h1,
  .privacy-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.85rem);
    line-height: 1;
  }

  .contact-hero__content > p:not(.contact-eyebrow) {
    margin-top: 1.4rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .contact-hero__content .home-button {
    width: 100%;
  }

  .contact-hero__orientation {
    padding: 0 0 0 1.2rem;
  }

  .contact-main,
  .contact-process,
  .contact-answers {
    padding: 5.5rem 0;
  }

  .contact-form-panel {
    padding: 1.35rem 1rem;
    border-radius: 1rem;
  }

  .contact-form-panel__heading {
    display: grid;
    gap: 0.7rem;
  }

  .contact-form-panel__heading strong {
    text-align: left;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-field--full {
    grid-column: auto;
  }

  .contact-choice__options {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    display: grid;
  }

  .contact-form__submit button {
    width: 100%;
  }

  .contact-process__steps {
    grid-template-columns: 1fr;
  }

  .contact-process__steps li,
  .contact-process__steps li:first-child,
  .contact-process__steps li:last-child {
    min-height: auto;
    padding: 1.7rem 0;
    border-right: 0;
  }

  .contact-process__steps span {
    margin-bottom: 1.8rem;
  }

  .contact-projects__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-projects__brand {
    padding: 0 0 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 71, 19, 0.22);
  }

  .contact-projects a {
    justify-content: center;
    width: 100%;
  }

  .contact-whatsapp__layout > a {
    width: 100%;
  }

  .privacy-hero {
    padding: 5rem 0;
  }

  .privacy-content {
    padding: 5.5rem 0;
  }

  .redirect-page__content {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 390px) {
  .contact-hero h1,
  .privacy-hero h1 {
    font-size: 2.7rem;
  }

  .contact-consent {
    padding: 1rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__content,
  .contact-hero__orientation,
  .contact-answers summary::after,
  .contact-projects a,
  .contact-whatsapp a {
    animation: none;
    transition-duration: 0.01ms;
  }
}

/* Sprint 06: página de error coherente con el sistema público */
.error-page {
  background: #f7f9fc;
  color: var(--home-ink);
  font-family: var(--home-font);
}

.error-page::before {
  display: none;
}

.error-page__section {
  display: grid;
  min-height: clamp(34rem, 68vh, 50rem);
  place-items: center;
  padding: 6rem 1.5rem 7rem;
  background:
    radial-gradient(circle at 76% 22%, rgba(31, 93, 145, 0.11), transparent 28rem),
    linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.error-page__content {
  width: min(46rem, 100%);
  text-align: center;
}

.error-page__code {
  margin: 0 0 1rem;
  color: rgba(31, 93, 145, 0.18);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.error-page__content h1 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.error-page__content > p:not(.error-page__code):not(.home-section__eyebrow) {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 2.2rem 0 1.5rem;
}

.error-page__content > .home-text-link {
  display: inline-flex;
}

@media (max-width: 520px) {
  .error-page__section {
    padding: 4.5rem 1.25rem 5rem;
  }

  .error-page__actions {
    display: grid;
  }

  .error-page__actions .home-button {
    width: 100%;
  }
}
