.calendar {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: var(--space-4);
  background: var(--color-surface);
}

.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.calendar__month {
  font-size: 16px;
  font-weight: 700;
}

.calendar__arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 22px;
  border-radius: var(--radius-small);
  cursor: pointer;
}

.calendar__arrow:hover {
  background: rgba(255, 255, 255, 0.08);
}

.calendar__week,
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar__week {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}

.calendar__day {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.calendar__day.is-available {
  color: #fff;
  background: var(--color-success);
  font-weight: 600;
}

.calendar__day.is-selected {
  background: var(--color-primary);
  color: #fff;
}

.calendar__day:disabled {
  opacity: 0.35;
}

.schedule-label {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--color-text);
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.slot {
  min-height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-surface);
  font-size: 14px;
}

.slot.is-selected {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

/* ── TelaGo Express ─────────────────────── */

.express-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
}

.express-card__icon {
  align-self: stretch;
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

.express-bolt {
  width: 32px;
  height: 32px;
}

.express-card__title {
  font-size: 15px;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.express-card__desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.express-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.express-card__badge {
  font-size: 10px;
  color: var(--color-success);
  text-align: right;
  line-height: 1.3;
}

/* ── Toggle switch ──────────────────────── */

.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle__track {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 999px;
  transition: background var(--transition-fast);
}

.toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition-fast);
}

.toggle input:checked + .toggle__track {
  background: var(--color-primary);
}

.toggle input:checked + .toggle__track::after {
  transform: translateX(20px);
}

.pix-box {
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-large);
  padding: var(--space-4);
  text-align: center;
}

.pix-box__timer {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.qr {
  width: 196px;
  height: 196px;
  margin: 0 auto var(--space-4);
  background:
    repeating-conic-gradient(#111 0% 25%, #fc5202 0% 50%) 0 0 / 16px 16px;
  border-radius: 8px;
}

.pix-copy {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 12px;
  background: var(--color-background);
  border-radius: var(--radius-small);
  overflow: hidden;
}

.pix-copy code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.timeline {
  display: grid;
  gap: var(--space-4);
}

.timeline__item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: var(--space-3);
}

.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-border);
  margin-top: 4px;
}

.timeline__item.is-done .timeline__dot,
.timeline__item.is-current .timeline__dot {
  background: var(--color-primary);
}

.map-placeholder {
  height: 180px;
  border-radius: var(--radius-large);
  border: 1px dashed var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  background: var(--color-surface);
  margin-bottom: var(--space-5);
}

.stars {
  display: flex;
  gap: 8px;
}

.stars button {
  font-size: 28px;
  color: var(--color-border);
  line-height: 1;
}

.stars button.is-on {
  color: var(--color-primary);
}

.offer-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: var(--space-5);
  background: var(--color-surface);
  text-align: center;
}

.offer-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: var(--space-3) 0;
}

.success-hero {
  text-align: center;
  padding: var(--space-6) 0 var(--space-5);
}

.success-hero h1 {
  color: var(--color-success);
  font-size: 1.5rem;
}

.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.screen-index a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.screen-index a span {
  color: var(--color-text-muted);
  font-size: 13px;
}
