/* =============================================================================
   turismogonsan.mx · estilos de la landing
   Paleta: navy #0b2a5b · azul #1e4fa3 · rojo #d7212b · crema #f4f6fb
   ============================================================================= */
:root {
  --navy: #0b2a5b; --navy-2: #08203f; --blue: #1e4fa3; --blue-2: #4c7bd1;
  --red: #d7212b; --red-2: #b3151e; --green: #0e7a3c; --wa: #25d366;
  --ink: #12203a; --muted: #5b6b85; --line: #dbe3f0; --bg: #f4f6fb; --card: #ffffff;
  --radius: 16px; --shadow: 0 10px 30px rgba(11, 42, 91, .10); --shadow-2: 0 18px 50px rgba(11, 42, 91, .18);
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.gz-noscroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.15; color: var(--navy); font-weight: 800; }
h2 { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -.01em; }
h3 { font-size: 20px; }
p { margin: 0 0 1em; }
.gz-container { width: min(1180px, 100% - 40px); margin-inline: auto; }
.gz-section { padding: 72px 0; }
.gz-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.gz-kicker--light { color: #ffd166; }
.gz-lead { font-size: 17px; color: var(--muted); max-width: 720px; margin-bottom: 30px; }
.gz-note { font-size: 13px; color: var(--muted); }
.gz-empty { padding: 20px; border-radius: 12px; background: #fff; color: var(--muted); }
.gz-h4 { margin-top: 28px; font-size: 16px; }
.gz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* tricolor */
.gz-tricolor { display: inline-block; width: 42px; height: 6px; border-radius: 3px; vertical-align: middle;
  background: linear-gradient(90deg, #006847 0 33.3%, #fff 33.3% 66.6%, #ce1126 66.6%); }
.gz-tricolor--wide { display: block; width: 120px; height: 7px; margin: 14px 0 18px; }

/* botones */
.gz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; border: 0; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; font-family: inherit; white-space: nowrap; }
.gz-btn:hover { transform: translateY(-1px); }
.gz-btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(215, 33, 43, .3); }
.gz-btn--red:hover { background: var(--red-2); }
.gz-btn--navy { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(11, 42, 91, .25); }
.gz-btn--navy:hover { background: var(--navy-2); }
.gz-btn--wa { background: var(--wa); color: #0b3d22; }
.gz-btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.gz-btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.gz-link { font-weight: 700; text-decoration: none; font-size: 14px; }
.gz-link--wa { color: #128c7e; }

/* barra superior */
.gz-topbar { background: var(--navy); color: #dbe6fa; font-size: 13px; }
.gz-topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.gz-topbar__flag { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.gz-topbar__links { display: flex; align-items: center; gap: 18px; }
.gz-topbar__links a { color: #fff; text-decoration: none; font-weight: 600; }
.gz-social svg { width: 16px; height: 16px; fill: #fff; display: block; }

/* encabezado */
.gz-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.gz-header.is-stuck { box-shadow: var(--shadow); }
.gz-header__in { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.gz-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.gz-logo img { height: 46px; width: auto; }
.gz-logo span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; max-width: 140px; line-height: 1.3; }
.gz-nav { display: flex; align-items: center; gap: 22px; }
.gz-nav a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: 14px; padding: 6px 0; border-bottom: 2px solid transparent; }
.gz-nav a:hover, .gz-nav a.is-active { border-bottom-color: var(--red); }
.gz-nav a.gz-nav__cta { border: 0; padding: 12px 18px; font-size: 14px; }
.gz-burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.gz-burger span { display: block; height: 3px; border-radius: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.gz-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.gz-burger.is-open span:nth-child(2) { opacity: 0; }
.gz-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* portada */
.gz-hero { position: relative; color: #fff; padding: 70px 0 0; isolation: isolate; }
.gz-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; z-index: -2; }
.gz-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6, 26, 51, .88) 0%, rgba(6, 26, 51, .55) 45%, rgba(6, 26, 51, .15) 100%); }
.gz-hero__in { padding-bottom: 60px; }
.gz-hero__copy { max-width: 620px; }
.gz-hero h1 { color: #fff; font-size: clamp(38px, 6vw, 68px); font-weight: 900; letter-spacing: -.02em; line-height: 1.02; margin: 6px 0 0; text-shadow: 0 6px 30px rgba(0, 0, 0, .35); }
.gz-hero p { font-size: 18px; max-width: 520px; color: #e6eefc; }
.gz-hero__badge { display: inline-flex; align-items: center; gap: 10px; font-style: italic; font-weight: 700; font-size: 15px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(6px); }

/* buscador */
.gz-search { background: #fff; color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-2); padding: 0 20px 16px; position: relative; z-index: 2; transform: translateY(40px); margin-top: -20px; }
.gz-search__tabs { display: flex; gap: 6px; padding: 0 0 0; margin: 0 -20px 16px; background: var(--navy); border-radius: 20px 20px 0 0; overflow: hidden; }
.gz-search__tabs a, .gz-search__tabs button { flex: 1; text-align: center; color: #cfdcf6; text-decoration: none; font-weight: 700; padding: 14px 10px; font-size: 14px; border: 0; background: transparent; cursor: pointer; font-family: inherit; }
.gz-search__tabs .is-active { background: var(--red); color: #fff; }
.gz-search__form { display: grid; grid-template-columns: 1.3fr 44px 1.3fr 1fr .8fr auto; gap: 12px; align-items: end; }
.gz-field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.gz-field input, .gz-field select, .gz-field textarea { font: 500 15px/1.3 var(--font); text-transform: none; letter-spacing: 0; color: var(--ink); padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fbfcff; width: 100%; }
.gz-field input:focus, .gz-field select:focus, .gz-field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30, 79, 163, .12); }
.gz-swap { height: 48px; width: 44px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-size: 20px; cursor: pointer; align-self: end; }
.gz-search__go { height: 50px; }
.gz-search__foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.gz-search__foot label { display: flex; align-items: center; gap: 8px; }
.gz-search__foot a { font-weight: 700; }

/* resultados */
.gz-results { margin: 60px 0 -20px; background: #fff; color: var(--ink); border-radius: 20px; box-shadow: var(--shadow); padding: 18px; position: relative; z-index: 1; }
.gz-results__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; padding: 6px 6px 10px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.gz-results__head h3 { margin: 0; font-size: 18px; }
.gz-results__head span { color: var(--muted); font-size: 13px; }
.gz-results__loading { padding: 24px; text-align: center; color: var(--muted); }
.gz-bus { display: grid; grid-template-columns: 120px 1fr 90px 1fr 1.3fr 120px auto; align-items: center; gap: 14px; padding: 14px 8px; border-bottom: 1px solid var(--line); }
.gz-bus:last-child { border-bottom: 0; }
.gz-bus__brand img { height: 30px; width: auto; max-width: 110px; object-fit: contain; }
.gz-bus__brand small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; margin-top: 4px; }
.gz-bus__times b { display: block; font-size: 22px; color: var(--navy); }
.gz-bus__times span { font-size: 12px; color: var(--muted); }
.gz-bus__dur { text-align: center; font-size: 12px; color: var(--muted); }
.gz-bus__dur i { display: block; height: 2px; background: linear-gradient(90deg, var(--blue), var(--red)); border-radius: 2px; margin-bottom: 4px; }
.gz-bus__facs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; }
.gz-bus__facs span { background: #eef3fb; color: var(--navy); padding: 4px 8px; border-radius: 999px; font-weight: 600; }
.gz-bus__facs em { font-style: normal; font-weight: 700; color: var(--green); padding: 4px 8px; border-radius: 999px; background: #e6f6ec; }
.gz-bus__facs em.is-few { color: #9a4b00; background: #fff1e0; }
.gz-bus__facs em.is-full { color: var(--red); background: #fde8e9; }
.gz-bus__price { text-align: right; }
.gz-bus__price small { display: block; font-size: 11px; color: var(--muted); }
.gz-bus__price b { font-size: 22px; color: var(--red); }
.gz-bus__cta { display: flex; flex-direction: column; gap: 6px; }

/* ventajas */
.gz-strip { background: #fff; border-bottom: 1px solid var(--line); padding: 90px 0 30px; }
.gz-strip__in { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.gz-strip__in div { padding: 12px 14px; border-left: 3px solid var(--red); }
.gz-strip__in b { display: block; color: var(--navy); font-size: 14px; }
.gz-strip__in span { font-size: 12px; color: var(--muted); }

/* promos */
.gz-promos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 40px 0 10px; }
.gz-promo { position: relative; min-height: 210px; border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; color: #fff; text-decoration: none; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; box-shadow: var(--shadow); isolation: isolate; }
.gz-promo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 26, 51, .1) 0%, rgba(6, 26, 51, .85) 100%); }
.gz-promo small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #ffd166; }
.gz-promo b { font-size: 19px; line-height: 1.2; }
.gz-promo span { font-size: 13px; color: #dbe6fa; }
.gz-promo em { font-style: normal; font-weight: 700; font-size: 13px; margin-top: 6px; }
.gz-promo--patria::before { background: linear-gradient(180deg, rgba(6, 26, 51, .35) 0%, rgba(6, 26, 51, .9) 100%); }

/* marcas */
.gz-brands { background-size: cover; background-position: center; }
.gz-brands__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gz-brand { background: var(--card); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 6px; transition: transform .15s; }
.gz-brand:hover { transform: translateY(-3px); }
.gz-brand__logo { height: 84px; display: flex; align-items: center; justify-content: center; background: #fbfcff; border-radius: 12px; margin-bottom: 8px; }
.gz-brand__logo img { max-height: 64px; width: auto; max-width: 85%; object-fit: contain; }
.gz-brand h3 { font-size: 17px; margin: 0; }
.gz-brand p { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.gz-brand__links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: auto; }

/* rutas */
.gz-routes__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gz-route { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.gz-route__img { height: 130px; background-size: cover; background-position: center; position: relative; }
.gz-route__img span { position: absolute; left: 12px; bottom: 12px; background: rgba(255, 255, 255, .92); color: var(--navy); font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.gz-route__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gz-route h3 { font-size: 17px; margin: 0; }
.gz-route h3 i { font-style: normal; color: var(--red); }
.gz-route ul { list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: 13px; display: grid; gap: 4px; }
.gz-route__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 6px; }
.gz-route__foot b { color: var(--red); font-size: 18px; }
.gz-route__foot b small { color: var(--muted); font-size: 11px; }
.gz-timetable { margin-top: 30px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 4px 22px 18px; }
.gz-timetable summary { cursor: pointer; font-weight: 800; color: var(--navy); padding: 16px 0; font-size: 16px; }
.gz-timetable summary span { color: var(--muted); font-weight: 500; font-size: 13px; }
.gz-timetable__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.gz-timetable h4 { font-size: 15px; margin: 6px 0 10px; }
.gz-timetable table { width: 100%; border-collapse: collapse; font-size: 13px; }
.gz-timetable th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 8px 6px; border-bottom: 2px solid var(--line); }
.gz-timetable td { padding: 9px 6px; border-bottom: 1px solid var(--line); }
.gz-timetable td b { color: var(--navy); }

/* viajes especiales */
.gz-special { background-size: cover; background-position: center; color: #fff; position: relative; isolation: isolate; }
.gz-special::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 26, 51, .92), rgba(11, 42, 91, .88)); }
.gz-special h2 { color: #fff; }
.gz-special .gz-lead { color: #dbe6fa; }
.gz-trip { display: grid; grid-template-columns: 380px 1fr; gap: 0; background: #fff; color: var(--ink); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-2); margin-bottom: 26px; }
.gz-trip__media { position: relative; background: #061a33; min-height: 320px; }
.gz-trip__media img:first-child { width: 100%; height: 100%; object-fit: cover; }
.gz-trip__brand { position: absolute; left: 14px; top: 14px; background: rgba(255, 255, 255, .95); padding: 8px 12px; border-radius: 12px; height: 46px !important; width: auto !important; object-fit: contain !important; }
.gz-trip__body { padding: 26px 28px; }
.gz-trip__body small { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.gz-trip__body h3 { font-size: 26px; margin: 4px 0 8px; }
.gz-trip__body > p { color: var(--muted); font-size: 15px; }
.gz-trip__facts { list-style: none; margin: 0 0 12px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; font-size: 13px; }
.gz-trip__facts b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.gz-trip__prices { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.gz-trip__prices span { background: #eef3fb; border-radius: 999px; padding: 6px 12px; font-size: 13px; color: var(--navy); }
.gz-trip__prices b { color: var(--red); }
.gz-trip__form { display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.gz-trip__dates { border: 0; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.gz-trip__dates legend { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.gz-chip input { position: absolute; opacity: 0; }
.gz-chip span { display: inline-flex; flex-direction: column; padding: 8px 14px; border-radius: 12px; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: var(--navy); cursor: pointer; background: #fbfcff; text-transform: capitalize; }
.gz-chip small { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: none; }
.gz-chip input:checked + span { border-color: var(--red); background: #fff3f3; box-shadow: 0 0 0 3px rgba(215, 33, 43, .12); }
.gz-trip__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; }
.gz-trip__total { text-align: right; }
.gz-trip__total small { display: block; font-size: 12px; color: var(--muted); }
.gz-trip__total > b { font-size: 26px; color: var(--red); }
.gz-trip__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.gz-form__msg { margin: 0; padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; background: #eef3fb; color: var(--navy); }
.gz-form__msg.is-ok { background: #e6f6ec; color: var(--green); }
.gz-form__msg.is-err { background: #fde8e9; color: var(--red); }

/* servicios */
.gz-services { background: #fff; }
.gz-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gz-services__grid a { display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); transition: box-shadow .15s, transform .15s; }
.gz-services__grid a:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.gz-services__grid i { grid-row: span 2; font-style: normal; font-size: 30px; width: 52px; height: 52px; display: grid; place-items: center; background: #eef3fb; border-radius: 14px; }
.gz-services__grid b { color: var(--navy); font-size: 15px; }
.gz-services__grid span { font-size: 13px; color: var(--muted); }

/* app */
.gz-app { background-size: cover; background-position: center; }
.gz-app__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center; }
.gz-checks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; font-weight: 600; font-size: 14px; }
.gz-checks li::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; font-size: 12px; margin-right: 10px; }
.gz-checks--light { color: #e6eefc; }
.gz-app__stores { display: flex; gap: 12px; flex-wrap: wrap; }
.gz-store { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 12px; background: var(--navy-2); color: #fff; font-weight: 700; text-decoration: none; font-size: 14px; }
.gz-store--soon { opacity: .6; }
.gz-app__art img { width: 100%; max-width: 520px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(11, 42, 91, .25)); }

/* ejecutivo */
.gz-exec { background-size: cover; background-position: center; color: #fff; position: relative; isolation: isolate; }
.gz-exec::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6, 26, 51, .92) 0%, rgba(6, 26, 51, .7) 100%); }
.gz-exec h2 { color: #fff; }
.gz-exec__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.gz-exec__copy p { color: #dbe6fa; font-size: 16px; }
.gz-card { background: #fff; color: var(--ink); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-2); display: grid; gap: 12px; }
.gz-card h3 { margin: 0 0 4px; }
.gz-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gz-check { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }

/* banner */
.gz-banner { background-size: cover; background-position: center; color: #fff; padding: 34px 0; }
.gz-banner__in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.gz-banner small { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #ffd166; font-weight: 700; }
.gz-banner b { font-size: 22px; }

/* info */
.gz-info__in { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.gz-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.gz-cities span { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-weight: 700; color: var(--navy); font-size: 14px; }
.gz-cities small { font-size: 11px; color: var(--muted); font-weight: 600; }
.gz-policy { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; display: grid; gap: 4px; }
.gz-faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 16px; margin-bottom: 10px; }
.gz-faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 14px 0; font-size: 15px; }
.gz-faq p { color: var(--muted); font-size: 14px; padding-bottom: 14px; margin: 0; }

/* contacto */
.gz-contact { background: #fff; }
.gz-contact__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.gz-contact__info ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.gz-contact__info li b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.gz-contact__info li a { font-weight: 700; text-decoration: none; }
.gz-points li span { font-size: 13px; color: var(--muted); display: block; }
.gz-points li b { font-size: 14px !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--navy) !important; }

/* pie */
.gz-footer { background-size: cover; background-position: center; color: #cfdcf6; padding: 56px 0 22px; }
.gz-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.gz-footer__logo { height: 44px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; margin-bottom: 14px; }
.gz-footer p { font-size: 14px; }
.gz-footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.gz-footer__grid a { display: block; color: #cfdcf6; text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.gz-footer__grid a:hover { color: #fff; }
.gz-footer__social { display: flex; gap: 12px; }
.gz-footer__social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .12); display: grid; place-items: center; }
.gz-footer__social svg { width: 16px; height: 16px; fill: #fff; }
.gz-footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 36px; padding-top: 18px; font-size: 13px; }
.gz-footer--mini { padding: 20px 0; font-size: 13px; background: var(--navy); }
.gz-footer--mini a { color: #fff; }

/* flotante + modal */
.gz-wa-float { position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); z-index: 60; }
.gz-wa-float svg { width: 30px; height: 30px; fill: #fff; }
.gz-modal { position: fixed; inset: 0; background: rgba(6, 26, 51, .7); z-index: 100; display: grid; place-items: center; padding: 20px; }
.gz-modal__box { background: #fff; border-radius: 20px; padding: 26px; width: min(520px, 100%); position: relative; box-shadow: var(--shadow-2); }
.gz-modal__close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; font-size: 28px; cursor: pointer; color: var(--muted); }
.gz-modal__route { font-weight: 700; color: var(--navy); }
.gz-modal form { display: grid; gap: 12px; }

/* páginas legales */
.gz-header--solid { position: static; }
.gz-legal { padding: 40px 0 60px; max-width: 820px; }
.gz-legal__body { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.gz-legal__nav a { margin-right: 16px; font-weight: 700; }

/* íconos del set Gonsan en ventajas y servicios */
.gz-strip__in div { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; align-items: center; }
.gz-strip__in div img { grid-row: span 2; width: 44px; height: 44px; object-fit: contain; }
.gz-services__grid a img { grid-row: span 2; width: 52px; height: 52px; object-fit: contain; background: #eef3fb; border-radius: 14px; padding: 6px; }
.gz-section__head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.gz-section__head h2 { margin-bottom: 0; }
.gz-route__btns { display: flex; align-items: center; gap: 10px; }
.gz-brand { color: inherit; text-decoration: none; }
.gz-topbar__account, .gz-nav__account { font-weight: 700; }
.gz-nav__account { color: var(--red) !important; }
.gz-logo img { height: 48px; }
.gz-footer__logo { height: 48px; padding: 8px 12px; }

/* Tom Select (autocompletado de ciudades) al estilo del sitio */
.gz-field .ts-wrapper { text-transform: none; letter-spacing: 0; }
.gz-field .ts-control { border: 1.5px solid var(--line) !important; border-radius: 12px !important; padding: 12px 14px !important; background: #fbfcff !important; font: 500 15px/1.3 var(--font); min-height: 48px; box-shadow: none !important; }
.gz-field .ts-wrapper.focus .ts-control { border-color: var(--blue) !important; box-shadow: 0 0 0 4px rgba(30, 79, 163, .12) !important; }
.gz-field .ts-control input { font: inherit; color: var(--ink); }
.gz-field .ts-control input::placeholder { color: #8a97ad; font-weight: 500; }
.ts-dropdown { border-radius: 12px !important; border: 1.5px solid var(--line) !important; box-shadow: var(--shadow-2) !important; font-family: var(--font); text-transform: none; letter-spacing: 0; font-weight: 500; }
.ts-dropdown .option { padding: 10px 14px; }
.ts-dropdown .option.active { background: #eef3fb; color: var(--navy); }
.ts-dropdown .no-results { padding: 10px 14px; color: var(--muted); }

/* responsive */
@media (max-width: 1080px) {
  .gz-strip__in { grid-template-columns: repeat(3, 1fr); }
  .gz-promos { grid-template-columns: repeat(2, 1fr); }
  .gz-search__form { grid-template-columns: 1fr 44px 1fr; }
  .gz-search__go { grid-column: 1 / -1; }
  .gz-bus { grid-template-columns: 100px 1fr 70px 1fr; row-gap: 8px; }
  .gz-bus__facs { grid-column: 1 / 3; }
  .gz-bus__price { grid-column: 3 / 4; text-align: left; }
  .gz-bus__cta { grid-column: 4 / 5; flex-direction: row; justify-content: flex-end; }
  .gz-footer__grid { grid-template-columns: 1fr 1fr; }
  .gz-trip { grid-template-columns: 1fr; }
  .gz-trip__media { min-height: 260px; }
  .gz-trip__media img:first-child { max-height: 420px; }
}
@media (max-width: 860px) {
  .gz-topbar__flag { display: none; }
  .gz-topbar__in { justify-content: center; }
  .gz-burger { display: flex; }
  .gz-nav { position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; align-items: stretch; padding: 10px 20px 20px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .gz-nav.is-open { display: flex; }
  .gz-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .gz-nav a.gz-nav__cta { margin-top: 10px; text-align: center; }
  .gz-logo span { display: none; }
  /* móvil: portada compacta y el buscador como primer elemento */
  .gz-hero { padding-top: 22px; }
  .gz-hero__in { padding-bottom: 30px; }
  .gz-hero h1 { font-size: 30px; }
  .gz-hero p { font-size: 15px; margin-bottom: 8px; }
  .gz-hero__badge { display: none; }
  .gz-tricolor--wide { margin: 8px 0 10px; }
  .gz-hero__shade { background: linear-gradient(180deg, rgba(6, 26, 51, .75), rgba(6, 26, 51, .85)); }
  .gz-search { transform: translateY(20px); margin-top: -10px; padding: 0 14px 14px; }
  .gz-search__tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .gz-search__tabs a, .gz-search__tabs button { font-size: 12px; padding: 11px 4px; }
  .gz-search__tabs .is-active { grid-column: 1 / -1; font-size: 15px; padding: 14px; }
  .gz-search__form { grid-template-columns: 1fr; gap: 10px; }
  .gz-search__go { height: 54px; font-size: 16px; }
  .gz-swap { display: none; }
  .gz-results { margin-top: 40px; padding: 12px; }
  .gz-strip { padding-top: 60px; }
  .gz-strip { padding-top: 80px; }
  .gz-strip__in, .gz-promos, .gz-brands__grid, .gz-services__grid, .gz-app__in, .gz-exec__in, .gz-info__in, .gz-contact__in, .gz-grid2, .gz-trip__row { grid-template-columns: 1fr; }
  .gz-bus { grid-template-columns: 1fr 1fr; }
  .gz-bus__brand, .gz-bus__facs, .gz-bus__cta { grid-column: 1 / -1; }
  .gz-bus__dur { display: none; }
  .gz-bus__price { grid-column: auto; text-align: left; }
  .gz-footer__grid { grid-template-columns: 1fr; }
  .gz-section { padding: 52px 0; }
  .gz-trip__body { padding: 20px; }
}
