.site-login-otp {
  display: grid;
  gap: 10px;
}

.site-login-otp input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

.site-login-otp input:focus {
  border-color: rgba(255,191,0,.35);
  box-shadow: 0 0 0 3px rgba(255,191,0,.08);
}

.site-login-otp small {
  color: var(--gold);
  font-size: 12px;
}

.hidden {
  display: none !important;
}





.site-user-wrap {
  margin-left: auto;
  position: relative;
}

.site-user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);

  cursor: pointer;
  transition: all .2s ease;
}

.site-user-trigger:hover {
  border-color: rgba(255,191,0,.3);
  background: rgba(255,191,0,.06);
}

.site-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.site-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-user-info strong {
  font-size: 13px;
}

.site-user-info span {
  font-size: 11px;
  color: var(--muted);
}

.site-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index: 9999;
}

.site-user-menu.hidden {
  display: none;
}
/* ============================= */
/* SHELL DA COTAÇÃO */
/* ============================= */

.search-section {
  padding-bottom: 30px;
}

.search-shell {
  position: relative;
  padding: 20px;
  background: rgba(11, 11, 11, 0.9);
  border: 1px solid rgba(255, 191, 0, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 45;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.search-header h2 {
  margin: 8px 0 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

/* ============================= */
/* WIZARD / ALERTAS */
/* ============================= */

.step-indicator {
  display: flex;
  gap: 10px;
}

.step-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.step-pill.is-active {
  border-color: rgba(255, 191, 0, 0.35);
  color: var(--gold);
}

.form-alert {
  min-height: 24px;
  color: var(--gold-soft);
  font-weight: 600;
}

.form-alert.is-error {
  color: #ff8f8f;
}

.form-alert.is-success {
  color: #b6f0b1;
}

.form-step {
  display: none;
  margin-top: 16px;
}

.form-step.is-active {
  display: block;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.step-actions.between {
  justify-content: space-between;
}

/* ============================= */
/* TOOLBAR */
/* ============================= */

.gf-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gf-chip-wrap {
  position: relative;
}

.gf-chip {
  height: 35px;
  border: 1px solid transparent;
  background: transparent;
  color: #E6E6E6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .14s ease;
  -webkit-tap-highlight-color: transparent;
}

.gf-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 191, 0, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gf-chip:active {
  transform: scale(.985);
}

.gf-chip[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 191, 0, 0.34);
  box-shadow: 0 10px 30px rgba(255, 191, 0, 0.10);
}

.gf-chip-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.gf-chip-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
  transition:
    transform .22s ease,
    opacity .18s ease,
    color .22s ease;
  transform-origin: center;
}


@media (max-width: 900px) {
  .gf-chip-icon {
    width: 15px;
    height: 15px;
  }
  #tripTypeLabel,
  #passengerSummary,
  #travelClassLabel {
    font-size: 14px;
    white-space: nowrap;
  }
  .location-info-card p {
    font-size: 14px;
  }
}
.gf-chip-caret {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
  transition: transform .25s ease;
}

.gf-chip[aria-expanded="true"] .gf-chip-caret {
  transform: rotate(180deg);
  color: #FFBF00;
}

.gf-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #111;
  border: 1px solid rgba(255, 191, 0, 0.16);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.gf-menu-item {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font: 500 14px 'Inter', sans-serif;
}

.gf-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.gf-menu-item.is-active {
  background: var(--gold);
  color: rgba(11, 11, 11, 0.9);
}

/* ============================= */
/* CAMPOS GERAIS */
/* ============================= */

.field span {
  color: var(--muted);
}

.field select,
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  appearance: none;
}

.phone-grid {
  grid-template-columns: 140px 1fr;
}


/* ============================= */
/* POPOVER PASSAGEIROS */
/* ============================= */

.popover {
  position: fixed;
  z-index: 45;
  padding: 12px 14px;
  border-radius: 16px;
  background: #111;
  border: 1px solid rgba(255, 191, 0, 0.16);
  box-shadow: var(--shadow);
}

.passenger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 14px 'Inter', sans-serif;
}
.passenger-row strong {
color: var(--gold);
}

.passenger-row:last-of-type {
  border-bottom: 0;
}

.passenger-row small {
  display: block;
  color: #fff;
  margin-top: 4px;
}

.counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: center;
}

.counter-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
}

.counter span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

.popover-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

/* ============================= */
/* ÁREA DE BUSCA */
/* ============================= */

.gf-search-area {
  margin-top: 12px;
}

