/* ================================================================
   MONDIAL TURISMO — formulário aéreo da página inicial v1.1.0
   Componente isolado para conviver com /assets/css/site.css.
   ================================================================ */
:root {
  --home-quote-navy: #042b66;
  --home-quote-blue: #0045ad;
  --home-quote-orange: #fc9f14;
  --home-quote-orange-dark: #dd8500;
  --home-quote-ink: #17263d;
  --home-quote-muted: #657389;
  --home-quote-line: #d7e0eb;
  --home-quote-line-strong: #bcc9d9;
  --home-quote-soft: #f4f7fb;
  --home-quote-blue-soft: #eef5ff;
  --home-quote-danger: #b42318;
  --home-quote-danger-soft: #fff4f2;
  --home-quote-success: #167a4a;
  --home-quote-success-soft: #eefaf4;
}

#cotacao { scroll-margin-top: 110px; }

.home-v2 .hero-v2-grid {
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  gap: clamp(2rem, 4vw, 4.2rem);
}

.home-flight-quote.quick-quote-card {
  width: 100%;
  max-width: 680px;
  justify-self: end;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  border-top: 5px solid var(--home-quote-orange);
  border-radius: 24px;
  background: rgba(255, 255, 255, .985);
  color: var(--home-quote-ink);
}

.home-flight-quote .home-quote-head { margin-bottom: 1rem; }
.home-flight-quote .home-quote-head strong {
  display: block;
  color: var(--home-quote-navy);
  font-size: clamp(1.3rem, 2vw, 1.62rem);
  line-height: 1.2;
}
.home-flight-quote .home-quote-head span {
  display: block;
  margin-top: .35rem;
  color: var(--home-quote-muted);
  font-size: .86rem;
  line-height: 1.48;
}

.home-flight-quote :where(fieldset) { min-width: 0; margin: 0; padding: 0; border: 0; }
.home-flight-quote :where(button, input, select) { font: inherit; }
.home-flight-quote button { border: 0; }
.home-flight-quote [hidden] { display: none !important; }

.home-flight-quote .home-trip-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  margin-bottom: 1rem;
  padding: .28rem;
  border: 1px solid var(--home-quote-line);
  border-radius: 11px;
  background: var(--home-quote-soft);
}
.home-flight-quote .home-trip-type legend,
.home-flight-quote .home-passengers legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.home-flight-quote .home-choice-pill { position: relative; cursor: pointer; }
.home-flight-quote .home-choice-pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.home-flight-quote .home-choice-pill span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .7rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #56657a;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.home-flight-quote .home-choice-pill input:checked + span {
  border-color: var(--home-quote-line-strong);
  background: #fff;
  color: var(--home-quote-navy);
  box-shadow: 0 3px 12px rgba(4, 43, 102, .08);
}
.home-flight-quote .home-choice-pill input:focus-visible + span {
  outline: 3px solid rgba(252, 159, 20, .58);
  outline-offset: 2px;
}

