/* Booking wizard — clean UI */
.drawer-booking {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin 0.35s ease;
}

.drawer-booking.is-visible {
  max-height: none;
  opacity: 1;
  margin: 0.85rem 0 1rem;
  overflow: visible;
  scroll-margin-top: 8px;
  scroll-margin-bottom: calc(92px + env(safe-area-inset-bottom));
}

.drawer-booking.is-visible .drawer-booking__panel {
  box-shadow: 0 8px 28px rgba(15, 40, 71, 0.08);
}

.drawer-booking__panel {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: visible;
}

.drawer-booking__body {
  padding: 1rem 1.1rem 1.15rem;
  overflow-x: visible;
  min-width: 0;
}

.drawer-booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-booking__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.drawer-booking__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
}

.drawer-booking__close:hover {
  background: #f1f5f9;
  color: #475569;
}

.bk-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1.25rem;
}

.bk-progress__step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-progress__bar {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: background 0.25s;
}

.bk-progress__step.is-active .bk-progress__bar,
.bk-progress__step.is-done .bk-progress__bar {
  background: var(--primary);
}

.bk-progress__label {
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-progress__step.is-active .bk-progress__label {
  color: var(--primary);
}

.bk-pane {
  animation: bk-in 0.28s ease;
}

@keyframes bk-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.bk-step__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.bk-step__desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.bk-step--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
}

.bk-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 2rem 1.35rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--primary, #2563eb) 8%, transparent), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e8edf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bk-empty--compact {
  padding: 1.35rem 1rem;
  max-width: 100%;
}

.bk-empty__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary, #2563eb);
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

.bk-empty__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.bk-empty__desc {
  margin: 0;
  max-width: 26ch;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
}

.bk-alert {
  margin: 0 0 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.8125rem;
}

.bk-muted {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  padding: 0.75rem 0;
}

.bk-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.bk-input {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bk-input span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.bk-input input {
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  color: #0f172a;
  background: #fafbfc;
}

.bk-input input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
  background: #fff;
}

.bk-tariffs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 1rem;
}

.bk-tariff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.55rem 0.25rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}

.bk-tariff__key {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.bk-tariff__label {
  font-size: 0.625rem;
  color: #94a3b8;
}

.bk-tariff__price {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.bk-pax-list {
  border: 1px solid #eef2f6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.bk-pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.bk-pax-row:last-child {
  border-bottom: none;
}

.bk-pax-row__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}

.bk-pax-row__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-pax-row__name em {
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 4px;
}

.bk-pax-row__hint {
  display: block;
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-top: 1px;
  font-variant-numeric: tabular-nums;
}

.bk-pax-row__stepper {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.bk-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: #334155;
  font-size: 1rem;
  cursor: pointer;
}

.bk-qty-btn:hover:not(:disabled) {
  background: #f8fafc;
}

.bk-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bk-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  line-height: 32px;
}

.bk-pax-row__subtotal {
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 4.5rem;
  text-align: right;
}

.bk-pax-row__text {
  flex: 1;
  min-width: 0;
}

.bk-pax-row__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.bk-pax-panel {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e8edf2;
  animation: bk-in 0.28s ease;
}

.bk-pax-panel__title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.bk-pax-panel__desc {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.bk-pax-panel .bk-total {
  margin-bottom: 0.85rem;
}

.bk-pax-panel .bk-actions {
  margin-bottom: 0;
}

.bk-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
}