.gf-search-row,
.gf-multi-segment {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.gf-search-row,
.gf-search-row-single {
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
}

/* ============================= */
/* ROTA / CAMPOS PRINCIPAIS */
/* ============================= */

.gf-route-group,
.gf-date-group,
.gf-date-box-multi {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .14s ease;
}

.gf-route-group:hover,
.gf-date-group:hover,
.gf-date-box-multi:hover,
.gf-date-trigger-premium:hover,
.segment-date-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 191, 0, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gf-route-group {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: visible;
}

.gf-route-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.gf-route-field + .gf-route-field {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.gf-route-field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #E6E6E6;
  padding: 0 16px 0 36px;
  font: 500 16px 'Inter', sans-serif;
}

.gf-route-field input::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.gf-route-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.40);
  color: rgba(255, 255, 255, 0.40);
  pointer-events: none;
  z-index: 2;
}

.gf-route-origin {
  left: 14px;
}

.gf-route-destination {
  left: 23px;
}

.segment-origin,
.segment-destination {
  position: static;
  transform: none;
  color: inherit;
  pointer-events: auto;
}

#destinationInput,
input.segment-destination {
  padding-left: 44px;
}

.gf-route-swap {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #181818;
  color: var(--muted);
  cursor: pointer;
  z-index: 10;
  font-size: 15px;
  transition: all .2s ease;
}

.gf-route-swap svg {
  color: rgba(255, 255, 255, 0.40);
}

.gf-route-swap:hover {
  border-color: rgba(235, 199, 65, 0.45);
  color: var(--gold-soft);
  background: #222;
}

/* ============================= */
/* AUTOCOMPLETE */
/* ============================= */

.with-autocomplete {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.gf-route-group,
.gf-route-field,
.gf-search-area,
.gf-search-row,
.gf-multi-segment,
.newsletter-form,
.newsletter-row,
.footer-top-inner {
  overflow: visible;
}

.autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  min-width: 100%;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 191, 0, 0.06) inset;
  backdrop-filter: blur(14px);
  z-index: 120;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.autocomplete-list::-webkit-scrollbar {
  width: 10px;
}

.autocomplete-list::-webkit-scrollbar-track {
  background: transparent;
}

.autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.autocomplete-list.is-open {
  display: block;
}

.autocomplete-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 10px 12px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    background .18s ease,
    transform .14s ease,
    border-color .18s ease;
  font-family: 'Inter', sans-serif;
}

.autocomplete-item:last-child {
  border-bottom: 0;
}

.autocomplete-item:hover,
.autocomplete-item:focus,
.autocomplete-item:active,
.autocomplete-item.is-active {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.autocomplete-item[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 191, 0, 0.12);
}

.autocomplete-item strong {
  display: block;
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.autocomplete-item small {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
}

#originSuggestions,
#destinationSuggestions,
.gf-multi-segment .autocomplete-list {
  max-height: 290px;
}

/* footer autocomplete */

#footerOriginSuggestions,
#footerDestinationSuggestions {
  max-height: 260px;
  border-radius: 14px;
  z-index: 130;
}

#footerOriginSuggestions .autocomplete-item,
#footerDestinationSuggestions .autocomplete-item {
  padding: 12px 9px;
  gap: 4px;
  min-height: 58px;
  align-items: flex-start;
  background: transparent !important;
  color: #fff !important;
}

#footerOriginSuggestions .autocomplete-item:hover,
#footerDestinationSuggestions .autocomplete-item:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}

#footerOriginSuggestions .autocomplete-item strong,
#footerDestinationSuggestions .autocomplete-item strong {
  font-size: 13px;
  line-height: 1.25;
  color: #fff !important;
}

#footerOriginSuggestions .autocomplete-item small,
#footerDestinationSuggestions .autocomplete-item small {
  font-size: 11px;
  line-height: 1.3;
  color: #bdbdbd !important;
}

#footerOriginSuggestions .autocomplete-item + .autocomplete-item,
#footerDestinationSuggestions .autocomplete-item + .autocomplete-item {
  margin-top: 2px;
}

/* ============================= */
/* DATA BASE */
/* ============================= */

.gf-date-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.55);
  flex: 0 0 18px;
}

.gf-date-picker {
  position: relative;
  overflow: visible;
  background: transparent;
}

.gf-date-trigger {
  width: 100%;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  cursor: pointer;
  font: 500 16px 'Inter', sans-serif;
}

/* ============================= */
/* DATA PREMIUM */
/* ============================= */

