:root {
  --navy: #0e2a6b;
  --navy-deep: #081a49;
  --blue: #2f6fed;
  --red: #e0222f;
  --paper: #f7f6f2;
  --paper-dim: #efece4;
  --ink: #151830;
  --ink-soft: #4d5270;
  --line: #dcdbe6;
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

@media(max-width:480px) {
  .wrap {
    padding: 0 18px;
  }
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--red);
  display: inline-block;
}

section {
  padding: 100px 0;
}

@media(max-width:767px) {
  section {
    padding: 64px 0;
  }
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 246, 242, 0.86);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}

header ::before {
  backdrop-filter: blur(10px);
}

.headbar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media(max-width:480px) {
  .headbar {
    padding: 12px 16px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

@media(max-width:480px) {
  .brand img {
    height: 38px;
  }
}

.brand-text {
  line-height: 1.05;
}

.brand-text .name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.brand-text .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

nav.mainnav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.mainnav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

nav.mainnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}

nav.mainnav a:hover::after {
  right: 0;
}

.cta-btn {
  background: var(--navy);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(14, 42, 107, .25);
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 42, 107, .32);
}

.cta-btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  box-shadow: none;
}

.cta-btn.ghost:hover {
  background: var(--navy);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

@media(max-width:900px) {
  nav.mainnav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  nav.mainnav.open {
    transform: translateX(0);
  }

  nav.mainnav a {
    font-size: 20px;
  }

  .burger {
    display: flex;
  }

  .cta-btn.desktop-only {
    display: none;
  }
}

@media(max-width:480px) {
  nav.mainnav {
    top: 62px;
    padding: 24px 20px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 600px at 78% -10%, #163a94 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: #fff;
  padding: 168px 0 110px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

@media(max-width:960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 140px 0 70px;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 118px 0 56px;
  }
}

.hero h1 {
  font-size: clamp(32px, 8vw, 62px);
  line-height: 1.08;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: #8fb0ff;
}

.hero p.lead {
  margin: 24px 0 34px;
  font-size: 18px;
  line-height: 1.6;
  color: #c9d3ef;
  max-width: 520px;
}

@media(max-width:480px) {
  .hero p.lead {
    font-size: 16px;
    margin: 18px 0 26px;
  }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-ctas .cta-btn {
  white-space: normal;
  text-align: center;
}

.hero-ctas .cta-btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.hero-ctas .cta-btn.ghost:hover {
  background: #fff;
  color: var(--navy);
}

@media(max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

.route-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.route-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #dfe6fb;
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.route-chip b {
  color: #fff;
}

.route-chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

@media(max-width:480px) {
  .route-strip {
    margin-top: 30px;
  }

  .route-chip {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}

/* boarding pass illustration index */
.pass {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
  transform: rotate(3deg);
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
}

.pass-top {
  padding: 22px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pass-top .airline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.pass-top .airline span {
  color: var(--red);
}

.pass-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 24px 20px;
}

.pass-route .code {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
}

.pass-route .plane {
  color: var(--red);
  font-size: 20px;
}

.pass-route .sub {
  font-size: 10.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pass-divider {
  position: relative;
  height: 0;
  border-top: 2px dashed var(--line);
  margin: 0 0;
}

.pass-divider::before,
.pass-divider::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-deep);
}

.pass-divider::before {
  left: -11px;
}

.pass-divider::after {
  right: -11px;
}

.pass-bottom {
  padding: 20px 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pass-bottom .field {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: .06em;
}

.pass-bottom .field b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 2px;
}

.pass-barcode {
  height: 34px;
  width: 96px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px);
}

.stamp {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);
  font-weight: 700;
  font-size: 10.5px;
  text-align: center;
  letter-spacing: .03em;
  opacity: .9;
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

@media(max-width:400px) {
  .pass {
    transform: rotate(1.5deg);
  }

  .pass-route .code {
    font-size: 30px;
  }

  .pass-top,
  .pass-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pass-route {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stamp {
    width: 62px;
    height: 62px;
    font-size: 9px;
    top: 10px;
    right: 12px;
  }
}

/* ---------- SECTION HEADS ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-top: 14px;
  color: var(--navy);
}

.section-head p {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- SERVICES (boarding pass cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media(max-width:960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 42, 107, .14);
}

.svc-head {
  padding: 20px 22px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--paper-dim);
}

.svc-route {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.svc-route span {
  color: var(--red);
}

.svc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
}

.svc-perf {
  height: 0;
  border-top: 2px dashed var(--line);
  position: relative;
  margin: 0 22px;
}

.svc-perf::before,
.svc-perf::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
}

.svc-perf::before {
  left: -30px;
}

.svc-perf::after {
  right: -30px;
}

.svc-body {
  padding: 20px 22px 26px;
}

.svc-body h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--navy-deep);
  color: #fff;
}

.process .section-head p {
  color: #b9c4e8;
}

.process .eyebrow {
  color: #8fb0ff;
}

.process .section-head h2 {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

@media(max-width:900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media(max-width:560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 0 22px 0 0;
}

.step:not(:last-child) {
  border-right: 1px dashed rgba(255, 255, 255, .25);
}

@media(max-width:900px) {
  .step:not(:last-child) {
    border-right: none;
  }
}

.step .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .05em;
}

.step h3 {
  font-size: 19px;
  margin: 14px 0 10px;
  color: #fff;
}

.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #b9c4e8;
  margin: 0;
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: -1px;
}

@media(max-width:760px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 22px;
    text-align: center;
  }
}

.stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--navy);
}

.stat span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.testi p.quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
}

.testi .who {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi .who b {
  font-size: 14px;
}

.testi .who span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.approved {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  opacity: .85;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 130%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media(max-width:760px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }
}

@media(max-width:480px) {
  .cta-banner {
    padding: 32px 20px;
  }

  .cta-banner .cta-btn {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(24px, 3.4vw, 34px);
}

.cta-banner .cta-btn {
  background: #fff;
  color: var(--navy);
}

.cta-banner .cta-btn:hover {
  background: #eef2ff;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deep);
  color: #c9d3ef;
  padding: 70px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

@media(max-width:800px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

@media(max-width:480px) {
  .foot-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.foot-brand img {
  height: 42px;
  border-radius: 8px;
}

.foot-brand .name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #a9b5de;
}

footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a {
  font-size: 14px;
  color: #c9d3ef;
}

footer ul a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover {
  background: #fff;
  color: var(--navy);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  color: #7c88ad;
  flex-wrap: wrap;
  gap: 10px;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 2px;
}

/*---------------------------------------------*/
/* Base styles and positioning for the floating button */
.sp-scroll-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: #0e2a6b;
  /* Primary blue color */
  color: #ffffff;
  /* White icon color */
  border-radius: 30%;
  /* Makes it a circle */
  box-shadow: 0 4px 10px rgba(110, 110, 110, 0.3);
  text-align: center;
  line-height: 50px;
  /* Vertically centers the icon */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  /* Removes default underline */
}

/* Hover and active states for user interaction */
.sp-scroll-up:hover {
  background-color: #ece6e6;
  /* Darker blue on hover */
  transform: translateY(-3px);
  /* Subtle lift effect */
}

.sp-scroll-up:active {
  transform: translateY(-1px);
}

/* Icon scaling */
.sp-scroll-up .fa {
  font-size: 20px;
  vertical-align: middle;
}

/*--------------------------------------------------------INICIO DE STYLES DE SERVICIOS----------------------------------------------------------------*/


/* ---------- HERO ---------- */
.shero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 600px at 78% -10%, #163a94 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: #fff;
  padding: 168px 0 110px;
}

.shero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

@media(max-width:960px) {
  .shero .wrap {
    grid-template-columns: 1fr;
  }

  .shero {
    padding: 140px 0 70px;
  }
}

@media(max-width:480px) {
  .shero {
    padding: 118px 0 56px;
  }
}

.shero h1 {
  font-size: clamp(32px, 8vw, 62px);
  line-height: 1.08;
  color: #fff;
}

.shero h1 em {
  font-style: normal;
  color: #8fb0ff;
}

.shero p.lead {
  margin: 24px 0 34px;
  font-size: 18px;
  line-height: 1.6;
  color: #c9d3ef;
  max-width: 520px;
}

.shero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.shero-ctas .cta-btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.shero-ctas .cta-btn.ghost:hover {
  background: #fff;
  color: var(--navy);
}

.route-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.route-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #dfe6fb;
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.route-chip b {
  color: #fff;
}

.route-chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* boarding pass illustration */

/* ---------- SERVICES (boarding pass cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media(max-width:960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 42, 107, .14);
}

.svc-head {
  padding: 20px 22px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--paper-dim);
}

.svc-route {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.svc-route span {
  color: var(--red);
}

.svc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
}

.svc-perf {
  height: 0;
  border-top: 2px dashed var(--line);
  position: relative;
  margin: 0 22px;
}

.svc-perf::before,
.svc-perf::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
}

.svc-perf::before {
  left: -30px;
}

.svc-perf::after {
  right: -30px;
}

.svc-body {
  padding: 20px 22px 26px;
}

.svc-body h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- PROCESOS POR DESTINO ---------- */
.proc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}

.proc-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.proc-nav a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.proc-group {
  margin-bottom: 70px;
  scroll-margin-top: 96px;
}

.proc-group:last-child {
  margin-bottom: 0;
}

.proc-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}

