.page-contacto {
  --contact-line-light: rgba(255, 255, 255, 0.16);
  --contact-line-dark: rgba(4, 12, 52, 0.14);
}

.contact-hero__copy {
  max-width: 740px;
}

.contact-hero__title {
  font-size: clamp(4rem, 6vw, 6.45rem);
}

.contact-hero__frame img {
  object-position: center 45%;
}

.contact-load-in {
  animation: contact-load-in var(--motion-slow) var(--motion-ease-out) backwards;
  animation-delay: calc(var(--load-order, 0) * 65ms);
  backface-visibility: hidden;
}

.contact-hero__visual.contact-load-in {
  --load-x: 30px;
  --load-scale: 0.985;
}

.contact-hero__route path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: contact-route-draw 760ms 320ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-hero__callout {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 86px;
  display: grid;
  min-width: 210px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 12px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(4, 12, 52, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px 3px 24px 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: contact-callout-in 560ms 360ms var(--motion-ease-out) backwards;
}

.contact-hero__callout-icon {
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  color: var(--yellow);
}

.contact-hero__callout span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-hero__callout strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

@keyframes contact-load-in {
  from {
    opacity: 0;
    transform:
      translate3d(var(--load-x, 0), 18px, 0)
      scale(var(--load-scale, 1));
  }
}

@keyframes contact-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes contact-callout-in {
  from {
    opacity: 0;
    transform: translate3d(16px, 10px, 0) scale(0.94);
  }
}

/* Canales de atención */
.contact-channels {
  position: relative;
  overflow: hidden;
}

.contact-channels--lead {
  padding-top: clamp(46px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 180, 0, 0.15), transparent 23rem),
    repeating-radial-gradient(
      ellipse at 102% -8%,
      rgba(4, 12, 52, 0.052) 0 1px,
      transparent 1px 24px
    ),
    linear-gradient(118deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 231, 0.76));
}

.contact-channels--lead::after {
  position: absolute;
  z-index: 0;
  right: clamp(22px, 5vw, 84px);
  bottom: clamp(20px, 4vw, 58px);
  display: grid;
  width: clamp(150px, 16vw, 220px);
  aspect-ratio: 1;
  place-items: center;
  padding: 24px;
  border: 2px solid rgba(4, 12, 52, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(255, 253, 248, 0.82),
    inset 0 0 0 10px rgba(4, 12, 52, 0.1);
  color: rgba(4, 12, 52, 0.38);
  content: "MDE  ·  COLOMBIA\A 06°14′N  ·  75°35′W";
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: center;
  white-space: pre;
  transform: rotate(-9deg);
  pointer-events: none;
}

.contact-channels > .shell {
  position: relative;
  z-index: 1;
}

.contact-channels::before {
  position: absolute;
  top: clamp(112px, 14vw, 220px);
  right: clamp(-110px, -5vw, -42px);
  width: min(36vw, 510px);
  height: min(18vw, 250px);
  border-top: 2px dashed rgba(196, 63, 41, 0.2);
  border-radius: 50%;
  content: "";
  transform: rotate(-15deg);
  pointer-events: none;
}

.contact-channels__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.contact-channel {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--contact-line-dark);
  box-shadow: 0 22px 56px rgba(4, 12, 52, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-channel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, transparent 49%, rgba(255, 180, 0, 0.15) 50%);
  content: "";
  pointer-events: none;
}

.contact-channel--reservations {
  grid-column: span 6;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 180, 0, 0.16), transparent 18rem),
    var(--paper);
  border-radius: 4px 56px 4px 38px;
}

.contact-channel--support,
.contact-channel--agencies {
  grid-column: span 3;
}

.contact-channel--support {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 180, 0, 0.18), transparent 13rem),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 46px 4px 34px 4px;
}

.contact-channel--agencies {
  border-radius: 4px 38px 4px 38px;
  box-shadow:
    inset 5px 0 var(--terracotta),
    0 22px 56px rgba(4, 12, 52, 0.08);
}

.contact-channel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-channel__number {
  color: rgba(4, 12, 52, 0.36);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-channel--support .contact-channel__number {
  color: rgba(255, 255, 255, 0.42);
}

.contact-channel__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 3px 24px 3px 24px;
  transition:
    border-radius var(--motion-medium) var(--motion-ease-out),
    transform var(--motion-medium) var(--motion-ease-out);
}

