:root {
  --blue-950: #06244d;
  --blue-900: #07366a;
  --blue-800: #075998;
  --blue-700: #0879bd;
  --blue-600: #139bd3;
  --blue-100: #e8f6fc;
  --orange-600: #ff7417;
  --orange-500: #ff8d24;
  --orange-100: #fff0df;
  --green-700: #169447;
  --green-600: #22ad55;
  --green-100: #e7f8ec;
  --ink: #0a2344;
  --muted: #66778f;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --shadow: 0 18px 45px rgba(5, 42, 76, 0.14);
  --shadow-soft: 0 10px 26px rgba(5, 42, 76, 0.09);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: min(1220px, calc(100% - 40px));
}

* { 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(--surface);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  border-radius: 8px;
  padding: 10px 14px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(220,229,239,.85);
  box-shadow: 0 5px 22px rgba(5,42,76,.06);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 8px; min-width: max-content; }
.brand img { width: 54px; height: 52px; object-fit: contain; }
.brand-name { font-size: 29px; letter-spacing: -.8px; line-height: 1; }
.brand-name strong { color: var(--blue-700); }
.brand-name em { color: var(--orange-600); font-style: normal; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 10px; flex: 1; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #203957;
}
.main-nav a span { color: var(--blue-700); font-size: 17px; }
.main-nav a:hover { background: var(--blue-100); color: var(--blue-800); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-link { font-weight: 700; font-size: 14px; }
.mobile-menu { display: none; border: 0; background: transparent; padding: 8px; }
.mobile-menu span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; border-radius: 99px; }

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-small { min-height: 42px; padding-inline: 18px; }
.btn-orange { color: white; background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: 0 10px 20px rgba(255,116,23,.24); }
.btn-orange:hover { box-shadow: 0 14px 28px rgba(255,116,23,.32); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); }
.btn-ghost { background: #eef4f8; color: var(--blue-900); }
.btn-whatsapp { background: linear-gradient(135deg, #18a849, #0a8b39); color: white; box-shadow: 0 12px 24px rgba(12,145,61,.22); }
.btn-light { background: white; color: var(--blue-900); }
.btn-full { width: 100%; }

.hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background: #dff3fb;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero.jpg');
  background-size: cover;
  background-position: 61% center;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 31%, rgba(255,255,255,.35) 55%, rgba(255,255,255,.08) 100%);
}
.hero-watermark {
  position: absolute;
  right: 5.5%;
  top: 54px;
  width: 155px;
  opacity: .15;
  filter: saturate(.8);
}
.hero-content { position: relative; z-index: 2; padding-top: 53px; }
.hero-copy { max-width: 500px; }
.eyebrow, .section-kicker {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: .98;
  letter-spacing: -3px;
  color: #071f40;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--blue-600), var(--orange-500) 58%, var(--green-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p:not(.eyebrow) { margin: 20px 0 18px; font-size: 18px; max-width: 420px; color: #304861; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 13px; font-weight: 800; color: var(--green-700); }

.search-wrap { position: relative; z-index: 10; margin-top: -112px; }
.search-panel {
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(206,221,235,.9);
  overflow: hidden;
}
.search-tabs { display: flex; align-items: flex-end; padding-left: 0; border-bottom: 1px solid var(--line); background: rgba(248,251,253,.92); }
.search-tab {
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #304861;
  min-width: 150px;
  padding: 16px 24px;
  font-weight: 800;
}
.search-tab.active { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); }
.travel-search {
  display: grid;
  grid-template-columns: 1.2fr 42px 1.2fr .9fr .9fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 20px 20px 13px;
}
.field { display: grid; gap: 7px; min-width: 0; }
.field > span:first-child, .quote-form label > span:first-child { font-size: 12px; font-weight: 850; color: #243b58; }
.input-shell {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  border: 1px solid #d7e1eb;
  border-radius: 11px;
  padding: 0 12px;
  background: white;
  transition: border .18s ease, box-shadow .18s ease;
}
.input-shell:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(19,155,211,.13); }
.input-shell b { font-size: 15px; color: var(--blue-700); }
.input-shell input, .input-shell select { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.input-shell input::placeholder { color: #9aa8b8; }
.swap-button { align-self: end; margin-bottom: 5px; height: 38px; border: 0; background: transparent; color: var(--blue-700); font-size: 25px; border-radius: 10px; }
.swap-button:hover { background: var(--blue-100); }
.search-submit { min-width: 154px; height: 48px; }
.search-assurances { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 8px 22px; padding: 0 20px 16px; color: #617289; font-size: 12px; }
.search-assurances span::first-letter { color: var(--blue-700); }

.section { padding: 66px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 25px; }
.section-heading h2, .benefit-title h2, .whatsapp-banner h2 { margin: 0; font-size: clamp(28px, 3vw, 39px); letter-spacing: -1.4px; line-height: 1.1; }
.section-heading p:not(.section-kicker), .whatsapp-banner p { margin: 8px 0 0; color: var(--muted); }
.text-button { border: 0; background: transparent; color: var(--blue-700); font-weight: 850; padding: 8px; white-space: nowrap; }

.destination-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.destination-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(5,42,76,.14); }
.destination-photo { position: relative; height: 160px; overflow: hidden; }
.destination-photo > img:first-child { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.destination-card:hover .destination-photo > img:first-child { transform: scale(1.045); }
.card-logo {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.favorite { position: absolute; right: 9px; top: 9px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: white; background: rgba(0,27,58,.22); font-size: 19px; }
.destination-body { padding: 14px 14px 15px; }
.destination-body h3 { margin: 0; font-size: 17px; }
.destination-body p { margin: 4px 0 13px; color: var(--muted); font-size: 12px; min-height: 36px; }
.destination-price { display: flex; align-items: end; justify-content: space-between; gap: 8px; }
.destination-price span { font-size: 11px; color: var(--muted); }
.destination-price strong { color: var(--blue-700); font-size: 17px; white-space: nowrap; }
.destination-action { width: 100%; margin-top: 12px; border: 0; border-radius: 10px; min-height: 38px; background: var(--blue-100); color: var(--blue-800); font-weight: 800; }

.package-section { background: linear-gradient(180deg, #f7fbfe 0%, #fff 100%); border-block: 1px solid #eaf1f6; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.package-card {
  position: relative;
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 235px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}
.package-image { position: relative; overflow: hidden; min-height: 235px; }
.package-image > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.package-image .card-logo { left: 12px; bottom: 12px; }
.package-badge { position: absolute; top: 12px; left: 12px; z-index: 2; border-radius: 999px; padding: 7px 10px; font-size: 11px; color: white; font-weight: 900; }
.package-badge.green { background: var(--green-600); }
.package-badge.orange { background: var(--orange-600); }
.package-badge.blue { background: var(--blue-700); }
.package-body { padding: 23px 20px 19px; display: flex; flex-direction: column; }
.package-body h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.15; }
.package-meta { display: grid; gap: 5px; color: #62738a; font-size: 12px; }
.package-desc { color: var(--muted); font-size: 12px; margin: 10px 0; }
.package-price { margin-top: auto; display: flex; justify-content: space-between; align-items: end; gap: 10px; }
.package-price small { color: var(--muted); }
.package-price strong { font-size: 21px; color: var(--blue-700); }
.package-price button { min-height: 40px; padding-inline: 15px; }

.benefits-section { padding-top: 46px; }
.benefit-title { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.benefit-title img { object-fit: contain; }
.benefit-title span { color: var(--orange-600); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.benefit-grid article { display: flex; gap: 13px; padding: 19px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); }
.benefit-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; font-size: 17px; font-weight: 900; }
.benefit-icon.green { color: var(--green-700); background: var(--green-100); border: 1px solid #b9ebca; }
.benefit-icon.blue { color: var(--blue-700); background: var(--blue-100); border: 1px solid #bee2f1; }
.benefit-icon.orange { color: var(--orange-600); background: var(--orange-100); border: 1px solid #ffd2a5; }
.benefit-grid h3 { margin: 0 0 5px; font-size: 16px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.whatsapp-banner {
  margin-top: 8px;
  margin-bottom: 70px;
  border-radius: 28px;
  background: linear-gradient(120deg, #eefbf3, #e8f8ff 67%, #fff1e4);
  border: 1px solid #d7eee0;
  display: grid;
  grid-template-columns: 125px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  box-shadow: var(--shadow-soft);
}
.bot-illustration { position: relative; width: 112px; height: 96px; display: grid; place-items: center; border-radius: 26px; background: white; border: 1px solid #d7e7ef; box-shadow: 0 12px 25px rgba(5,42,76,.12); }
.bot-illustration img { width: 75px; height: 70px; object-fit: contain; }
.bot-illustration span { position: absolute; bottom: -7px; right: -5px; background: var(--green-600); color: white; font-weight: 900; font-size: 10px; border-radius: 999px; padding: 5px 8px; }

.site-footer { position: relative; overflow: hidden; background: linear-gradient(120deg, #075491, #0479b3 56%, #0b9aab); color: white; padding: 52px 0 17px; }
.footer-watermark { position: absolute; right: 3%; bottom: -115px; width: 360px; opacity: .07; filter: brightness(0) invert(1); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr 1.35fr; gap: 34px; }
.brand-light .brand-name strong, .brand-light .brand-name em { color: white; }
.brand-light img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.18)); }
.footer-brand > p { margin: 9px 0 18px; opacity: .84; }
.social-row { display: flex; gap: 9px; }
.social-row span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.13); font-weight: 900; }
.footer-grid h3 { margin: 6px 0 14px; font-size: 15px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; }
.footer-grid a, .footer-grid p { margin: 0 0 9px; font-size: 12px; color: rgba(255,255,255,.85); }
.footer-grid a:hover { color: white; text-decoration: underline; }
.newsletter { padding: 16px; border-radius: 17px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.newsletter .btn { margin-top: 9px; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.17); margin-top: 35px; padding-top: 15px; font-size: 11px; color: rgba(255,255,255,.76); }

.floating-whatsapp { position: fixed; right: 23px; bottom: 22px; z-index: 45; width: 62px; height: 62px; border: 4px solid white; border-radius: 50%; background: #20b857; color: white; box-shadow: 0 15px 35px rgba(5,42,76,.25); font-size: 29px; }
.floating-whatsapp i { position: absolute; right: -1px; top: -2px; width: 13px; height: 13px; border-radius: 50%; background: #ff4d4d; border: 2px solid white; }

.modal { width: min(760px, calc(100% - 24px)); max-height: calc(100vh - 28px); padding: 0; border: 0; border-radius: 24px; background: transparent; overflow: visible; }
.modal::backdrop { background: rgba(4,24,49,.58); backdrop-filter: blur(5px); }
.modal-card { position: relative; overflow: auto; max-height: calc(100vh - 28px); background: white; border-radius: 24px; padding: 31px; box-shadow: 0 25px 70px rgba(3,24,49,.32); }
.modal-wide { width: min(900px, 100%); }
.modal-close { position: absolute; right: 17px; top: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #edf3f7; color: #17324f; font-size: 27px; line-height: 1; }
.modal-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 17px; color: var(--blue-700); font-weight: 900; }
.modal-brand img { width: 39px; height: 37px; object-fit: contain; }
.modal-card h2 { margin: 0; font-size: 31px; letter-spacing: -1px; }
.modal-card > p { color: var(--muted); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.legal-note { font-size: 11px; color: #7a8798 !important; }
.result-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.result-item { display: grid; grid-template-columns: 105px 1fr; min-height: 105px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fbfdff; }
.result-item img { width: 100%; height: 100%; object-fit: cover; }
.result-item div { padding: 13px; }
.result-item h3 { margin: 0 0 5px; font-size: 15px; }
.result-item p { margin: 0; color: var(--muted); font-size: 12px; }
.result-item strong { display: block; margin-top: 7px; color: var(--blue-700); }

.quote-form { display: grid; gap: 14px; margin-top: 21px; }
.quote-form label { display: grid; gap: 6px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #d5e0e9;
  border-radius: 11px;
  padding: 11px 12px;
  outline: 0;
  color: var(--ink);
  background: white;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(19,155,211,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.three { grid-template-columns: 1fr 1fr .7fr; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; gap: 8px !important; font-size: 12px; color: var(--muted); }
.consent input { width: 17px; height: 17px; margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin: -3px 0 0 !important; min-height: 20px; color: #b43131 !important; font-size: 12px; }
.success-card { text-align: center; padding-block: 36px; }
.success-card > img { margin: 0 auto; }
.success-check { width: 58px; height: 58px; display: grid; place-items: center; margin: -13px auto 13px; border-radius: 50%; background: var(--green-600); color: white; border: 5px solid white; box-shadow: 0 8px 22px rgba(22,148,71,.25); font-size: 26px; font-weight: 900; }
.success-card .modal-actions { justify-content: center; }
.folio { display: block; color: var(--blue-700); font-size: 24px; letter-spacing: .5px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 120; transform: translate(-50%, 140%); opacity: 0; max-width: min(520px, calc(100% - 30px)); border-radius: 13px; padding: 12px 18px; background: #082849; color: white; box-shadow: var(--shadow); transition: .25s ease; font-weight: 700; font-size: 13px; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.empty-state { grid-column: 1 / -1; padding: 34px; border-radius: 18px; border: 1px dashed #c9d7e3; text-align: center; color: var(--muted); background: #fbfdff; }
.skeleton { min-height: 210px; border-radius: 20px; background: linear-gradient(90deg, #eef3f7 25%, #f8fbfd 50%, #eef3f7 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite linear; }
@keyframes shimmer { to { background-position: -200% 0; } }

@media (max-width: 1140px) {
  .header-actions .header-link { display: none; }
  .main-nav { gap: 1px; }
  .main-nav a { padding-inline: 8px; }
  .travel-search { grid-template-columns: 1fr 38px 1fr 1fr 1fr; }
  .passengers-field { grid-column: 1 / 3; }
  .search-submit { grid-column: 3 / 6; }
  .destination-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { grid-template-columns: 34% 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr 1fr; }
  .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 24px, 720px); }
  .site-header { height: 69px; }
  .header-inner { gap: 11px; }
  .brand img { width: 45px; height: 44px; }
  .brand-name { font-size: 24px; }
  .mobile-menu { display: block; margin-left: auto; }
  .header-actions { display: none; }
  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 77px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .hero { min-height: 480px; }
  .hero-media { background-position: 67% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.78) 59%, rgba(255,255,255,.28)); }
  .hero-content { padding-top: 45px; }
  .hero h1 { font-size: 51px; }
  .hero-watermark { right: 7px; width: 120px; top: 170px; }
  .search-wrap { margin-top: -95px; }
  .search-tabs { overflow-x: auto; }
  .search-tab { min-width: 128px; padding: 14px 17px; }
  .travel-search { grid-template-columns: 1fr 1fr; padding: 16px; }
  .field, .passengers-field { grid-column: auto; }
  .swap-button { display: none; }
  .search-submit { grid-column: 1 / -1; }
  .search-assurances { justify-content: flex-start; padding-inline: 16px; }
  .section { padding: 50px 0; }
  .section-heading { align-items: start; }
  .destination-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .package-card { grid-template-columns: 38% 1fr; }
  .whatsapp-banner { grid-template-columns: 90px 1fr; padding: 23px; }
  .bot-illustration { width: 86px; height: 82px; }
  .whatsapp-banner .btn { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .result-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 20px); }
  .brand-name { font-size: 22px; }
  .hero { min-height: 455px; }
  .hero-content { padding-top: 36px; }
  .hero h1 { font-size: 44px; letter-spacing: -2.3px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-trust { display: grid; }
  .search-wrap { margin-top: -78px; }
  .search-panel { border-radius: 17px; }
  .search-tab { min-width: 116px; font-size: 13px; }
  .travel-search { grid-template-columns: 1fr; gap: 10px; }
  .field, .passengers-field, .search-submit { grid-column: 1; }
  .search-assurances { display: none; }
  .section-heading { display: block; }
  .section-heading .text-button { margin-top: 10px; padding-left: 0; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-photo { height: 190px; }
  .package-card { grid-template-columns: 1fr; }
  .package-image { min-height: 190px; height: 190px; }
  .package-body { min-height: 220px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-title { align-items: flex-start; }
  .whatsapp-banner { grid-template-columns: 1fr; text-align: center; }
  .bot-illustration { margin: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .newsletter { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .modal-card { padding: 25px 18px; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .modal-actions .btn { width: 100%; }
  .result-item { grid-template-columns: 92px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
/* Ajustes finales para evitar desbordamientos en el buscador y las tarjetas. */
@media (min-width: 1141px) {
  .travel-search {
    grid-template-columns: 1.05fr 38px 1.05fr 1fr 1fr .95fr 150px;
    gap: 8px;
  }
  .input-shell { padding-inline: 9px; }
  .input-shell input[type="date"] { font-size: 12px; }
}
.package-price {
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
}
.package-price > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
}
.package-price button { width: 100%; }

/* Carrusel de promociones administrables */
.promotion-section { padding-top: 26px; padding-bottom: 34px; }
.promotion-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.promotion-heading h2 { margin: 2px 0 5px; font-size: clamp(27px, 3vw, 39px); letter-spacing: -1.2px; }
.promotion-heading > div > p:last-child { margin: 0; color: var(--muted); }
.promotion-counter { min-width: 58px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--blue-800); font-size: 12px; font-weight: 900; text-align: center; box-shadow: var(--shadow-soft); }
.promotion-carousel { position: relative; border-radius: 30px; }
.promotion-viewport { overflow: hidden; border-radius: 30px; box-shadow: 0 24px 60px rgba(4, 42, 75, .18); background: #083d67; }
.promotion-track { display: flex; transform: translate3d(0,0,0); transition: transform .65s cubic-bezier(.22,.82,.25,1); }
.promotion-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: clamp(355px, 39vw, 520px); overflow: hidden; isolation: isolate; }
.promotion-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; transform: scale(1.01); }
.promotion-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(2, 25, 48, .91) 0%, rgba(3, 39, 70, .76) 41%, rgba(3, 39, 70, .18) 72%, rgba(3, 39, 70, .05) 100%); }
.promotion-slide.text-right .promotion-shade { background: linear-gradient(270deg, rgba(2, 25, 48, .91) 0%, rgba(3, 39, 70, .76) 41%, rgba(3, 39, 70, .18) 72%, rgba(3, 39, 70, .05) 100%); }
.promotion-slide.tone-orange .promotion-shade { background: linear-gradient(90deg, rgba(72, 30, 2, .91), rgba(150, 61, 0, .66) 43%, rgba(31, 31, 31, .08) 76%); }
.promotion-slide.tone-orange.text-right .promotion-shade { background: linear-gradient(270deg, rgba(72, 30, 2, .91), rgba(150, 61, 0, .66) 43%, rgba(31, 31, 31, .08) 76%); }
.promotion-slide.tone-green .promotion-shade { background: linear-gradient(90deg, rgba(4, 47, 34, .94), rgba(5, 112, 76, .67) 43%, rgba(21, 58, 45, .08) 76%); }
.promotion-slide.tone-green.text-right .promotion-shade { background: linear-gradient(270deg, rgba(4, 47, 34, .94), rgba(5, 112, 76, .67) 43%, rgba(21, 58, 45, .08) 76%); }
.promotion-slide.tone-dark .promotion-shade { background: linear-gradient(90deg, rgba(8, 17, 31, .96), rgba(17, 32, 53, .72) 46%, rgba(8, 17, 31, .12) 76%); }
.promotion-slide.tone-dark.text-right .promotion-shade { background: linear-gradient(270deg, rgba(8, 17, 31, .96), rgba(17, 32, 53, .72) 46%, rgba(8, 17, 31, .12) 76%); }
.promotion-content { position: absolute; inset: 0 auto 0 0; width: min(610px, 62%); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(36px, 6vw, 78px); color: white; }
.promotion-slide.text-right .promotion-content { inset: 0 0 0 auto; align-items: flex-start; }
.promotion-badge { display: inline-flex; width: max-content; margin-bottom: 15px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(255,255,255,.16); backdrop-filter: blur(8px); font-size: 11px; font-weight: 900; letter-spacing: .65px; text-transform: uppercase; }
.promotion-content h3 { max-width: 570px; margin: 0; font-size: clamp(34px, 5vw, 65px); line-height: .98; letter-spacing: -2px; text-wrap: balance; text-shadow: 0 4px 20px rgba(0,0,0,.18); }
.promotion-content p { max-width: 520px; margin: 17px 0 0; color: rgba(255,255,255,.9); font-size: clamp(14px, 1.45vw, 18px); line-height: 1.55; }
.promotion-price-text { display: block; margin-top: 17px; font-size: clamp(18px, 2vw, 25px); color: white; }
.promotion-cta { margin-top: 22px; min-height: 48px; padding-inline: 23px; color: var(--blue-900); background: white; box-shadow: 0 12px 25px rgba(0,0,0,.18); }
.promotion-cta:hover { transform: translateY(-2px); }
.promotion-logo { position: absolute; z-index: 1; right: clamp(22px, 4vw, 55px); top: clamp(20px, 4vw, 45px); width: clamp(58px, 7vw, 92px); height: auto; padding: 9px; border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 10px 28px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.promotion-slide.text-right .promotion-logo { right: auto; left: clamp(22px, 4vw, 55px); }
.promotion-arrow { position: absolute; top: 50%; z-index: 4; width: 47px; height: 47px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.91); color: var(--blue-800); box-shadow: 0 10px 25px rgba(2,24,48,.22); font-size: 32px; line-height: 1; }
.promotion-arrow:hover { background: white; transform: translateY(-50%) scale(1.06); }
.promotion-prev { left: 18px; }
.promotion-next { right: 18px; }
.promotion-dots { position: absolute; z-index: 4; left: 50%; bottom: 18px; display: flex; gap: 8px; transform: translateX(-50%); padding: 7px 10px; border-radius: 999px; background: rgba(3,25,46,.28); backdrop-filter: blur(8px); }
.promotion-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); transition: width .25s ease, background .25s ease; }
.promotion-dots button[aria-current="true"] { width: 28px; background: white; }

@media (max-width: 760px) {
  .promotion-heading { align-items: flex-start; }
  .promotion-counter { margin-top: 4px; }
  .promotion-viewport, .promotion-carousel { border-radius: 23px; }
  .promotion-slide { height: 505px; }
  .promotion-shade, .promotion-slide.text-right .promotion-shade, .promotion-slide.tone-orange .promotion-shade, .promotion-slide.tone-orange.text-right .promotion-shade, .promotion-slide.tone-green .promotion-shade, .promotion-slide.tone-green.text-right .promotion-shade, .promotion-slide.tone-dark .promotion-shade, .promotion-slide.tone-dark.text-right .promotion-shade { background: linear-gradient(0deg, rgba(2,25,48,.97) 0%, rgba(2,25,48,.82) 45%, rgba(2,25,48,.05) 78%); }
  .promotion-content, .promotion-slide.text-right .promotion-content { inset: auto 0 0 0; width: 100%; min-height: 61%; justify-content: flex-end; padding: 30px 25px 48px; }
  .promotion-content h3 { font-size: clamp(34px, 11vw, 48px); }
  .promotion-content p { font-size: 14px; margin-top: 11px; }
  .promotion-price-text { margin-top: 10px; font-size: 18px; }
  .promotion-cta { margin-top: 15px; }
  .promotion-logo, .promotion-slide.text-right .promotion-logo { left: auto; right: 18px; top: 18px; width: 64px; border-radius: 18px; }
  .promotion-arrow { width: 40px; height: 40px; font-size: 27px; top: 42%; }
  .promotion-prev { left: 10px; }
  .promotion-next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .promotion-track { transition: none; }
}