.bk-total--compact {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.bk-total__label {
  display: block;
  font-size: 0.6875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-total__ref {
  display: block;
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 2px;
}

.bk-total__value {
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.bk-days {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.bk-day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.bk-day:hover {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.bk-day.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 4%, #fff);
}

.bk-day__radio {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
}

.bk-day.is-selected .bk-day__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.bk-day__body {
  flex: 1;
  min-width: 0;
}

.bk-day__date {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.bk-day__meta {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.bk-day__rates {
  display: block;
  font-size: 0.625rem;
  color: #94a3b8;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.bk-day__total {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bk-search {
  margin-bottom: 0.65rem;
}

.bk-search input {
  width: 100%;
  padding: 0.625rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  background: #fafbfc;
}

.bk-pickups {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.bk-pickup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  font: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
}

.bk-pickup.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
  font-weight: 600;
}

.bk-pickup__radio {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
}

.bk-pickup.is-selected .bk-pickup__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 3px var(--primary);
}

.bk-receipt {
  padding: 0;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bk-receipt__head {
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--primary) 5%, #fff);
  border-bottom: 1px solid #eef2f6;
}

.bk-receipt__head strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.bk-receipt__facts {
  margin: 0;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.bk-receipt__facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
}

.bk-receipt__facts dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.bk-receipt__facts dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.bk-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.bk-breakdown-table th {
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
}

.bk-breakdown-table th:last-child,
.bk-breakdown-table td:last-child {
  text-align: right;
}

.bk-breakdown-table td {
  padding: 0.45rem 1rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  font-variant-numeric: tabular-nums;
}

.bk-breakdown-table td em {
  font-style: normal;
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-left: 2px;
}

.bk-breakdown-table td:last-child {
  font-weight: 700;
  color: #0f172a;
}

.bk-breakdown-table tbody tr:last-child td {
  border-bottom: none;
}

.bk-receipt__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #0f172a;
  color: #fff;
}

.bk-receipt__total span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.bk-receipt__total strong {
  font-size: 1.125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.bk-receipt__head span {
  font-size: 0.75rem;
  color: #64748b;
}

.bk-receipt__pickup {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.bk-breakdown {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px dashed #e2e8f0;
}

.bk-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: #475569;
}

.bk-breakdown li span:last-child {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.bk-actions {
  display: flex;
  gap: 0.5rem;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.bk-btn--block {
  width: 100%;
}

.bk-btn--primary {
  flex: 1;
  background: var(--primary, #050d36);
  color: #fff;
}

.bk-btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bk-btn--ghost {
  background: #fff;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

@media (max-width: 480px) {
  .bk-dates,
  .bk-tariffs {
    grid-template-columns: 1fr 1fr;
  }

  .bk-tariff__label {
    display: none;
  }

  .bk-pax-row {
    flex-wrap: wrap;
  }

  .bk-pax-row__subtotal {
    width: 100%;
    text-align: right;
    padding-top: 0.25rem;
    border-top: 1px dashed #f1f5f9;
  }
}

/* Hospedagem / locais */
.bk-locations {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.bk-locations__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bk-locations__list .bk-empty {
  margin: 0;
}

.bk-locations__or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-locations__or::before,
.bk-locations__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.bk-locations__alt {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bk-hotels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 0;
  padding-right: 2px;
}

.bk-location-alt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.bk-location-alt:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
}

.bk-location-alt.is-selected {
  border-style: solid;
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.bk-location-alt__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #fff;
  color: #64748b;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.bk-location-alt.is-selected .bk-location-alt__icon {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 25%, #e2e8f0);
  background: color-mix(in srgb, var(--primary) 8%, #fff);
}

.bk-location-alt__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.bk-location-alt__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-location-alt__hint {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.35;
}

.bk-location-alt__radio {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
}

.bk-location-alt.is-selected .bk-location-alt__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.bk-hotel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.bk-hotel:hover {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.bk-hotel.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
}

.bk-hotel__radio {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
}

.bk-hotel.is-selected .bk-hotel__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.bk-hotel__name {
  font-weight: 500;
  color: #0f172a;
}

.bk-hotel.is-selected .bk-hotel__name {
  font-weight: 600;
}

.bk-location-block {
  margin-bottom: 1.25rem;
}

.bk-location-block:last-child {
  margin-bottom: 0;
}

.bk-location-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}

.bk-custom-address {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.85rem 1rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.bk-locations__alt .bk-custom-address {
  margin-top: -0.15rem;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bk-locations__alt:has(.bk-location-alt.is-selected) .bk-custom-address {
  border-color: var(--primary);
  border-top: 1px dashed color-mix(in srgb, var(--primary) 30%, #e2e8f0);
}

.bk-locations__alt:has(.bk-location-alt.is-selected) .bk-location-alt {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.bk-custom-address__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.bk-custom-address__input {
  width: 100%;
  min-height: 4.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #0f172a;
  resize: vertical;
  background: #fff;
}

.bk-custom-address__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}

.bk-summary-chip {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.bk-loading {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

/* Preloader do wizard (hospedagens / disponibilidade) */
.bk-content {
  position: relative;
  min-height: 12rem;
}

.bk-content.is-loading .bk-content__inner {
  visibility: hidden;
  pointer-events: none;
}

.bk-preloader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
}

.bk-preloader__inner {
  text-align: center;
}

.bk-preloader__spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.65rem;
  border: 3px solid #e2e8f0;
  border-top-color: var(--primary, #14b8a6);
  border-radius: 50%;
  animation: bk-preloader-spin 0.75s linear infinite;
}

.bk-preloader__text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
}

@keyframes bk-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Calendário mensal */
.bk-cal {
  margin-bottom: 0.5rem;
  width: 100%;
  min-width: 0;
}

.bk-cal__pickup {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.bk-cal__pickup strong {
  color: #0f172a;
}

.bk-cal__hint {
  margin: -0.35rem 0 0.65rem;
  font-size: 0.6875rem;
  color: #94a3b8;
  text-align: center;
}

.bk-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.bk-cal__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.bk-cal__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.bk-cal__arrow:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.bk-cal__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bk-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
  margin-bottom: 4px;
}

.bk-cal__weekdays span {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  padding: 0.25rem 0;
}

.bk-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
}

.bk-cal__cell {
  aspect-ratio: 1;
  min-height: 56px;
  min-width: 0;
  container-type: inline-size;
}

.bk-cal__cell--empty {
  pointer-events: none;
}

.bk-cal__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.15rem 0.08rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f8fafc;
  cursor: default;
  font: inherit;
}

.bk-cal__day.is-available {
  background: #fff;
  border-color: #e8edf2;
  cursor: pointer;
}

.bk-cal__day.is-available:hover:not(.is-selected) {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.bk-cal__day.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, #fff);
}

.bk-cal__day.is-disabled {
  background: transparent;
  opacity: 0.45;
}

.bk-cal__num {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.2;
}

.bk-cal__day.is-available .bk-cal__num {
  color: #0f172a;
}

.bk-cal__dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22c55e;
}

.bk-cal__tag {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94a3b8;
  line-height: 1;
}

.bk-cal__day.is-selected .bk-cal__tag {
  color: rgba(255, 255, 255, 0.9);
}

.bk-cal__price {
  font-size: clamp(0.625rem, 21cqw, 0.75rem);
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  letter-spacing: -0.03em;
}

.bk-cal__day.is-selected .bk-cal__price {
  color: #0f172a;
}

@media (max-width: 480px) {
  .bk-cal__cell {
    min-height: 50px;
  }

  .bk-cal__price {
    font-size: clamp(0.6rem, 20cqw, 0.7rem);
  }

  .bk-cal__tag {
    font-size: 0.4375rem;
  }
}

/* Modal — e-mail do titular */
.bk-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.bk-lead-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.bk-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
}

.bk-lead-modal__panel {
  position: relative;
  width: min(100%, 400px);
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  transform: translateY(8px) scale(0.98);
  transition: transform 0.22s ease;
}

.bk-lead-modal.is-open .bk-lead-modal__panel {
  transform: translateY(0) scale(1);
}

.bk-lead-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.bk-lead-modal__desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.bk-lead-modal__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-lead-modal__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  background: #fafbfc;
  box-sizing: border-box;
}

.bk-lead-modal__input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.bk-lead-modal__phone-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) 1fr;
  gap: 0.5rem;
  align-items: stretch;
}

.bk-lead-modal__ddi {
  width: 100%;
  padding: 0.65rem 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8125rem;
  background: #fafbfc;
  color: #0f172a;
  cursor: pointer;
  box-sizing: border-box;
}

.bk-lead-modal__ddi:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.bk-lead-modal__phone {
  min-width: 0;
}

.bk-lead-modal__hint {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.35;
}

.bk-lead-modal__error {
  margin: 0.5rem 0 0;
}

.bk-lead-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.bk-lead-modal__file-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
}

.bk-lead-modal__file-num {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  color: #0f2847;
  line-height: 1.1;
}

.bk-btn--block {
  width: 100%;
  justify-content: center;
}

body.lead-modal-open {
  overflow: hidden;
}

/* Lead do titular (abandono de carrinho) — inline legado */
.bk-lead {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.bk-lead__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-lead__input {
  width: 100%;
  padding: 0.625rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  background: #fafbfc;
  box-sizing: border-box;
}

.bk-lead__input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.bk-lead__hint {
  margin: 0.4rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #94a3b8;
}

/* Passo Dados do voo — minimal */
.bk-step--voo .bk-step__desc--muted {
  margin-top: -0.35rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.bk-flight-origin {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 1rem 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.bk-flight-origin__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.bk-flight-origin__value {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  word-break: break-word;
}

.bk-flight-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bk-flight-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 420px) {
  .bk-flight-fields {
    grid-template-columns: 1fr;
  }
}

.bk-flight-field__label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
}

.bk-flight-select,
.bk-flight-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s;
}

.bk-flight-select {
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  cursor: pointer;
}

.bk-flight-select:focus,
.bk-flight-field__input:focus {
  outline: none;
  border-color: #0f172a;
}

.bk-muted-inline {
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

/* Companhias aéreas (legado) */
.bk-airlines {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.bk-airlines__title {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.bk-airlines__desc {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

/* Turnos */
.bk-turnos {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.bk-turnos__title {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.bk-turnos__desc {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.bk-turnos__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-turno {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.bk-turno:hover:not(.is-selected) {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.bk-turno.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
}

.bk-turno__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #e2e8f0;
  border-radius: 999px;
}

.bk-turno.is-selected .bk-turno__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.bk-turno__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bk-turno__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-turno.is-selected .bk-turno__label {
  font-weight: 700;
}

.bk-turno__rates {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #64748b;
}

/* Opções de compra (tipos de tarifa) */
.bk-tipos-tarifa {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-tipo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.bk-tipo:hover:not(.is-selected) {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.bk-tipo.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
}

.bk-tipo__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #e2e8f0;
  border-radius: 999px;
}

.bk-tipo.is-selected .bk-tipo__radio {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.bk-tipo__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bk-tipo__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-tipo.is-selected .bk-tipo__label {
  font-weight: 700;
}

.bk-tipo__meta {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #64748b;
}

.bk-cal__tipo {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: #64748b;
}

.bk-pax-panel__cap {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 500;
}

/* Tarifas por faixa */
.bk-tariff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.bk-tariff-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
}

.bk-tariff-chip em {
  font-style: normal;
  font-weight: 800;
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.bk-tariff-chip--fixa {
  background: color-mix(in srgb, var(--primary) 8%, #f8fafc);
  font-weight: 700;
  color: #0f172a;
}
