/* Checkout — cadastro de passageiros */
.ck-page {
  padding: 1.5rem 0 3rem;
  background: #f1f5f9;
  min-height: 60vh;
}

.ck-page__inner {
  max-width: 1080px;
}

.ck-header {
  margin-bottom: 1.5rem;
}

.ck-back {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.ck-back:hover {
  text-decoration: underline;
}

.ck-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.ck-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ck-subtitle {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.ck-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
  align-items: start;
}

.ck-main {
  min-width: 0;
}

.ck-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ck-progress__step {
  flex: 1;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  color: #94a3b8;
  background: #e2e8f0;
}

.ck-progress__step.is-active {
  color: #fff;
  background: var(--gradient-brand, var(--primary, #050d36));
}

.ck-pax-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 1rem 1.1rem 1.15rem;
  margin-bottom: 0.85rem;
}

.ck-pax-card--titular {
  border-color: color-mix(in srgb, var(--primary) 25%, #e8edf2);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--primary) 8%, transparent);
}

.ck-pax-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ck-pax-card__head-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.ck-pax-card__remove {
  flex-shrink: 0;
  padding: 0.35rem 0.55rem;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff;
  color: #b91c1c;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
}

.ck-pax-card__remove:hover {
  background: #fef2f2;
}

.ck-faixa-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ck-faixa-badge--ADT { color: #1e40af; background: #dbeafe; }
.ck-faixa-badge--CHD { color: #9a3412; background: #ffedd5; }
.ck-faixa-badge--INF { color: #6b21a8; background: #f3e8ff; }
.ck-faixa-badge--SNR { color: #166534; background: #dcfce7; }

.ck-alert--warn {
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.ck-alert--warn p {
  margin: 0;
}

.ck-alert--warn p + p {
  margin-top: 0.25rem;
}

.ck-pax-card__badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, #fff);
}

.ck-pax-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.ck-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ck-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.ck-field--full {
  grid-column: 1 / -1;
}

.ck-field__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}

.ck-field input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  background: #fafbfc;
  box-sizing: border-box;
}

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

.ck-field--phone {
  grid-column: 1 / -1;
}

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

.ck-phone-ddi {
  width: 100%;
  padding: 0.6rem 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;
}

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

.ck-phone-input {
  min-width: 0;
}

.ck-field__error {
  margin: 0;
  font-size: 0.6875rem;
  color: #b91c1c;
}

.ck-field__hint {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #94a3b8;
}

/* Seção de documento — nacionalidade + campo */
.ck-id-section {
  grid-column: 1 / -1;
  padding: 0.85rem 0.95rem 0.95rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ck-id-section.is-foreign {
  border-color: color-mix(in srgb, var(--primary) 22%, #e2e8f0);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 6%, transparent);
}

.ck-id-section__header {
  margin-bottom: 0.75rem;
}

.ck-id-section__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.ck-id-section__badge {
  flex-shrink: 0;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #dbeafe;
}

.ck-id-section__badge[hidden] {
  display: none !important;
}

.ck-id-section__title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.ck-id-section__subtitle {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  color: #64748b;
}

.ck-id-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.ck-id-type__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.ck-id-type__btn:hover:not(.is-active) {
  border-color: #cbd5e1;
  background: #fafbfc;
}

.ck-id-type__btn.is-active {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
}

.ck-id-type__btn:active {
  transform: scale(0.98);
}

.ck-id-type__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ck-id-type__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #64748b;
  background: #f1f5f9;
  transition: color 0.18s ease, background 0.18s ease;
}

.ck-id-type__btn.is-active .ck-id-type__icon {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, #fff);
}

.ck-id-type__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.ck-id-type__text strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.ck-id-type__text small {
  font-size: 0.625rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.ck-id-type__btn.is-active .ck-id-type__text small {
  color: color-mix(in srgb, var(--primary) 70%, #64748b);
}

.ck-id-fields {
  position: relative;
}

.ck-id-fields .ck-field--doc {
  animation: ck-id-fade-in 0.22s ease;
}

@keyframes ck-id-fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ck-field--doc[hidden] {
  display: none !important;
}

.ck-actions {
  margin-top: 1rem;
}

.ck-btn-submit {
  width: 100%;
  justify-content: center;
}

.ck-aside {
  position: sticky;
  top: 5.5rem;
}

.ck-summary {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.ck-summary__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0.95rem;
  border-bottom: 1px solid #eef2f6;
  background: #fff;
}

.ck-summary__head-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  flex-shrink: 0;
}

.ck-summary__head-copy {
  min-width: 0;
}

.ck-summary__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ck-summary__empresa {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}

.ck-summary__body {
  padding: 0.95rem 1.15rem 0.35rem;
}

.ck-summary__stats {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.ck-summary__count {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ck-summary__count-label {
  font-size: 0.72rem;
  color: #94a3b8;
}

.ck-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ck-summary-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.ck-summary-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.ck-summary-item__media {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.ck-summary-item__thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}

.ck-summary-item__qty {
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.ck-summary-item__content {
  min-width: 0;
}

.ck-summary-item__name {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.ck-summary-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ck-summary-item__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  font-size: 0.625rem;
  color: #64748b;
  line-height: 1.2;
}

.ck-summary-item__chip svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.ck-summary-item__unit {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.ck-summary-item__price {
  text-align: right;
  padding-top: 0.1rem;
}

.ck-summary-item__price strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.ck-summary__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.8125rem;
  color: #64748b;
}

.ck-summary__subtotal span:last-child {
  font-weight: 700;
  color: #334155;
}

.ck-summary__foot {
  padding: 0.95rem 1.15rem 1.05rem;
  background: #fff;
  border-top: 1px solid #eef2f6;
}

.ck-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.ck-summary__total strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.ck-summary__note {
  margin: 0.45rem 0 0;
  font-size: 0.6875rem;
  color: #94a3b8;
  line-height: 1.35;
}

.ck-summary__empty {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.ck-summary__file {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3730a3;
  background: #eef2ff;
}

/* Pagamento — resumo mobile */
@media (max-width: 900px) {
  .ck-summary--payment {
    margin-bottom: 0.25rem;
  }

  .ck-summary--payment .ck-summary__head {
    padding: 0.95rem 1rem 0.85rem;
  }

  .ck-summary--payment .ck-summary__body {
    padding: 0.85rem 1rem 0.25rem;
  }

  .ck-summary--payment .ck-summary__foot {
    padding: 0.85rem 1rem 0.95rem;
  }

  .ck-summary--payment .ck-summary-item {
    grid-template-columns: 48px 1fr auto;
    gap: 0.65rem;
    align-items: center;
  }

  .ck-summary--payment .ck-summary-item__media,
  .ck-summary--payment .ck-summary-item__thumb {
    width: 48px;
    height: 48px;
  }

  .ck-summary--payment .ck-summary-item__name {
    font-size: 0.875rem;
    margin-bottom: 0.3rem;
  }

  .ck-summary--payment .ck-summary-item__price strong {
    font-size: 0.875rem;
    color: #0f172a;
  }

  .ck-summary--payment .ck-summary__total strong {
    font-size: 1.125rem;
  }

  .ck-summary--payment .ck-summary-item__meta {
    gap: 0.28rem;
  }

  .ck-summary--payment .ck-summary-item__chip {
    font-size: 0.625rem;
    padding: 0.15rem 0.4rem;
  }
}

@media (max-width: 420px) {
  .ck-summary--payment .ck-summary-item {
    grid-template-columns: 44px 1fr auto;
  }

  .ck-summary--payment .ck-summary-item__media,
  .ck-summary--payment .ck-summary-item__thumb {
    width: 44px;
    height: 44px;
  }
}

/* legado — pagamento */
.ck-services {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ck-service {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.6rem;
  align-items: start;
}

.ck-service__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.ck-service__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.ck-service__body strong {
  font-size: 0.8125rem;
  color: #0f172a;
  line-height: 1.3;
}

.ck-service__body span {
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.35;
}

.ck-service__price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.ck-muted {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.ck-alert--global {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.ck-alert--global.bk-alert {
  color: #166534;
  background: #dcfce7;
}

/* Modal seleção de pax por serviço */
.ck-assign-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.ck-assign-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.ck-assign-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.ck-assign-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 460px);
  max-height: min(92vh, 640px);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s ease;
}

@media (min-width: 640px) {
  .ck-assign-modal {
    padding: 1.5rem;
  }

  .ck-assign-modal__panel {
    width: min(92vw, 620px);
    max-height: min(90vh, 680px);
  }

  .ck-assign-hero {
    height: 188px;
  }
}

@media (min-width: 900px) {
  .ck-assign-modal__panel {
    width: min(88vw, 820px);
    max-height: min(88vh, 720px);
    border-radius: 22px;
  }

  .ck-assign-hero {
    height: 200px;
  }

  .ck-assign-hero__title {
    font-size: 1.2rem;
  }

  .ck-assign-body {
    padding: 1.15rem 1.5rem 0.65rem;
  }

  .ck-assign-modal__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .ck-assign-modal__actions {
    padding: 1rem 1.5rem 1.2rem;
  }
}

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

.ck-assign-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.ck-assign-modal__close:hover {
  background: #fff;
}

.ck-assign-hero {
  position: relative;
  flex-shrink: 0;
  height: 168px;
  overflow: hidden;
  background: #0f2847;
}

.ck-assign-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ck-assign-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.35) 55%,
    rgba(15, 23, 42, 0.1) 100%
  );
}

.ck-assign-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem 1.1rem;
  color: #fff;
}

.ck-assign-hero__step {
  margin: 0 0 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.ck-assign-hero__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.ck-assign-hero__date {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.ck-assign-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.15rem 0.5rem;
  min-height: 0;
}

.ck-assign-lead {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.ck-assign-needs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.ck-assign-need {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  background: #f1f5f9;
  color: #334155;
}

.ck-assign-need strong {
  display: grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
}

.ck-assign-need em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.5625rem;
  color: #94a3b8;
}

.ck-assign-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ck-assign-pax {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid #e8edf2;
  border-radius: 14px;
  background: #fafbfc;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ck-assign-pax:hover:not(.is-selected) {
  border-color: #cbd5e1;
  background: #fff;
}

.ck-assign-pax.is-selected {
  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);
}

.ck-assign-pax__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ck-assign-pax__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, #fff);
}

.ck-assign-pax.is-selected .ck-assign-pax__avatar {
  color: #fff;
  background: var(--primary);
}

.ck-assign-pax__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ck-assign-pax__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.ck-assign-pax__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.ck-assign-pax__meta .ck-faixa-badge {
  font-size: 0.5rem;
  padding: 0.15rem 0.4rem;
}

.ck-assign-pax__tag {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.ck-assign-pax__tag--foreign {
  color: #1d4ed8;
  background: #dbeafe;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
}

.ck-assign-pax__cpf {
  font-size: 0.6875rem;
  color: #94a3b8;
}

.ck-assign-pax__check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  display: grid;
  place-items: center;
  color: transparent;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ck-assign-pax.is-selected .ck-assign-pax__check {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.ck-assign-modal__error {
  margin: 0.75rem 0 0;
}

/* Popup de erro na seleção de passageiros */
.ck-assign-alert {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: inherit;
}

.ck-assign-alert.is-open {
  pointer-events: auto;
  opacity: 1;
}

.ck-assign-alert__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  border-radius: inherit;
}

.ck-assign-alert__panel {
  position: relative;
  width: min(100%, 360px);
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #fecaca;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.ck-assign-alert.is-open .ck-assign-alert__panel {
  transform: scale(1);
}

.ck-assign-alert__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #b91c1c;
  background: #fee2e2;
}

.ck-assign-alert__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.ck-assign-alert__desc {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.ck-assign-alert__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.ck-assign-alert__list li {
  position: relative;
  padding: 0.5rem 0.65rem 0.5rem 1.5rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #991b1b;
  background: #fef2f2;
}

.ck-assign-alert__list li + li {
  margin-top: 0.35rem;
}

.ck-assign-alert__list li::before {
  content: "•";
  position: absolute;
  left: 0.55rem;
  font-weight: 700;
}

.ck-assign-alert__btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 900px) {
  .ck-assign-alert__panel {
    width: min(100%, 420px);
  }
}

.ck-assign-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.85rem 1.15rem 1.1rem;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}

.ck-assign-back {
  flex-shrink: 0;
  padding-left: 0.5rem;
  padding-right: 0.65rem;
  font-size: 0.8125rem;
}

.ck-assign-modal__actions-right {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

@media (max-width: 480px) {
  .ck-assign-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ck-assign-back {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .ck-assign-modal__actions-right {
    width: 100%;
    margin-left: 0;
  }

  .ck-assign-modal__actions-right .bk-btn {
    flex: 1;
    justify-content: center;
  }
}

body.is-checkout-page #hero,
body.is-checkout-page #sobre {
  display: none;
}

body.is-checkout-page main {
  padding-top: 0;
}

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

@media (max-width: 900px) {
  .ck-layout {
    grid-template-columns: 1fr;
  }

  .ck-aside {
    position: static;
    order: -1;
  }

  .ck-form-grid {
    grid-template-columns: 1fr;
  }

  .ck-field--full {
    grid-column: auto;
  }

  .ck-id-section {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .ck-id-type {
    grid-template-columns: 1fr;
  }

  .ck-id-type__btn {
    padding: 0.6rem 0.75rem;
  }
}
