:root {
  --navy: #071e46;
  --navy-2: #0c2d62;
  --red: #df1f2d;
  --red-dark: #b71421;
  --ink: #0a1533;
  --muted: #566174;
  --line: #e6edf5;
  --soft: #f5f9fd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 30, 70, .12);
  --shadow-soft: 0 12px 30px rgba(7, 30, 70, .08);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(223, 31, 45, .35); outline-offset: 4px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(900px, calc(100% - 40px)); }
.section { padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 30, 70, .08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  /* The only Destino logo file is square and includes the words below the map.
     In the header/footer we intentionally use it as a compact icon and let
     the adjacent text render the brand name cleanly. */
  width: 76px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  flex: 0 0 auto;
}
.brand-text {
  display: grid;
  gap: 0;
  line-height: .86;
  letter-spacing: -.02em;
}
.brand-text span { font-size: 24px; color: var(--navy); font-weight: 750; }
.brand-text strong { font-size: 29px; color: var(--red); font-weight: 900; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: 15px;
}
.nav a:not(.nav-cta) { color: var(--navy); }
.nav a:not(.nav-cta):hover { color: var(--red); }
.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 13px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(223, 31, 45, .22);
}

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 28%, rgba(199, 226, 247, .72), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #fff 46%, #eef7ff 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(7,30,70,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,30,70,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
}
.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 40px;
  align-items: center;
  padding: 76px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(223,31,45,.1);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 950;
}
h1 span { display: block; color: var(--red); }
.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: #27364d;
  font-size: 20px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon svg { width: 22px; height: 22px; fill: currentColor; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 32px rgba(223, 31, 45, .22);
}
.btn-primary:hover { box-shadow: 0 20px 38px rgba(223, 31, 45, .3); }
.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(7, 30, 70, .22);
  box-shadow: var(--shadow-soft);
}
.btn-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 28px rgba(7,30,70,.2);
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  margin-bottom: 12px;
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid rgba(7,30,70,.16);
}
.proof-item:last-child { border-right: 0; }
.proof-item span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
}
.proof-item svg { width: 30px; height: 30px; fill: currentColor; }
.proof-item p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}
.fine-print { color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
}
.route-map {
  position: absolute;
  inset: 12px 0 auto auto;
  width: 440px;
  height: 360px;
  border-radius: 50%;
  opacity: .7;
  background:
    radial-gradient(circle at 34% 45%, rgba(7,30,70,.09) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 27%, rgba(7,30,70,.11) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 58%, rgba(7,30,70,.1) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 45%, rgba(7,30,70,.08), transparent 55%);
}
.route-map::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 135px;
  left: 92px;
  top: 132px;
  border-top: 3px dashed var(--red);
  border-radius: 55% 45% 0 0;
  transform: rotate(-18deg);
}
.pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(223,31,45,.12);
}
.pin.paraguay { left: 100px; top: 220px; }
.pin.canada { left: 280px; top: 112px; }
.plane {
  position: absolute;
  left: 200px;
  top: 166px;
  color: var(--red);
  font-size: 28px;
  transform: rotate(-22deg);
}
.logo-card {
  position: absolute;
  right: 58px;
  top: 42px;
  width: 300px;
  height: 350px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,30,70,.08);
  box-shadow: var(--shadow);
}
.logo-card img { width: 235px; border-radius: 28px; }
.passport-card {
  position: absolute;
  left: 70px;
  bottom: 66px;
  width: 180px;
  height: 245px;
  padding: 26px 22px;
  border-radius: 14px 22px 18px 14px;
  color: #f2d983;
  background: linear-gradient(145deg, #09235a, #05163a);
  box-shadow: 0 30px 50px rgba(7,30,70,.25);
  transform: rotate(7deg);
}
.passport-label { display: block; color: #f7e294; font-weight: 900; letter-spacing: .15em; font-size: 18px; }
.passport-crest { display: block; text-align: center; font-size: 52px; margin: 42px 0 22px; }
.passport-text { display: block; text-align: center; font-weight: 800; line-height: 1.35; font-size: 12px; }
.visa-doc {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 270px;
  height: 180px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, #fff, #eff6fc);
  border: 1px solid rgba(7,30,70,.08);
  box-shadow: 0 26px 50px rgba(7,30,70,.16);
  transform: rotate(-7deg);
}
.visa-doc span { color: var(--red); font-weight: 950; font-size: 23px; letter-spacing: .06em; }
.visa-doc em { display: block; margin: 10px 0 20px; color: var(--navy); font-style: normal; font-weight: 800; }
.visa-doc i { display: block; height: 8px; margin: 10px 0; border-radius: 999px; background: rgba(7,30,70,.13); }
.visa-doc i:nth-child(3) { width: 70%; }
.visa-doc i:nth-child(4) { width: 88%; }
.visa-doc i:nth-child(5) { width: 56%; }
.leaf {
  position: absolute;
  right: 44px;
  bottom: 30px;
  color: var(--red);
  font-size: 90px;
  transform: rotate(-15deg);
  text-shadow: 0 18px 30px rgba(223,31,45,.24);
}

.section-heading { text-align: center; max-width: 790px; margin: 0 auto 42px; }
.accent-line {
  display: inline-block;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
  margin-bottom: 18px;
}
.section-heading h2, .alternate-copy h2, .trust h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
  margin-bottom: 14px;
}
.section-heading p { color: var(--muted); font-size: 18px; margin: 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 315px;
  padding: 30px 22px;
  border: 1px solid rgba(7,30,70,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223,31,45,.22);
  box-shadow: 0 18px 44px rgba(7,30,70,.12);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--red);
  background: #f2f6fb;
}
.service-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 950;
  margin-bottom: 16px;
}
.service-card p { color: #3e4b61; font-size: 15px; margin: 0; }

.alternate { padding-top: 24px; }
.alternate-panel {
  display: grid;
  grid-template-columns: 110px 1fr 360px;
  gap: 28px;
  align-items: center;
  min-height: 260px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f2f8ff 0%, #fff 54%, #eff7ff 100%);
  border: 1px solid rgba(7,30,70,.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.signpost {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 20px 32px rgba(7,30,70,.2);
}
.signpost svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.alternate-copy p { color: #314158; font-size: 17px; margin-bottom: 22px; max-width: 680px; }
.mountain-card {
  position: relative;
  height: 205px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(#d8ecff 0 45%, #a8cbe0 45% 66%, #d8f1ff 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.mountains::before, .mountains::after {
  content: "";
  position: absolute;
  bottom: 58px;
  width: 230px;
  height: 150px;
  background: linear-gradient(135deg, #fff 0 28%, #8fb0c4 28% 100%);
  clip-path: polygon(0 100%, 45% 0, 100% 100%);
}
.mountains::before { left: 16px; }
.mountains::after { right: -35px; transform: scale(1.15); opacity: .86; }
.lake {
  position: absolute;
  left: -10%; right: -10%; bottom: 0;
  height: 68px;
  background: linear-gradient(180deg, #83bcd5, #d9f3ff);
}
.flag {
  position: absolute;
  z-index: 2;
  right: 88px;
  top: 42px;
  width: 5px;
  height: 105px;
  background: var(--navy);
}
.flag::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 72px;
  height: 44px;
  background: linear-gradient(90deg, var(--red) 0 24%, #fff 24% 76%, var(--red) 76%);
  box-shadow: 0 12px 24px rgba(7,30,70,.14);
}

.trust { text-align: center; padding-top: 42px; }
.maple {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 31px;
}
.trust-lead { color: #35465e; font-size: 19px; margin-bottom: 32px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(7,30,70,.08);
  box-shadow: var(--shadow-soft);
}
.trust-item span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--navy);
  background: #f3f7fb;
}
.trust-item svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.trust-item p { margin: 0; color: #314158; font-weight: 700; }
.register-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.register-note a { color: var(--navy); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

.site-footer {
  color: #fff;
  background: radial-gradient(circle at 20% 0%, rgba(44, 92, 158, .9), transparent 35%), linear-gradient(135deg, #061839, #08265a);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding: 62px 0 52px;
}
.footer-logo .brand-logo { width: 66px; height: 42px; border-radius: 12px; }
.footer-logo .brand-text span { color: #fff; font-size: 20px; }
.footer-logo .brand-text strong { color: #fff; font-size: 25px; }
.footer-brand p { margin: 18px 0 0; max-width: 280px; color: rgba(255,255,255,.78); }
.site-footer h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}
.footer-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.8);
}
.footer-list a { color: rgba(255,255,255,.88); }
.footer-list a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
}
.bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.bottom-wrap p { margin: 0; }
.mobile-whatsapp { display: none; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; min-height: unset; padding: 58px 0 42px; }
  .hero-visual { min-height: 470px; max-width: 650px; width: 100%; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid .service-card:last-child { grid-column: 1 / -1; }
  .alternate-panel { grid-template-columns: 90px 1fr; }
  .mountain-card { grid-column: 1 / -1; height: 180px; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .section { padding: 58px 0; }
  .nav-wrap { min-height: 78px; }
  .brand-logo { width: 60px; height: 38px; border-radius: 12px; }
  .brand-text span { font-size: 19px; }
  .brand-text strong { font-size: 23px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav { gap: 0; }
  .nav-cta { padding: 11px 15px; }
  .hero-grid { padding-top: 40px; }
  h1 { font-size: clamp(44px, 15vw, 66px); }
  .hero-text { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: flex-start; }
  .proof-row { align-items: stretch; }
  .proof-item { width: 100%; border-right: 0; padding-right: 0; }
  .hero-visual { min-height: 390px; }
  .route-map { width: 330px; height: 280px; right: -60px; }
  .logo-card { width: 230px; height: 250px; right: 16px; top: 20px; }
  .logo-card img { width: 180px; }
  .passport-card { width: 128px; height: 178px; left: 20px; bottom: 34px; padding: 18px 15px; }
  .passport-label { font-size: 13px; }
  .passport-crest { font-size: 36px; margin: 28px 0 15px; }
  .visa-doc { width: 210px; height: 142px; right: 8px; bottom: 42px; padding: 18px; }
  .leaf { right: 20px; bottom: 16px; font-size: 62px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid .service-card:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .alternate-panel { grid-template-columns: 1fr; padding: 24px; }
  .signpost { width: 76px; height: 76px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { grid-template-columns: 56px 1fr; padding: 20px; }
  .trust-item span { width: 52px; height: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 88px; }
  .bottom-wrap { display: grid; }
  .mobile-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 18px 40px rgba(223,31,45,.35);
    font-weight: 950;
  }
}

/* Partner logos / cooperation statement */
.partner-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 20px auto 22px;
}
.partner-band > span {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 12px;
}
.partner-logo {
  display: grid;
  place-items: center;
  min-width: 190px;
  min-height: 86px;
  padding: 16px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(7,30,70,.08);
  box-shadow: var(--shadow-soft);
}
.partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* These will look best once the Eagle/JTD source files are tightly cropped. */
.eagle-partner img { max-height: 68px; max-width: 205px; }
.jtd-partner img { max-height: 76px; max-width: 205px; }
.footer-partner {
  margin-top: 10px !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .partner-band { gap: 12px; }
  .partner-logo { min-width: min(100%, 260px); min-height: 78px; padding: 14px 20px; }
  .partner-band > span { width: 100%; }
}

/* Mobile cleanup v4: reduce above-the-fold WhatsApp repetition */
@media (max-width: 760px) {
  /* The hero already has the primary WhatsApp CTA, so the header button is
     hidden on mobile to avoid stacking multiple red buttons immediately. */
  .nav-cta {
    display: none;
  }

  /* Remove the fixed red WhatsApp bar on mobile. It was competing with the
     hero CTA and covering early content. */
  .mobile-whatsapp {
    display: none !important;
  }

  /* Slightly tighten the first screen so more content is visible before scroll. */
  .nav-wrap {
    min-height: 74px;
  }

  .hero-grid {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(41px, 13.8vw, 60px);
    letter-spacing: -.06em;
  }

  .hero-text {
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .proof-row {
    margin-bottom: 0;
  }

  .proof-item {
    gap: 10px;
  }

  .proof-item span {
    width: 34px;
    height: 34px;
  }

  .proof-item svg {
    width: 26px;
    height: 26px;
  }

  .footer-grid {
    padding-bottom: 44px;
  }
}