.gf-date-group-premium {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  height: 64px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.gf-date-picker-premium {
  width: 100%;
  height: 100%;
  position: relative;
}

.gf-date-trigger-premium {
  width: 100%;
  min-height: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  text-align: left;
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .14s ease;
}

.gf-date-trigger-premium:focus-visible,
.segment-date-trigger:focus-visible {
  outline: none;
  border-color: rgba(255, 191, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.10);
}

.gf-date-trigger-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.gf-date-trigger-col small {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.gf-date-trigger-col strong {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gf-date-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 16px;
}

.gf-date-trigger-premium.is-oneway {
  grid-template-columns: 1fr;
}

.gf-date-trigger-premium.is-oneway .gf-date-divider,
.gf-date-trigger-premium.is-oneway #returnPreviewWrap {
  display: none;
}

/* ============================= */
/* CALENDÁRIO BASE */
/* ============================= */

.gf-calendar {
  position: absolute;
  top: calc(100% + 10px);
  width: 320px;
  padding: 16px;
  border-radius: 20px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 191, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.gf-calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gf-calendar-weekdays,
.gf-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  justify-items: center;
}

.gf-calendar-days button {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: white;
  cursor: pointer;
}

.gf-calendar-days button:hover {
  background: rgba(255, 191, 0, 0.2);
}

.gf-calendar-days .selected {
  background: var(--gold);
  color: #111;
}

/* ============================= */
/* CALENDÁRIO PREMIUM */
/* ============================= */

.gf-calendar-premium {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  width: 640px;
  max-width: calc(100vw - 48px);
  padding: 14px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 9999;
  overflow: hidden;
}

.gf-cal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-cal-mode {
  display: flex;
  gap: 8px;
}

.gf-cal-mode-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font: 600 14px 'Inter', sans-serif;
}

.gf-cal-mode-btn.is-active {
  background: rgba(255,191,0,.08);
  color: var(--gold);
}

.gf-cal-reset {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font: 600 13px 'Inter', sans-serif;
}

.gf-cal-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 52px;
  padding: 8px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-cal-input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.gf-cal-input.is-active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.gf-cal-input-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.gf-cal-input strong {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.gf-cal-months-wrap {
  position: relative;
  padding: 12px 54px 6px;
}

.gf-cal-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gf-cal-month {
  min-width: 0;
}

.gf-cal-month-title {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: lowercase;
}

.gf-calendar-weekdays span {
  width: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 0 3px;
}

.gf-calendar-days button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f1f3f4;
  cursor: pointer;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.gf-calendar-days button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gf-calendar-days button.is-disabled,
.gf-calendar-days button:disabled {
  opacity: .24;
  cursor: not-allowed;
}

.gf-calendar-days button.in-range {
  background: rgba(138, 180, 248, 0.18);
  border-radius: 0;
}

.gf-calendar-days button.range-start,
.gf-calendar-days button.range-end,
.gf-calendar-days button.selected {
  color: #202124;
  font-weight: 700;
}

.gf-calendar-days button.range-start,
.gf-calendar-days button.range-end {
  border-radius: 999px;
}

.gf-cal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,191,0,.08);
  color: var(--gold);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-cal-nav:disabled {
  opacity: .25;
  cursor: not-allowed;
}

.gf-cal-nav-prev {
  left: 10px;
}

.gf-cal-nav-next {
  right: 10px;
}

.gf-cal-footer {
  padding: 12px 0 0;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* ============================= */
/* MULTITRECHO */
/* ============================= */

#multiTripArea {
  margin-top: 16px;
}

#segmentsContainer {
  display: grid;
  gap: 12px;
}

.multicity-footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

#addSegmentBtn {
  padding: 10px 14px;
  border-radius: 12px;
}

.gf-multi-segment {
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr) 40px;
}

.gf-multi-segment .gf-route-group,
.gf-multi-segment .gf-date-box-multi {
  min-height: 64px;
  height: 64px;
}

.gf-date-box-multi {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .14s ease;
}

.gf-date-box-multi:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 191, 0, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.segment-date-trigger {
  width: 100%;
  height: 100%;
  min-height: 64px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #E6E6E6;
  padding: 0 16px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font: 500 16px 'Inter', sans-serif;
  cursor: pointer;
  border-radius: 18px;
}

.segment-date-trigger span:first-child {
  flex: 0 0 auto;
  opacity: .8;
}

.segment-date-trigger span:last-child {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 500 16px 'Inter', sans-serif;
}

.segment-calendar {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  min-width: 320px;
  width: 340px;
  padding: 14px;
  border-radius: 18px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 9999;
}

.segment-calendar .gf-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.segment-calendar .gf-calendar-header button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 191, 0, .08);
  color: var(--gold);
  cursor: pointer;
}