.contact-channel__icon-svg {
  width: 28px;
  height: 28px;
}

.contact-channel--agencies .contact-channel__icon {
  color: var(--white);
  background: var(--terracotta);
}

.contact-channel__eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-channel--support .contact-channel__eyebrow {
  color: var(--yellow);
}

.contact-channel h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-channel--support h2,
.contact-channel--agencies h2 {
  font-size: clamp(2.2rem, 2.6vw, 3rem);
}

.contact-channel__description {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-channel--support .contact-channel__description {
  color: rgba(255, 255, 255, 0.72);
}

.contact-channel__phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-block: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-channel__phone-icon {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
}

.contact-channel--support .contact-channel__phone-icon {
  color: var(--yellow);
}

.contact-channel__action {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 0 10px;
  border-top: 1px solid var(--contact-line-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-channel--support .contact-channel__action {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-channel__action-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--terracotta);
  transition: transform 180ms ease;
}

.contact-channel--support .contact-channel__action-icon {
  color: var(--yellow);
}

/* Preparación de la consulta */
.contact-prep {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 180, 0, 0.14), transparent 26rem),
    linear-gradient(118deg, #030b2d 0%, var(--navy) 55%, #0a1748 100%);
  border-radius: 68px 4px 68px 4px;
}

.contact-prep__pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image:
    repeating-radial-gradient(
      ellipse at 18% 80%,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 23px
    ),
    radial-gradient(circle at 82% 14%, rgba(255, 180, 0, 0.24), transparent 20rem);
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.contact-prep__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.contact-prep__intro {
  max-width: 520px;
}

.contact-prep__intro h2 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 5.6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-prep__intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

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

.contact-prep__item {
  position: relative;
  display: grid;
  min-height: 232px;
  grid-template-columns: auto 1fr;
  align-content: end;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px 34px 4px 28px;
  backdrop-filter: blur(10px);
}

.contact-prep__item:nth-child(2),
.contact-prep__item:nth-child(3) {
  border-radius: 30px 4px 30px 4px;
}

.contact-prep__number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-prep__icon {
  width: 34px;
  height: 34px;
  color: var(--yellow);
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-medium) var(--motion-ease-out);
}

.contact-prep__item h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-prep__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

/* Oficina */
.contact-office {
  position: relative;
}

.contact-office::before {
  position: absolute;
  top: 14%;
  bottom: 14%;
  left: 0;
  width: 7px;
  background: linear-gradient(var(--yellow), var(--terracotta));
  border-radius: 0 8px 8px 0;
  content: "";
}

.contact-office__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.contact-office__map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-muted);
  border: 8px solid rgba(255, 253, 248, 0.96);
  border-radius: 4px 64px 4px 44px;
  box-shadow: 0 30px 74px rgba(4, 12, 52, 0.17);
}

.contact-office__map iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  filter: saturate(0.82) contrast(1.04);
}

.contact-office__map-consent {
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(30px, 6vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 180, 0, 0.2), transparent 13rem),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,0.025) 30px 31px),
    var(--navy);
  text-align: center;
}

.contact-office__map-consent-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--yellow);
}

.contact-office__map-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-office__map-consent h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-office__map-consent > p:not(.contact-office__map-kicker) {
  max-width: 48ch;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-office__map-consent > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-channels__privacy {
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}

.contact-office__map-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 3px 22px 3px 22px;
  box-shadow: 0 15px 34px rgba(4, 12, 52, 0.24);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-office__map-action-icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.contact-office__content h2 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.2vw, 5.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-office__lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-office__details {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  font-style: normal;
}

.contact-office__details > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 0 14px;
  padding-block: 16px;
  border-top: 1px solid var(--contact-line-dark);
}

.contact-office__details > div:last-child {
  border-bottom: 1px solid var(--contact-line-dark);
}

.motion-ready .contact-office__content.reveal--visible .contact-office__details > div {
  animation: contact-detail-in 480ms var(--motion-ease-out) backwards;
}

.motion-ready .contact-office__content.reveal--visible .contact-office__details > div:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .contact-office__content.reveal--visible .contact-office__details > div:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes contact-detail-in {
  from {
    opacity: 0;
    transform: translate3d(12px, 0, 0);
  }
}

.contact-office__detail-icon {
  width: 27px;
  height: 27px;
  grid-row: 1 / 3;
  color: var(--terracotta);
}

