.booking {
  min-height: calc(100vh - 72px);
  padding: 64px 0 96px;
}

.booking-container { max-width: 720px; }

.booking-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 10px;
}

.booking-sub {
  color: var(--ink-soft);
  margin: 0 0 36px;
}

/* Steps indicator */

.booking-steps {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0 0 36px;
}

.booking-steps li {
  flex: 1;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 3px solid var(--line);
}

.booking-steps li.active {
  color: var(--accent-ink);
  border-top-color: var(--accent);
}

.booking-step { animation: step-in 0.3s ease; }

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

@media (prefers-reduced-motion: reduce) {
  .booking-step { animation: none; }
}

/* Serviços */

.servico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.servico-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}

.servico-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.5);
}

.servico-card h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.servico-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.servico-card .preco {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent-ink);
}

/* Dias */

.dias-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.dia-pill {
  flex: none;
  min-width: 74px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--card);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dia-pill .dia-semana {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.dia-pill .dia-num {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
}

.dia-pill.selected {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
}

.dia-pill.selected .dia-semana,
.dia-pill.selected .dia-num { color: var(--paper); }

/* Slots */

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.slot {
  min-height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.slot:hover { border-color: var(--accent); }

.slot.selected {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: var(--paper);
}

/* Formulário */

.resumo {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.resumo strong { color: var(--accent-ink); }

#form-dados label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 18px 0 6px;
}

#form-dados .opcional {
  text-transform: none;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
}

#form-dados input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  font: inherit;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--ink);
}

#form-dados input:focus {
  outline: none;
  border-color: var(--accent-ink);
}

.btn-wide {
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
}

.btn-link {
  display: inline-block;
  margin-top: 26px;
  background: none;
  border: none;
  font: inherit;
  color: var(--accent-ink);
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-status {
  color: var(--accent-ink);
  min-height: 1.4em;
  margin: 16px 0 0;
}

.booking-status.erro { color: #a4262c; }

/* Sucesso */

.booking-sucesso { text-align: center; padding-top: 24px; }

.sucesso-icone { color: var(--accent-ink); display: flex; justify-content: center; margin-bottom: 18px; }

.booking-sucesso h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.booking-sucesso p { color: var(--ink-soft); margin: 0 0 10px; }

.sucesso-endereco { font-size: 0.9rem; margin-bottom: 28px !important; }