.segment-calendar .gf-cal-month-year {
  font: 700 16px 'Inter', sans-serif;
  color: #fff;
}

.segment-calendar .gf-calendar-weekdays span {
  width: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
}

.segment-calendar .gf-calendar-days button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f1f3f4;
  cursor: pointer;
  font: 600 12px 'Inter', sans-serif;
}

.segment-calendar .gf-calendar-days button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.segment-calendar .gf-calendar-days button.selected {
  background: var(--gold);
  color: #202124;
}

.segment-calendar .gf-calendar-days button.is-disabled,
.segment-calendar .gf-calendar-days button:disabled {
  opacity: .24;
  cursor: not-allowed;
}

.gf-segment-remove {
  width: 40px;
  height: 64px;
  align-self: stretch;
  justify-self: stretch;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  transition: all .2s ease;
}

.gf-segment-remove:hover {
  color: var(--text);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: min(360px, calc(100vw - 24px));
  background: #0d0d0d;
  color: var(--gold);
  border: 1px solid rgba(255,191,0,.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
/* ============================= */
/* EXTRAS */
/* ============================= */

.extras-wrap {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color .22s ease, background .22s ease;
}

.extras-wrap:hover {
  border-color: rgba(255, 191, 0, 0.18);
}

.extras-trigger {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.extras-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}

.extras-trigger-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.extras-trigger-left strong {
  font: 500 15px 'Inter', sans-serif;
  color: var(--gold);
}

.extras-trigger-left small {
  font: 500 12px 'Inter', sans-serif;
  color: #fff;
}

.extras-trigger-right {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  flex: 0 0 34px;
}

.extras-arrow {
  width: 20px;
  height: 20px;
  fill: var(--silver);
  transition: transform .28s ease;
}

.extras-wrap.is-open .extras-arrow {
  transform: rotate(180deg);
}

.extras-popover {
  display: none;
  padding: 18px 20px 10px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.extras-wrap.is-open .extras-popover {
  display: block;
}

.extras-notes {
  margin-bottom: 18px;
}

.extras-notes textarea {
  min-height: 62px;
  margin-top: 4px;
  resize: none;
}

.extras-divider {
  height: 1px;
  width: 100%;
  margin: 0 0 18px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}

.extras-services {
  margin-bottom: 14px;
}

.extras-section-title {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--muted);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.extras-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.extras-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================= */
/* MODAL REVISÃO / CONTATO */
/* ============================= */

.quote-review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-review-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.quote-review-dialog {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  max-height: min(88vh, 920px);
  overflow: auto;
  margin: 0;
  padding: 32px 28px;
  border-radius: 24px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 191, 0, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.quote-review-head {
  margin-bottom: 18px;
}

.quote-review-head h3 {
  margin: 10px 0 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.quote-review-screen .field,
.quote-review-screen .ddi-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-review-screen .field span,
.quote-review-screen .ddi-field span {
  font-size: 13px;
  color: #b7b7b7;
}

.quote-review-screen .field input,
.fake-select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #0a0a0a;
  color: #fff;
  outline: none;
}

.fake-select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-error {
  display: none;
  margin-top: 4px;
  font-size: 12px;
  color: #ff6b6b;
}

.field-error.is-visible {
  display: block;
}

.quote-review-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.quote-review-screen.is-active,
.quote-review-screen:not(.hidden) {
  display: block;
}

.quote-review-screen.hidden {
  display: none;
}

.quote-review-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.75;
  min-height: 220px;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.quote-review-card::-webkit-scrollbar {
  width: 10px;
}

.quote-review-card::-webkit-scrollbar-track {
  background: transparent;
}

.quote-review-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.quote-review-card strong {
  color: var(--gold);
}

.quote-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.quote-review-screen input.is-invalid {
  border-color: #d84c4c;
  box-shadow: 0 0 0 1px rgba(216, 76, 76, 0.18);
}

.quote-review-screen .field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #d84c4c;
}

.quote-review-screen .field-error.is-visible {
  display: block;
}

.quote-review-actions .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================= */
/* LOADING */
/* ============================= */

.quote-loading {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}

.quote-loading-success {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  background: rgba(255, 191, 0, 0.12);
  border: 1px solid rgba(255, 191, 0, 0.35);
  color: #ffbf00;
}

#quoteLoadingTitle {
  color: #ffbf00;
}

.plane-loader {
  position: relative;
  width: min(340px, 80%);
  height: 48px;
}

.plane-loader-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateY(-50%);
}

.plane-loader-plane {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 28px;
  animation: flyAcross 1.8s ease-in-out infinite;
  color: #ffbf00;
}

@keyframes flyAcross {
  0% { left: 0; opacity: .5; }
  50% { left: calc(100% - 28px); opacity: 1; }
  100% { left: 0; opacity: .5; }
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 900px) {
  .gf-search-row,
  .gf-search-row-single,
  .gf-multi-segment {
    grid-template-columns: 1fr;
  }

  .gf-calendar-premium {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(680px, calc(100vw - 12px));
  }

  .segment-calendar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(680px, calc(100vw - 12px));
  }

  .gf-segment-remove {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .gf-toolbar {
    gap: 2px;
  }

  .gf-chip {
    min-width: auto;
  }

  #classChip {
    width: 115px;
  }

  #travelClassLabel {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  #classMenu.gf-menu {
    left: -115px;
  }

  #passengerPopover.popover.passengers-popover {
    width: 260px;
    margin-top: -2px;
    left: 15% !important;
  }

  .gf-date-group,
  .gf-date-group-premium,
  .gf-date-box-multi,
  .gf-route-group {
    min-width: 100%;
  }

  .gf-calendar-premium {
    width: min(640px, calc(100vw - 12px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .gf-cal-months {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extras-actions {
    justify-content: space-between;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .quote-review-actions {
    justify-content: space-between;
    flex-direction: column-reverse;
  }

  .quote-review-dialog {
    padding: 20px;
    margin-top: 3vh;
    height: 380px;
    width: 350px;
  }

  .quote-review-head h3 {
    margin: 10px 0 0;
    font-size: 1.2rem;
  }

  .autocomplete-list,
  #footerOriginSuggestions,
  #footerDestinationSuggestions {
    max-height: 240px;
    border-radius: 14px;
  }

  .autocomplete-item {
    padding: 10px 11px;
  }

  .autocomplete-item strong {
    font-size: 12.5px;
  }

  .autocomplete-item small {
    font-size: 10px;
  }

  .search-header,
  .popover {
    width: min(360px, calc(100vw - 20px));
  }

  .step-actions,
  .step-actions.between,
  .popover-actions {
    flex-direction: row;
  }

  .passenger-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .counter {
    width: auto;
    justify-content: center;
  }

  .gf-route-swap {
    width: 25px;
    height: 25px;
  }
}
#extrasPopover label.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}





.ddi-field {
  position: relative;
  z-index: 20;
}

.ddi-field:has(.ddi-popover.is-open) {
  z-index: 999;
}

.ddi-trigger {
  width: 100%;
  min-height: 43px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
}

.ddi-trigger.is-open,
.ddi-trigger:focus {
  border-color: rgba(255,191,0,.35);
  box-shadow: 0 0 0 3px rgba(255,191,0,.08);
}

.ddi-trigger svg {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform .2s ease;
}

.ddi-trigger.is-open svg {
  transform: rotate(180deg);
}

.ddi-popover {
  display: none;
  position: absolute;
  z-index: 9999;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 10px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,191,0,.28);
  background: #090909;
  box-shadow: 0 24px 80px rgba(0,0,0,.85);
  width: 100%;
  height: 180px;
}

.ddi-popover.is-open {
  display: block;
}

.ddi-search {
  width: 100%;
  margin-bottom: 8px;
  padding: 11px 13px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);

  background: rgba(255,255,255,.03);
  color: var(--text);

  font: inherit;
  outline: none;
  box-sizing: border-box;
}

.ddi-search:focus {
  border-color: rgba(255,191,0,.35);
  box-shadow: 0 0 0 3px rgba(255,191,0,.08);
}

.ddi-results {
  max-height: 230px;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ddi-option {
  width: 100%;
  padding: 10px;
  display: flex;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.ddi-option:hover {
  background: rgba(255,255,255,.06);
}

.ddi-flag {
  width: 20px;
  height: 20px;
  object-fit: cover;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
}

.ddi-option-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ddi-option-main strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.ddi-option-main small {
  color: var(--muted);
  font-size: 11px;
}

.ddi-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.cookie-lock {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.cookie-lock.is-visible {
  display: flex;
}

.cookie-lock-card {
  width: min(100%, 520px);
  padding: 32px;
  border: 1px solid rgba(255, 191, 0, 0.28);
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.cookie-lock-card h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 2rem;
}

.cookie-lock-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-lock-card button {
  width: 100%;
  margin-top: 14px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #080808;
  font-weight: 900;
  cursor: pointer;
}

.cookie-lock-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

body.cookie-blocked {
  overflow: hidden;
}