.contact-office__details span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-office__details strong,
.contact-office__details a {
  align-self: start;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact-office__details a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.contact-office__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Preguntas frecuentes */
.contact-faq {
  position: relative;
  background:
    repeating-radial-gradient(
      ellipse at -4% 52%,
      rgba(4, 12, 52, 0.035) 0 1px,
      transparent 1px 28px
    ),
    rgba(255, 253, 248, 0.78);
  border-top: 1px solid rgba(4, 12, 52, 0.08);
}

.contact-faq__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.contact-faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  min-width: 0;
}

.contact-faq__heading h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.3vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-faq__heading > p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-faq__list {
  min-width: 0;
  border-top: 1px solid var(--contact-line-dark);
}

.contact-faq__item {
  border-bottom: 1px solid var(--contact-line-dark);
}

.contact-faq__item--animating {
  overflow: hidden;
}

.contact-faq__item summary {
  display: grid;
  min-height: 102px;
  grid-template-columns: 42px 1fr 32px;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

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

.contact-faq__number {
  color: var(--terracotta);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.contact-faq__item summary i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(4, 12, 52, 0.24);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-faq__item summary i::before,
.contact-faq__item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.contact-faq__item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-faq__item[open] summary i {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
}

.contact-faq__answer {
  padding: 0 64px 30px 60px;
}

.contact-faq__item[open] .contact-faq__answer {
  animation: contact-faq-answer-in 280ms 60ms var(--motion-ease-out) backwards;
}

@keyframes contact-faq-answer-in {
  from {
    opacity: 0;
    transform: translate3d(0, -7px, 0);
  }
}

.contact-faq__answer p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Documentos de confianza */
.contact-trust {
  padding-block: 52px;
  color: var(--navy);
  background: var(--yellow);
}

.contact-trust__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.contact-trust__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.contact-trust__heading-icon {
  width: 42px;
  height: 42px;
}

.contact-trust__heading p {
  margin-bottom: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-trust__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-trust__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-trust__links a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(4, 12, 52, 0.18);
  border-radius: 3px 22px 3px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-trust__link-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.contact-closing {
  padding-top: clamp(96px, 11vw, 158px);
}

@media (hover: hover) {
  .contact-channel:hover {
    border-color: rgba(255, 180, 0, 0.58);
    box-shadow: 0 28px 70px rgba(4, 12, 52, 0.13);
    transform: translateY(-5px);
  }

  .contact-channel--support:hover {
    border-color: rgba(255, 180, 0, 0.5);
  }

  .contact-channel:hover .contact-channel__icon {
    border-radius: 18px 3px 18px 3px;
    transform: rotate(-5deg) scale(1.05);
  }

  .contact-prep__item:hover .contact-prep__icon {
    color: var(--terracotta);
    transform: translate3d(0, -3px, 0) rotate(-7deg);
  }

  .contact-channel__action:hover .contact-channel__action-icon,
  .contact-office__map-action:hover .contact-office__map-action-icon,
  .contact-trust__links a:hover .contact-trust__link-icon {
    transform: translateX(4px);
  }

  .contact-office__map-action:hover {
    background: #ffc12c;
  }

  .contact-faq__item summary:hover {
    color: var(--terracotta);
  }

  .contact-faq__item summary:hover i {
    border-color: currentColor;
  }

  .contact-trust__links a:hover {
    background: rgba(255, 255, 255, 0.52);
    transform: translateY(-2px);
  }
}

@media (max-width: 1120px) {
  .contact-hero__title {
    font-size: clamp(3.9rem, 7.4vw, 5.4rem);
  }

  .contact-hero__callout {
    right: 0;
    min-width: 190px;
  }

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

  .contact-channel--reservations {
    grid-column: 1 / -1;
  }

  .contact-channel--support,
  .contact-channel--agencies {
    grid-column: auto;
  }

  .contact-channel--support h2,
  .contact-channel--agencies h2 {
    font-size: clamp(2.45rem, 4.6vw, 3.5rem);
  }

  .contact-prep__layout,
  .contact-office__layout {
    grid-template-columns: 1fr;
  }

  .contact-prep__intro {
    max-width: 720px;
  }

  .contact-office__map {
    min-height: 520px;
  }

  .contact-office__map iframe {
    height: 520px;
  }

  .contact-office__content {
    max-width: 760px;
  }

  .contact-faq__layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
    gap: 54px;
  }

  .contact-trust__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .contact-hero__title {
    font-size: clamp(4rem, 10.5vw, 5.55rem);
  }

  .contact-hero__callout {
    right: -6px;
    bottom: 62px;
  }

  .contact-prep__layout {
    gap: 54px;
  }

  .contact-faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .contact-faq__heading {
    position: static;
    max-width: 650px;
  }

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

@media (max-width: 599px) {
  .contact-channels--lead {
    padding-top: 40px;
  }

  .contact-channels--lead::after {
    right: -46px;
    bottom: 22px;
    width: 138px;
    padding: 20px;
    color: rgba(4, 12, 52, 0.24);
    font-size: 0.58rem;
  }

  .contact-hero__title {
    font-size: clamp(3.35rem, 16vw, 4.45rem);
  }

  .contact-hero__callout {
    display: none;
  }

  .contact-hero__ticket-bottom {
    max-width: calc(100% - 24px);
  }

  .contact-channels::before {
    display: none;
  }

  .contact-channels__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-channel--reservations,
  .contact-channel--support,
  .contact-channel--agencies {
    min-height: 0;
    grid-column: auto;
    padding: 28px 24px;
  }

  .contact-channel__top {
    margin-bottom: 34px;
  }

  .contact-channel__icon {
    width: 54px;
    height: 54px;
  }

  .contact-channel h2,
  .contact-channel--support h2,
  .contact-channel--agencies h2 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .contact-channel__description {
    margin-bottom: 22px;
  }

  .contact-prep {
    border-radius: 44px 4px 44px 4px;
  }

  .contact-prep__intro h2 {
    font-size: clamp(3.5rem, 16vw, 4.7rem);
  }

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

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

  .contact-prep__item {
    min-height: 190px;
    padding: 28px 24px;
  }

  .contact-office::before {
    display: none;
  }

  .contact-office__layout {
    gap: 44px;
  }

  .contact-office__map {
    min-height: 390px;
    border-width: 5px;
    border-radius: 3px 42px 3px 32px;
  }

  .contact-office__map iframe {
    height: 390px;
  }

  .contact-office__map-action {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
  }

  .contact-office__content h2,
  .contact-faq__heading h2 {
    font-size: clamp(3.45rem, 16vw, 4.6rem);
  }

  .contact-office__details > div {
    min-height: 76px;
  }

  .contact-office__details strong,
  .contact-office__details a {
    font-size: 1.08rem;
  }

  .contact-office__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .contact-office__actions .text-link {
    align-self: flex-start;
  }

  .contact-faq__item summary {
    min-height: 88px;
    grid-template-columns: 30px 1fr 28px;
    gap: 12px;
    font-size: 1.35rem;
  }

  .contact-faq__answer {
    padding: 0 40px 26px 42px;
  }

  .contact-trust {
    padding-block: 42px;
  }

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

  .contact-trust__links a {
    min-height: 72px;
  }
}

@media (max-width: 599px) {
  .contact-hero__visual.contact-load-in {
    --load-x: 0px;
    --load-scale: 0.99;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-load-in,
  .contact-hero__callout,
  .contact-office__details > div,
  .contact-faq__answer {
    animation: none;
  }

  .contact-hero__route path {
    stroke-dashoffset: 0;
    animation: none;
  }
}

@media (forced-colors: active) {
  .contact-channel,
  .contact-prep__item,
  .contact-office__map,
  .contact-faq__item,
  .contact-trust__links a {
    border: 2px solid currentColor;
  }
}

/* Movimiento de entrada y ambiente reforzado en Contacto */
.contact-load-in {
  animation-delay: calc(var(--load-order, 0) * 78ms);
}

.contact-hero__visual.contact-load-in {
  --load-x: 32px;
  --load-scale: 0.975;
}

@keyframes contact-load-in {
  from {
    opacity: 0;
    transform: translate3d(var(--load-x, 0), 28px, 0) scale(var(--load-scale, 1));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact-hero__callout {
    animation: contact-callout-in 680ms 420ms var(--motion-ease-out) backwards;
  }
}

@media (max-width: 599px) {
  .contact-hero__visual.contact-load-in {
    --load-x: 0px;
    --load-scale: 0.985;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-load-in,
  .contact-hero__callout {
    animation: none !important;
  }
}