.proc-head h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--navy);
}

.proc-head .proc-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--paper-dim);
  padding: 4px 10px;
  border-radius: 999px;
}

@media(max-width:480px) {
  .proc-head {
    margin-bottom: 20px;
  }
}

/*---------------------------------------------------------------FIN DE STYLES DE SERVICIOS---------------------------------------------------------*/


/*---------------------------------------------------INICIO DE STYLES DE TERMINOS------------------------------------------------------------------*/
/* ---------- HERO ---------- */
.thero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 600px at 78% -10%, #163a94 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: #fff;
  padding: 180px 0 110px;
}

.thero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

@media(max-width:9160px) {
  .thero .wrap {
    grid-template-columns: 1fr;
  }

  .thero {
    padding: 200px 0 70px;
  }
}

@media(max-width:480px) {
  .thero {
    padding: 118px 0 56px;
  }
}

.thero h1 {
  font-size: clamp(32px, 8vw, 62px);
  line-height: 1.08;
  color: #fff;
}

.thero h1 em {
  font-style: normal;
  color: #8fb0ff;
}

.thero p.lead {
  margin: 24px 0 34px;
  font-size: 18px;
  line-height: 1.6;
  color: #c9d3ef;
  max-width: 520px;
}

.thero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.thero-ctas .cta-btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.thero -ctas .cta-btn.ghost:hover {
  background: #fff;
  color: var(--navy);
}

.route-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.route-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #dfe6fb;
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.route-chip b {
  color: #fff;
}

.route-chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/*----------------FIN DE STYLES DE TERMINOS-----------------------------*/