.home-flight-quote .home-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: .6rem;
  align-items: start;
}
.home-flight-quote .home-field { position: relative; min-width: 0; }
.home-flight-quote .home-field > label,
.home-flight-quote .home-passengers-label {
  display: block;
  margin-bottom: .4rem;
  color: var(--home-quote-navy);
  font-size: .72rem;
  font-weight: 800;
}
.home-flight-quote .home-input-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  border: 1px solid var(--home-quote-line-strong);
  border-radius: 11px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.home-flight-quote .home-input-shell:hover { border-color: #96a8bf; }
.home-flight-quote .home-input-shell:focus-within {
  border-color: var(--home-quote-blue);
  box-shadow: 0 0 0 4px rgba(0, 69, 173, .1);
}
.home-flight-quote .home-input-shell:has(input.is-invalid) {
  border-color: var(--home-quote-danger);
  background: var(--home-quote-danger-soft);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .08);
}
.home-flight-quote .home-input-shell > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: .78rem;
  fill: var(--home-quote-blue);
}
.home-flight-quote .home-input-shell input[type="text"] {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: .7rem .75rem;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--home-quote-ink);
  font-size: .82rem;
  font-weight: 650;
  box-shadow: none;
}
.home-flight-quote .home-input-shell input::placeholder { color: #8996a7; font-weight: 500; }
.home-flight-quote .home-field-hint {
  display: block;
  min-height: 15px;
  margin-top: .3rem;
  color: #78869a;
  font-size: .62rem;
  line-height: 1.35;
}
.home-flight-quote .home-swap-route {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 1.72rem;
  border: 1px solid #c8d7ec;
  border-radius: 50%;
  background: var(--home-quote-blue-soft);
  color: var(--home-quote-blue);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.home-flight-quote .home-swap-route:hover { transform: rotate(180deg); background: var(--home-quote-blue); color: #fff; }
.home-flight-quote .home-swap-route svg { width: 19px; height: 19px; fill: currentColor; }

.home-flight-quote .home-location-field { z-index: 2; }
.home-flight-quote .home-location-field:focus-within { z-index: 70; }
.home-flight-quote .home-location-options {
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 180;
  width: min(430px, calc(100vw - 32px));
  max-height: 318px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--home-quote-line-strong);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(4, 43, 102, .22);
  scrollbar-width: thin;
}
.home-flight-quote .home-route-grid > .home-location-field:last-child .home-location-options { right: 0; left: auto; }
.home-flight-quote .home-location-options::before {
  content: "";
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--home-quote-blue), var(--home-quote-orange));
}
.home-flight-quote .home-location-option {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .3rem .7rem;
  padding: .72rem .82rem;
  border-bottom: 1px solid #edf1f6;
  border-radius: 0;
  background: #fff;
  color: var(--home-quote-ink);
  text-align: left;
  cursor: pointer;
}
.home-flight-quote .home-location-option:last-child { border-bottom: 0; }
.home-flight-quote .home-location-option:hover,
.home-flight-quote .home-location-option.is-active,
.home-flight-quote .home-location-option[aria-selected="true"] { background: var(--home-quote-blue-soft); }
.home-flight-quote .home-location-option__place { min-width: 0; }
.home-flight-quote .home-location-option__place strong,
.home-flight-quote .home-location-option__place span,
.home-flight-quote .home-location-option__meta { display: block; }
.home-flight-quote .home-location-option__place strong {
  overflow: hidden;
  color: var(--home-quote-navy);
  font-size: .78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-flight-quote .home-location-option__place span {
  margin-top: .1rem;
  overflow: hidden;
  color: var(--home-quote-muted);
  font-size: .64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-flight-quote .home-location-option__code {
  align-self: start;
  min-width: 48px;
  padding: .3rem .4rem;
  border: 1px solid #cdd8e8;
  border-radius: 6px;
  background: #fff;
  color: var(--home-quote-navy);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
}
.home-flight-quote .home-location-option__meta {
  grid-column: 1 / -1;
  color: #748196;
  font-size: .58rem;
  line-height: 1.4;
}
.home-flight-quote .home-location-options__empty { padding: .9rem; color: var(--home-quote-muted); font-size: .7rem; line-height: 1.5; }
.home-flight-quote .home-location-options__empty strong,
.home-flight-quote .home-location-options__empty span { display: block; }
.home-flight-quote .home-location-options__empty strong { margin-bottom: .2rem; color: var(--home-quote-navy); }

.home-flight-quote .home-hotel-option {
  margin-top: .9rem;
  border: 1px solid #d5e0ef;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7faff, #fffaf2);
  overflow: hidden;
}
.home-flight-quote .home-hotel-toggle {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 58px;
  padding: .75rem .85rem;
  cursor: pointer;
}
.home-flight-quote .home-hotel-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.home-flight-quote .home-hotel-switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c8d2df;
  box-shadow: inset 0 0 0 1px rgba(4, 43, 102, .08);
  transition: background-color .18s ease;
}
.home-flight-quote .home-hotel-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(4, 43, 102, .22);
  transition: transform .18s ease;
}
.home-flight-quote .home-hotel-toggle input:checked + .home-hotel-switch { background: var(--home-quote-blue); }
.home-flight-quote .home-hotel-toggle input:checked + .home-hotel-switch::after { transform: translateX(20px); }
.home-flight-quote .home-hotel-toggle input:focus-visible + .home-hotel-switch { outline: 3px solid rgba(252, 159, 20, .62); outline-offset: 3px; }
.home-flight-quote .home-hotel-copy { min-width: 0; }
.home-flight-quote .home-hotel-copy strong,
.home-flight-quote .home-hotel-copy span { display: block; }
.home-flight-quote .home-hotel-copy strong { color: var(--home-quote-navy); font-size: .78rem; }
.home-flight-quote .home-hotel-copy span { margin-top: .13rem; color: var(--home-quote-muted); font-size: .64rem; line-height: 1.4; }
.home-flight-quote .home-hotel-badge {
  margin-left: auto;
  padding: .3rem .46rem;
  border-radius: 999px;
  background: rgba(252, 159, 20, .15);
  color: #9a5b00;
  font-size: .58rem;
  font-weight: 850;
  white-space: nowrap;
}
.home-flight-quote .home-hotel-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .68rem .85rem;
  border-top: 1px solid #e3e9f1;
  background: rgba(255, 255, 255, .72);
}
.home-flight-quote .home-hotel-details p { margin: 0; color: var(--home-quote-muted); font-size: .64rem; line-height: 1.42; }
.home-flight-quote .home-hotel-nights { display: flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.home-flight-quote .home-hotel-nights label { color: var(--home-quote-navy); font-size: .65rem; font-weight: 800; }

.home-flight-quote .date-picker-field { position: relative; margin-top: .9rem; }
.home-flight-quote .date-picker-field__label {
  display: block;
  margin-bottom: .4rem;
  color: var(--home-quote-navy);
  font-size: .72rem;
  font-weight: 800;
}
.home-flight-quote .date-picker-field__label span { color: #7c8999; font-size: .61rem; font-weight: 600; }
.home-flight-quote .date-picker-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  min-height: 64px;
  overflow: hidden;
  border: 1px solid var(--home-quote-line-strong);
  border-radius: 11px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.home-flight-quote .date-picker-trigger:hover { border-color: #96a8bf; }
.home-flight-quote .date-picker-trigger.is-oneway { grid-template-columns: minmax(0, 1fr); }
.home-flight-quote .date-picker-trigger:focus-within { border-color: var(--home-quote-blue); box-shadow: 0 0 0 4px rgba(0, 69, 173, .1); }
.home-flight-quote .date-picker-trigger.is-invalid { border-color: var(--home-quote-danger); background: var(--home-quote-danger-soft); box-shadow: 0 0 0 4px rgba(180, 35, 24, .08); }
.home-flight-quote .date-picker-segment.is-invalid { background: rgba(180, 35, 24, .05); }
.home-flight-quote .date-picker-segment {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: .12rem;
  padding: .6rem .75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-quote-ink);
  text-align: left;
  cursor: pointer;
}
.home-flight-quote .date-picker-segment:hover { background: var(--home-quote-blue-soft); }
.home-flight-quote .date-picker-segment__label { color: var(--home-quote-blue); font-size: .56rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-flight-quote .date-picker-segment strong { overflow: hidden; color: #728095; font-size: .78rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.home-flight-quote .date-picker-segment.is-filled strong { color: var(--home-quote-navy); font-weight: 800; }
.home-flight-quote .date-picker-segment small { overflow: hidden; color: #8490a0; font-size: .56rem; text-overflow: ellipsis; white-space: nowrap; }
.home-flight-quote .date-picker-trigger__divider { width: 1px; align-self: stretch; margin-block: .65rem; background: var(--home-quote-line); }
.home-flight-quote .date-picker-hint { display: block; min-height: 15px; margin-top: .3rem; color: #78869a; font-size: .62rem; }

.home-flight-quote .home-passengers { margin-top: .9rem; }
.home-flight-quote .home-passenger-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.home-flight-quote .home-passenger-control {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding: .7rem;
  border: 1px solid var(--home-quote-line);
  border-radius: 11px;
  background: var(--home-quote-soft);
}
.home-flight-quote .home-passenger-control__label { min-width: 0; }
.home-flight-quote .home-passenger-control__label strong,
.home-flight-quote .home-passenger-control__label span { display: block; }
.home-flight-quote .home-passenger-control__label strong { color: var(--home-quote-navy); font-size: .72rem; }
.home-flight-quote .home-passenger-control__label span { margin-top: .1rem; color: var(--home-quote-muted); font-size: .56rem; white-space: nowrap; }
.home-flight-quote .home-stepper {
  display: grid;
  grid-template-columns: 31px 34px 31px;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--home-quote-line-strong);
  border-radius: 8px;
  background: #fff;
}
.home-flight-quote .home-stepper button {
  width: 31px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--home-quote-blue);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.home-flight-quote .home-stepper button:hover:not(:disabled) { background: var(--home-quote-blue); color: #fff; }
.home-flight-quote .home-stepper button:disabled { color: #b6bfca; cursor: not-allowed; }
.home-flight-quote .home-stepper input {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-inline: 1px solid var(--home-quote-line);
  border-radius: 0;
  background: #fff;
  color: var(--home-quote-navy);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}
.home-flight-quote .home-stepper input::-webkit-outer-spin-button,
.home-flight-quote .home-stepper input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.home-flight-quote .home-stepper input.is-invalid { background: var(--home-quote-danger-soft); color: var(--home-quote-danger); }

.home-flight-quote .home-child-ages {
  margin-top: .8rem;
  padding: .75rem;
  border: 1px solid var(--home-quote-line);
  border-radius: 11px;
  background: var(--home-quote-soft);
}
.home-flight-quote .home-child-ages__header { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; margin-bottom: .55rem; }
.home-flight-quote .home-child-ages__header strong { color: var(--home-quote-navy); font-size: .72rem; }
.home-flight-quote .home-child-ages__header span,
.home-flight-quote .home-child-ages__hint { color: var(--home-quote-muted); font-size: .56rem; line-height: 1.4; }
.home-flight-quote .home-child-ages__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
.home-flight-quote .home-child-age-field { min-width: 0; }
.home-flight-quote .home-child-age-field:last-child:nth-child(odd) { grid-column: 1 / -1; }
.home-flight-quote .home-child-age-field label { display: block; margin-bottom: .28rem; color: var(--home-quote-navy); font-size: .62rem; font-weight: 800; }
.home-flight-quote .home-child-age-field select {
  width: 100%;
  min-height: 43px;
  padding: .55rem .65rem;
  border: 1px solid var(--home-quote-line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--home-quote-ink);
  font-size: .72rem;
  font-weight: 650;
  outline: 0;
}
.home-flight-quote .home-child-age-field select:focus { border-color: var(--home-quote-blue); box-shadow: 0 0 0 4px rgba(0, 69, 173, .1); }
.home-flight-quote .home-child-age-field select.is-invalid { border-color: var(--home-quote-danger); background: var(--home-quote-danger-soft); box-shadow: 0 0 0 4px rgba(180, 35, 24, .08); }
.home-flight-quote .home-child-ages__hint { display: block; margin-top: .5rem; }

.home-flight-quote .home-form-feedback { min-height: 17px; margin-top: .7rem; color: var(--home-quote-danger); font-size: .68rem; font-weight: 700; }
.home-flight-quote .home-form-feedback.is-error,
.home-flight-quote .home-form-feedback.is-success { padding: .58rem .68rem; border-radius: 9px; }
.home-flight-quote .home-form-feedback.is-error { border: 1px solid rgba(180, 35, 24, .18); background: var(--home-quote-danger-soft); }
.home-flight-quote .home-form-feedback.is-success { border: 1px solid rgba(22, 122, 74, .18); background: var(--home-quote-success-soft); color: var(--home-quote-success); }
.home-flight-quote .home-flight-submit { width: 100%; min-height: 50px; margin-top: .1rem; }
.home-flight-quote .home-flight-submit svg { width: 19px; height: 19px; fill: currentColor; }
.home-flight-quote .home-privacy-note { margin: .55rem 0 0; color: #778497; font-size: .58rem; line-height: 1.5; text-align: center; }
.home-flight-quote .home-privacy-note a { color: var(--home-quote-blue); font-weight: 800; }

.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;
}

/* Calendário unificado. */
body.calendar-open { overflow: hidden; overscroll-behavior: none; }
.flight-calendar {
  --brand-navy: var(--home-quote-navy);
  --brand-blue: var(--home-quote-blue);
  --brand-orange: var(--home-quote-orange);
  --brand-orange-dark: var(--home-quote-orange-dark);
  --ink: var(--home-quote-ink);
  --muted: var(--home-quote-muted);
  --line: var(--home-quote-line);
  --surface-soft: var(--home-quote-soft);
  --surface-blue: var(--home-quote-blue-soft);
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 24px;
}
.flight-calendar[hidden] { display: none !important; }
.flight-calendar button { font: inherit; border: 0; }
.flight-calendar__backdrop { position: absolute; inset: 0; background: rgba(4, 31, 70, .62); backdrop-filter: blur(3px); }
.flight-calendar__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(190, 202, 220, .9);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(1, 24, 59, .34);
}
.flight-calendar__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 20px 24px 15px; border-bottom: 1px solid var(--line); }
.flight-calendar__kicker { display: block; margin-bottom: 5px; color: var(--brand-blue); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.flight-calendar__header h3 { margin: 0; color: var(--brand-navy); font-size: 24px; line-height: 1.2; letter-spacing: -.02em; }
.flight-calendar__header p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.flight-calendar__close,
.flight-calendar__nav { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid var(--line); background: var(--surface-soft); color: var(--brand-navy); cursor: pointer; transition: color .15s ease, background-color .15s ease, border-color .15s ease; }
.flight-calendar__close { width: 40px; height: 40px; border-radius: 50%; }
.flight-calendar__close:hover,
.flight-calendar__nav:hover:not(:disabled) { border-color: var(--brand-blue); background: var(--brand-blue); color: #fff; }
.flight-calendar__close svg,
.flight-calendar__nav svg { width: 19px; height: 19px; fill: currentColor; }
.flight-calendar__toolbar { display: grid; grid-template-columns: 42px minmax(0, 1fr) 42px; align-items: center; gap: 12px; padding: 11px 24px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.flight-calendar__nav { width: 38px; height: 38px; border-radius: 50%; }
.flight-calendar__nav:disabled { background: #f6f8fb; color: #a9b3c1; cursor: not-allowed; opacity: .62; }
.flight-calendar__selection { overflow: hidden; color: var(--brand-navy); font-size: 11px; font-weight: 800; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.flight-calendar__months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; min-height: 350px; padding: 20px 24px 24px; overflow: auto; overscroll-behavior: contain; }
.flight-calendar__month { min-width: 0; padding-inline: 18px; }
.flight-calendar__month + .flight-calendar__month { border-left: 1px solid var(--line); }
.flight-calendar__month h4 { margin: 0 0 14px; color: var(--brand-navy); font-size: 14px; font-weight: 800; text-align: center; }
.flight-calendar__weekdays,
.flight-calendar__days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.flight-calendar__weekdays { margin-bottom: 7px; }
.flight-calendar__weekdays abbr { color: #7a8798; font-size: 9px; font-weight: 800; text-align: center; text-decoration: none; }
.flight-calendar__days { row-gap: 4px; }
.flight-calendar__day,
.flight-calendar__day-placeholder { aspect-ratio: 1 / 1; min-width: 0; }
.flight-calendar__day { position: relative; display: grid; place-items: center; padding: 0; border-radius: 9px; background: transparent; color: #26374f; cursor: pointer; font-size: 11px; font-weight: 650; isolation: isolate; }
.flight-calendar__day span { position: relative; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 50%; }
.flight-calendar__day:hover:not(:disabled) span { border-color: #bed0ec; background: var(--surface-blue); color: var(--brand-navy); }
.flight-calendar__day.is-in-range,
.flight-calendar__day.is-range-start,
.flight-calendar__day.is-range-end { border-radius: 0; background: #eaf1ff; }
.flight-calendar__day.is-range-start { border-radius: 9px 0 0 9px; }
.flight-calendar__day.is-range-end { border-radius: 0 9px 9px 0; }
.flight-calendar__day.is-departure span,
.flight-calendar__day.is-return span { border-color: var(--brand-blue); background: var(--brand-blue); color: #fff; box-shadow: 0 5px 14px rgba(0, 69, 173, .22); }
.flight-calendar__day.is-departure:hover:not(:disabled) span,
.flight-calendar__day.is-return:hover:not(:disabled) span { border-color: var(--brand-blue); background: var(--brand-blue); color: #fff; }
.flight-calendar__day.is-departure.is-return { border-radius: 9px; }
.flight-calendar__day.is-today:not(.is-departure):not(.is-return) span { border-color: var(--brand-blue); color: var(--brand-blue); }
.flight-calendar__day:disabled { color: #bcc4cf; cursor: not-allowed; text-decoration: line-through; }
.flight-calendar__day:focus-visible { z-index: 3; outline: 3px solid rgba(252, 159, 20, .72); outline-offset: -2px; }
.flight-calendar__footer { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; padding: 13px 24px; border-top: 1px solid var(--line); background: #fff; }
.flight-calendar__clear { min-height: 42px; padding: 8px 3px; background: transparent; color: var(--brand-blue); cursor: pointer; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.flight-calendar__clear:disabled { color: #9aa5b4; cursor: not-allowed; text-decoration: none; }
.flight-calendar__footer-summary { overflow: hidden; color: var(--muted); font-size: 10px; font-weight: 650; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.flight-calendar__confirm { min-height: 44px; padding: 10px 18px; border: 1px solid rgba(4, 43, 102, .1); border-radius: 10px; background: var(--brand-orange); color: var(--brand-navy); font-weight: 800; cursor: pointer; }
.flight-calendar__confirm:hover:not(:disabled) { background: var(--brand-orange-dark); color: #fff; }
.flight-calendar__confirm:disabled { border-color: #dce2ea; background: #e8ecf2; color: #7f8b9c; cursor: not-allowed; opacity: 1; }

@media (max-width: 1100px) {
  .home-v2 .hero-v2-grid { grid-template-columns: minmax(0, .72fr) minmax(500px, 1.28fr); gap: 2rem; }
}

@media (max-width: 860px) {
  .home-v2 .hero-v2-grid { grid-template-columns: 1fr; }
  .home-flight-quote.quick-quote-card { order: -1; max-width: 720px; justify-self: stretch; }
}

@media (max-width: 720px) {
  #cotacao { scroll-margin-top: 76px; }
  .home-flight-quote.quick-quote-card { padding: 1rem; border-radius: 18px; }
  .home-flight-quote .home-quote-head { margin-bottom: .8rem; }
  .home-flight-quote .home-quote-head strong { font-size: 1.24rem; }
  .home-flight-quote .home-quote-head span { font-size: .78rem; }
  .home-flight-quote .home-route-grid { grid-template-columns: 1fr; gap: .15rem; }
  .home-flight-quote .home-swap-route { z-index: 3; width: 36px; height: 36px; margin: -.18rem .65rem -.08rem auto; transform: rotate(90deg); }
  .home-flight-quote .home-swap-route:hover { transform: rotate(270deg); }
  .home-flight-quote .home-location-options,
  .home-flight-quote .home-route-grid > .home-location-field:last-child .home-location-options { top: 74px; right: auto; left: 0; width: 100%; max-height: 290px; }
  .home-flight-quote .home-input-shell input[type="text"] { font-size: 16px; }
  .home-flight-quote .home-hotel-badge { display: none; }
  .home-flight-quote .home-hotel-details { align-items: flex-start; flex-direction: column; }
  .home-flight-quote .home-passenger-grid { gap: .45rem; }
  .home-flight-quote .home-passenger-control { padding: .58rem; gap: .4rem; }
  .home-flight-quote .home-passenger-control__label span { white-space: normal; }
  .home-flight-quote .home-child-ages__header { align-items: flex-start; flex-direction: column; gap: .12rem; }
  .home-flight-quote .date-picker-field { margin-top: .75rem; }
  .home-flight-quote .date-picker-trigger { min-height: 58px; }
  .home-flight-quote .date-picker-segment { min-height: 58px; padding: .48rem .56rem; }
  .home-flight-quote .date-picker-segment strong { font-size: .72rem; }
  .home-flight-quote .date-picker-segment small { font-size: .52rem; }
  .home-flight-quote .date-picker-hint { display: none; }

  .flight-calendar { place-items: stretch; padding: 0; }
  .flight-calendar__backdrop { display: none; }
  .flight-calendar__panel { width: 100%; height: 100dvh; max-height: none; border: 0; border-radius: 0; box-shadow: none; }
  .flight-calendar__header { flex: 0 0 auto; gap: 14px; padding: max(14px, env(safe-area-inset-top)) 15px 11px; }
  .flight-calendar__kicker { display: none; }
  .flight-calendar__header h3 { font-size: 20px; }
  .flight-calendar__header p { margin-top: 3px; font-size: 10px; }
  .flight-calendar__close { width: 38px; height: 38px; }
  .flight-calendar__toolbar { flex: 0 0 auto; grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 8px; padding: 8px 14px; }
  .flight-calendar__nav { width: 36px; height: 36px; }
  .flight-calendar__selection { font-size: 10px; }
  .flight-calendar__months { grid-template-columns: minmax(0, 1fr); flex: 1 1 auto; min-height: 0; padding: 16px 12px 26px; }
  .flight-calendar__month { padding-inline: 0; }
  .flight-calendar__month + .flight-calendar__month { display: none; }
  .flight-calendar__month h4 { margin-bottom: 12px; font-size: 15px; }
  .flight-calendar__weekdays abbr { font-size: 10px; }
  .flight-calendar__days { row-gap: 5px; }
  .flight-calendar__day span { width: 38px; height: 38px; font-size: 12px; }
  .flight-calendar__footer { position: sticky; bottom: 0; flex: 0 0 auto; grid-template-columns: auto minmax(0, 1fr); gap: 12px; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); box-shadow: 0 -10px 26px rgba(4, 43, 102, .08); }
  .flight-calendar__footer-summary { display: none; }
  .flight-calendar__clear { min-height: 48px; font-size: 10px; }
  .flight-calendar__confirm { width: 100%; min-height: 48px; padding-inline: 14px; font-size: 12px; }
}

@media (max-width: 430px) {
  .home-flight-quote .home-trip-type { margin-bottom: .75rem; }
  .home-flight-quote .home-passenger-grid { grid-template-columns: 1fr; }
  .home-flight-quote .home-child-ages__grid { grid-template-columns: 1fr; }
  .home-flight-quote .home-child-age-field:last-child:nth-child(odd) { grid-column: auto; }
  .home-flight-quote .home-hotel-copy span { max-width: 220px; }
  .flight-calendar__day span { width: 35px; height: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-flight-quote *, .flight-calendar * { scroll-behavior: auto !important; transition: none !important; }
}

/* Seleção da loja após a validação da cotação. */
body.home-store-modal-open { overflow: hidden; }
.home-store-modal[hidden] { display: none !important; }
.home-store-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 24px;
  isolation: isolate;
}
.home-store-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 20, 48, .72);
  cursor: default;
  backdrop-filter: blur(5px);
}
.home-store-modal__panel {
  width: min(620px, 100%);
  max-height: min(720px, calc(100dvh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(2, 20, 48, .34);
  color: var(--home-quote-ink);
}
.home-store-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--home-quote-line);
  background: linear-gradient(135deg, #f7faff, #fffaf2);
}
.home-store-modal__kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--home-quote-blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-store-modal__header h2 {
  margin: 0;
  color: var(--home-quote-navy);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.home-store-modal__header p {
  margin: 6px 0 0;
  color: var(--home-quote-muted);
  font-size: 12px;
  line-height: 1.5;
}
.home-store-modal__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--home-quote-line);
  border-radius: 50%;
  background: #fff;
  color: var(--home-quote-navy);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.home-store-modal__close:hover { border-color: var(--home-quote-blue); background: var(--home-quote-blue); color: #fff; }
.home-store-modal__close svg { width: 19px; height: 19px; fill: currentColor; }
.home-store-modal__options {
  display: grid;
  gap: 10px;
  padding: 18px 22px 10px;
}
.home-store-option {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px 13px;
  border: 1px solid #d4dfed;
  border-radius: 14px;
  background: #fff;
  color: var(--home-quote-ink);
  text-align: left;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.home-store-option:hover {
  transform: translateY(-1px);
  border-color: var(--home-quote-blue);
  background: var(--home-quote-blue-soft);
  box-shadow: 0 10px 24px rgba(4, 43, 102, .1);
}
.home-store-option:focus-visible { outline: 3px solid rgba(252, 159, 20, .7); outline-offset: 2px; }
.home-store-option:disabled { cursor: wait; opacity: .7; }
.home-store-option__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--home-quote-blue-soft);
  color: var(--home-quote-blue);
}
.home-store-option__icon svg { width: 21px; height: 21px; fill: currentColor; }
.home-store-option__copy { min-width: 0; }
.home-store-option__copy strong,
.home-store-option__copy small { display: block; }
.home-store-option__copy strong { color: var(--home-quote-navy); font-size: 14px; line-height: 1.25; }
.home-store-option__copy small { margin-top: 4px; color: var(--home-quote-muted); font-size: 11px; line-height: 1.35; }
.home-store-option__action {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(252, 159, 20, .17);
  color: #8a5000;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}
.home-store-modal__note {
  margin: 0;
  padding: 8px 22px 20px;
  color: #728096;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 720px) {
  .home-store-modal { align-items: end; padding: 0; }
  .home-store-modal__panel {
    width: 100%;
    max-height: min(88dvh, 680px);
    border: 0;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -20px 60px rgba(2, 20, 48, .3);
  }
  .home-store-modal__header { padding: 18px 16px 14px; }
  .home-store-modal__header h2 { font-size: 22px; }
  .home-store-modal__header p { max-width: 285px; font-size: 11px; }
  .home-store-modal__options { gap: 8px; padding: 14px 14px 8px; }
  .home-store-option { min-height: 70px; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 10px; padding: 10px; }
  .home-store-option__icon { width: 40px; height: 40px; }
  .home-store-option__copy strong { font-size: 13px; }
  .home-store-option__copy small { font-size: 10px; }
  .home-store-option__action { padding: 6px 8px; font-size: 9px; }
  .home-store-modal__note { padding: 7px 16px max(16px, env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .home-store-option { grid-template-columns: 40px minmax(0, 1fr); }
  .home-store-option__action { display: none; }
}

