@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #050816;
  --bg-2: #091227;
  --surface: rgba(10, 18, 35, 0.86);
  --surface-strong: rgba(8, 14, 28, 0.96);
  --surface-soft: rgba(15, 24, 46, 0.72);
  --card-shine: rgba(114, 182, 255, 0.12);
  --line: rgba(134, 185, 255, 0.22);
  --line-strong: rgba(111, 198, 255, 0.42);
  --text: #f6f9ff;
  --text-soft: #b7c4de;
  --text-faint: #7f90af;
  --primary: #4da3ff;
  --primary-strong: #2b7dff;
  --primary-glow: #74d8ff;
  --success: #34d7a1;
  --danger: #ff6b8f;
  --warning: #ffd166;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --glow: 0 0 0 1px rgba(116, 216, 255, 0.12), 0 0 28px rgba(77, 163, 255, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --font: "Manrope", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color-scheme: dark;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87, 159, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(116, 216, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(32, 74, 160, 0.22), transparent 25%),
    linear-gradient(180deg, #04070f 0%, #07101f 42%, #03050b 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

body::after {
  background: linear-gradient(180deg, rgba(7, 14, 26, 0), rgba(7, 14, 26, 0.54));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.dashboard-hero {
  padding: 52px 0 30px;
  position: relative;
}

.hero-content,
.dashboard-hero-content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.7fr 1fr;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(116, 216, 255, 0.24);
  background: rgba(77, 163, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 24px rgba(77, 163, 255, 0.1);
  color: #d8ecff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 12ch;
  margin-top: 16px;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.08rem;
}

.hero-text,
.muted {
  color: var(--text-soft);
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #04101f;
  background: linear-gradient(135deg, #ffffff 0%, #7ee0ff 18%, #4da3ff 55%, #83b8ff 100%);
  box-shadow: 0 12px 30px rgba(77, 163, 255, 0.28), 0 0 24px rgba(116, 216, 255, 0.2);
}

.button.primary:hover {
  box-shadow: 0 18px 34px rgba(77, 163, 255, 0.34), 0 0 32px rgba(116, 216, 255, 0.25);
}

.button.secondary {
  color: #eff6ff;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(133, 184, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.button.secondary:hover {
  border-color: rgba(116, 216, 255, 0.5);
  box-shadow: 0 0 26px rgba(77, 163, 255, 0.14);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(133, 184, 255, 0.18);
  color: var(--text-soft);
}

.hero-card,
.panel,
.subpanel,
.info-card,
.slot-button,
.list-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(5, 10, 21, 0.86), rgba(10, 18, 35, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.hero-card::before,
.panel::before,
.subpanel::before,
.info-card::before,
.list-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(116, 216, 255, 0.16), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card,
.panel,
.subpanel,
.info-card,
.list-card {
  border-radius: var(--radius);
}

.hero-card {
  padding: 28px;
  box-shadow: var(--shadow), var(--glow);
}

.hero-card h2,
.panel h2,
.subpanel h3 {
  color: #f7fbff;
}

strong {
  color: #f3f8ff;
}

.feature-list,
.hero-card ul,
.info-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.feature-list li,
.hero-card li,
.info-card li {
  padding-left: 4px;
}

.page-grid,
.dashboard-layout {
  display: grid;
  gap: 22px;
  padding-bottom: 52px;
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-column {
  padding-bottom: 52px;
}

.portal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-hero {
  padding-bottom: 18px;
}

.portal-hero-content {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: center;
}

.portal-hero-copy {
  max-width: 720px;
}

.portal-hero-copy h1 {
  max-width: 8.5ch;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  letter-spacing: -0.045em;
}

.portal-hero .hero-text {
  max-width: 56ch;
  margin-top: 18px;
}

.portal-mini-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.portal-mini-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(134, 185, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9fb;
  font-size: 0.9rem;
  font-weight: 600;
}

.portal-preview-card,
.portal-action-card,
.portal-flow-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(6, 11, 22, 0.9), rgba(10, 18, 35, 0.94));
  border-color: rgba(134, 185, 255, 0.18);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.portal-preview-card::before,
.portal-action-card::before,
.portal-flow-panel::before {
  width: 120px;
  height: 120px;
  opacity: 0.42;
}

.portal-preview-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.portal-preview-card h2 {
  font-size: 1.85rem;
}

.portal-preview-card .muted {
  margin: 0;
  line-height: 1.65;
}

.portal-preview-list {
  display: grid;
  gap: 12px;
}

.portal-preview-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.portal-preview-item span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.portal-preview-item code {
  overflow-wrap: anywhere;
  color: #e7f5ff;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92rem;
}

.portal-shell {
  display: grid;
  gap: 18px;
  padding-bottom: 52px;
}

.portal-actions-grid,
.portal-flow-grid {
  display: grid;
  gap: 18px;
}

.portal-actions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-action-card {
  display: grid;
  gap: 20px;
}

.portal-action-card .section-heading,
.portal-flow-panel .section-heading {
  margin-bottom: 0;
}

.portal-action-card .hero-actions {
  margin-top: 0;
}

.portal-link-stack {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background: rgba(255, 255, 255, 0.022);
}

.portal-link-stack span {
  color: var(--text-soft);
  line-height: 1.6;
}

.portal-link-stack strong {
  color: #f3f8ff;
}

.portal-flow-panel {
  display: grid;
  gap: 20px;
}

.portal-flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-flow-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background: rgba(255, 255, 255, 0.024);
}

.portal-flow-number {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.1);
  color: #8fe8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portal-flow-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.panel {
  padding: 28px;
}

.panel-wide {
  grid-column: 1 / -1;
}

.section-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.section-step {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  border: 1px solid rgba(116, 216, 255, 0.28);
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.24), rgba(77, 163, 255, 0.08));
  color: #eff7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.16);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: #dbe8fb;
  font-size: 0.96rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(138, 174, 232, 0.2);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(6, 11, 23, 0.96);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

input::placeholder,
textarea::placeholder {
  color: #7485a3;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(116, 216, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.16), 0 0 28px rgba(77, 163, 255, 0.14);
}

.field-span {
  grid-column: 1 / -1;
}

.form-message {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
}

.form-message.success {
  background: rgba(52, 215, 161, 0.08);
  border-color: rgba(52, 215, 161, 0.22);
  color: #88ffd0;
}

.form-message.error {
  background: rgba(255, 107, 143, 0.08);
  border-color: rgba(255, 107, 143, 0.22);
  color: #ff9eb5;
}

.info-card,
.subpanel {
  padding: 22px;
}

.slots-panel {
  margin: 24px 0;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(116, 216, 255, 0.05), rgba(77, 163, 255, 0.02)),
    rgba(8, 13, 27, 0.96);
  border: 1px solid rgba(116, 216, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 30px rgba(77, 163, 255, 0.08);
}

.slots-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(116, 216, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(8, 15, 30, 0.94);
  color: #e8f3ff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slot-button:hover {
  border-color: rgba(116, 216, 255, 0.4);
  box-shadow: 0 0 22px rgba(77, 163, 255, 0.12);
}

.slot-button.active {
  color: #05111f;
  background: linear-gradient(135deg, #ecfbff 0%, #7be2ff 28%, #4da3ff 100%);
  border-color: rgba(126, 226, 255, 0.75);
  box-shadow: 0 0 24px rgba(116, 216, 255, 0.28);
}

.empty-state {
  margin: 0;
  color: var(--text-faint);
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.portal-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.share-space-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.share-space-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(134, 185, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(8, 15, 30, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.share-space-card--highlight {
  border-color: rgba(116, 216, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(77, 163, 255, 0.12);
}

.share-space-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.share-space-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(116, 216, 255, 0.22);
  background: rgba(77, 163, 255, 0.08);
  color: #d8efff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.share-space-url {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: #8fe8ff;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92rem;
  line-height: 1.5;
}

.share-space-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list-card {
  padding: 22px;
}

.list-card h3 {
  margin-bottom: 8px;
}

.card-meta {
  display: grid;
  gap: 7px;
  color: var(--text-soft);
}

.card-meta strong {
  color: #eef7ff;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-agendado {
  background: rgba(77, 163, 255, 0.14);
  color: #90d2ff;
  border: 1px solid rgba(77, 163, 255, 0.2);
}

.status-cancelado {
  background: rgba(255, 107, 143, 0.12);
  color: #ff92ae;
  border: 1px solid rgba(255, 107, 143, 0.2);
}

.status-concluido {
  background: rgba(52, 215, 161, 0.12);
  color: #78ffd0;
  border: 1px solid rgba(52, 215, 161, 0.2);
}

.availability-box {
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(77, 163, 255, 0.05), rgba(77, 163, 255, 0.015)),
    rgba(8, 15, 30, 0.92);
  border: 1px solid rgba(116, 216, 255, 0.15);
}

.availability-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.availability-grid label {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(134, 185, 255, 0.12);
}

.align-end {
  align-items: end;
}

.top-gap {
  margin-top: 14px;
}

.booking-page {
  background:
    radial-gradient(circle at top left, rgba(77, 163, 255, 0.14), transparent 22%),
    radial-gradient(circle at 85% 8%, rgba(76, 245, 255, 0.1), transparent 14%),
    linear-gradient(180deg, #040811 0%, #07111f 48%, #02050b 100%);
}

.booking-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 20, 0.72);
  border-bottom: 1px solid rgba(134, 185, 255, 0.12);
}

.booking-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}

.booking-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-brand h1 {
  max-width: none;
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.booking-brand__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(116, 216, 255, 0.32);
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.18);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.82fr);
  gap: 22px;
  padding-top: 26px;
  padding-bottom: 52px;
}

.booking-main {
  display: grid;
  gap: 18px;
}

.booking-sidebar {
  min-width: 0;
}

.booking-hero-card,
.booking-step-card,
.booking-summary-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(134, 185, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(7, 13, 26, 0.94);
  box-shadow: var(--shadow);
}

.booking-hero-card,
.booking-step-card {
  padding: 22px;
}

.booking-summary-card {
  position: sticky;
  top: 98px;
  padding: 22px;
  box-shadow: var(--shadow), var(--glow);
}

.booking-step-card__header,
.booking-hero-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.booking-hero-card__badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(116, 216, 255, 0.22);
  color: #cfeaff;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: capitalize;
}

.booking-hero-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(134, 185, 255, 0.1);
  display: grid;
  gap: 8px;
}

.booking-metric span {
  color: var(--text-faint);
  font-size: 0.86rem;
}

.booking-metric strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.option-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-card {
  position: relative;
  text-align: left;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(8, 14, 29, 0.96);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(116, 216, 255, 0.3);
  box-shadow: 0 0 22px rgba(77, 163, 255, 0.08);
}

.option-card.active {
  border-color: rgba(116, 216, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(116, 216, 255, 0.12), rgba(77, 163, 255, 0.05)),
    rgba(8, 16, 31, 0.98);
  box-shadow: 0 0 28px rgba(77, 163, 255, 0.12);
}

.option-card__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f4f9ff;
}

.option-card__meta,
.option-card__price {
  display: block;
  margin-top: 8px;
}

.option-card__meta {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.option-card__price {
  color: #8de7ff;
  font-weight: 700;
  font-size: 0.96rem;
}

.booking-date-row {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 280px) 1fr;
  align-items: end;
}

.booking-date-field {
  margin: 0;
}

.booking-quick-dates {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.booking-quick-dates__label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-quick-date-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-quick-date {
  min-height: 72px;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(8, 14, 29, 0.95);
  color: var(--text);
  display: grid;
  gap: 6px;
  justify-items: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.booking-quick-date span {
  color: var(--text-faint);
  font-size: 0.82rem;
  text-transform: capitalize;
}

.booking-quick-date strong {
  font-size: 1rem;
}

.booking-quick-date:hover {
  transform: translateY(-2px);
  border-color: rgba(116, 216, 255, 0.3);
  box-shadow: 0 0 22px rgba(77, 163, 255, 0.08);
}

.booking-quick-date.active {
  border-color: rgba(116, 216, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(116, 216, 255, 0.12), rgba(77, 163, 255, 0.05)),
    rgba(8, 16, 31, 0.98);
  box-shadow: 0 0 28px rgba(77, 163, 255, 0.12);
}

.booking-inline-hint {
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(134, 185, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  display: flex;
  align-items: center;
}

.booking-slots-panel {
  margin-bottom: 0;
}

.booking-form-grid {
  margin-top: 6px;
}

.booking-submit-wrap {
  display: flex;
  justify-content: flex-start;
}

.booking-submit {
  min-width: min(100%, 320px);
}

.booking-summary-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(134, 185, 255, 0.08);
}

.booking-summary-item span {
  color: var(--text-faint);
  font-size: 0.9rem;
}

.booking-summary-item strong {
  text-align: right;
  font-size: 0.95rem;
}

.booking-summary-note {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(77, 163, 255, 0.08);
  border: 1px solid rgba(116, 216, 255, 0.12);
}

.booking-summary-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero-content,
  .dashboard-hero-content,
  .page-grid,
  .dashboard-layout,
  .portal-grid,
  .portal-cards,
  .portal-actions-grid,
  .portal-flow-grid,
  .share-space-grid,
  .form-grid-2,
  .form-grid-3,
  .form-grid-4,
  .booking-layout,
  .booking-hero-metrics,
  .option-card-grid,
  .booking-date-row,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .slots-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-topbar__inner,
  .booking-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-summary-card {
    position: static;
  }

  .portal-hero-copy h1 {
    max-width: 10ch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1000px);
  }

  .hero,
  .dashboard-hero {
    padding-top: 28px;
  }

  .panel,
  .hero-card,
  .subpanel,
  .info-card,
  .slots-panel,
  .booking-hero-card,
  .booking-step-card,
  .booking-summary-card,
  .portal-preview-card,
  .portal-action-card,
  .portal-flow-panel {
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .portal-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    max-width: none;
  }

  .portal-mini-points span {
    width: 100%;
    justify-content: center;
  }

  .portal-link-stack,
  .portal-flow-card,
  .portal-preview-item {
    padding: 14px;
  }

  .booking-quick-date-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-topbar__inner {
    padding: 14px 0;
  }

  .booking-brand__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .booking-submit-wrap {
    position: sticky;
    bottom: 10px;
    padding-top: 6px;
    background: linear-gradient(180deg, rgba(4, 8, 17, 0), rgba(4, 8, 17, 0.9) 34%);
  }

  .booking-submit {
    width: 100%;
    min-width: 0;
  }
}

body.booking-page {
  font-family: "Plus Jakarta Sans", var(--font);
  background:
    radial-gradient(circle at 12% 8%, rgba(108, 189, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(102, 224, 255, 0.14), transparent 16%),
    radial-gradient(circle at 50% 85%, rgba(50, 108, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf4ff 28%, #f4f8ff 52%, #fbfdff 100%);
  color: #101828;
}

body.booking-page::before,
body.booking-page::after {
  opacity: 0;
}

.booking-page .eyebrow {
  color: #19518b;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(97, 146, 255, 0.2);
  box-shadow: 0 16px 34px rgba(33, 82, 166, 0.08);
}

.booking-page .muted,
.booking-page .hero-text {
  color: #5c6b85;
}

.booking-page .button.secondary,
.booking-page .button.ghost {
  color: #1d3557;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(155, 182, 233, 0.44);
  box-shadow: 0 12px 26px rgba(23, 54, 102, 0.08);
}

.booking-page .button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d1628 0%, #12315d 44%, #2d7cff 100%);
  box-shadow: 0 16px 34px rgba(45, 124, 255, 0.28);
}

.booking-page .button.primary:hover {
  box-shadow: 0 20px 44px rgba(45, 124, 255, 0.34);
}

.booking-topbar--premium {
  background: rgba(250, 252, 255, 0.76);
  border-bottom: 1px solid rgba(177, 199, 235, 0.34);
  backdrop-filter: blur(18px);
}

.booking-brand--premium h1 {
  color: #081120;
  letter-spacing: -0.05em;
}

.booking-shell {
  display: grid;
  gap: 22px;
  padding: 28px 0 118px;
}

.booking-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.booking-showcase-card,
.booking-progress-panel,
.booking-stage-card,
.booking-summary-card--premium,
.booking-success-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(187, 204, 234, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.9)),
    #ffffff;
  box-shadow:
    0 20px 45px rgba(25, 52, 93, 0.08),
    0 6px 16px rgba(25, 52, 93, 0.04);
}

.booking-showcase-card {
  padding: 28px;
}

.booking-showcase-card--primary {
  background:
    linear-gradient(135deg, rgba(13, 22, 40, 0.96), rgba(18, 49, 93, 0.92) 48%, rgba(45, 124, 255, 0.88)),
    #0d1628;
  color: #f8fbff;
  border-color: rgba(37, 87, 171, 0.22);
  box-shadow: 0 28px 54px rgba(13, 22, 40, 0.24);
}

.booking-showcase-card--primary .muted,
.booking-showcase-card--primary strong,
.booking-showcase-card--primary span,
.booking-showcase-card--primary h2 {
  color: inherit;
}

.booking-showcase-card--trust {
  display: grid;
  gap: 18px;
  align-content: space-between;
}

.booking-showcase-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-trust-list li {
  position: relative;
  padding-left: 18px;
  color: #4f6483;
  line-height: 1.6;
}

.booking-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d7cff, #7ad8ff);
}

.booking-company-card__content,
.booking-company-stats {
  display: grid;
  gap: 18px;
}

.booking-company-card__content {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.booking-company-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.booking-company-card__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
}

.booking-company-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-company-stat {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-company-stat span {
  font-size: 0.83rem;
  opacity: 0.82;
}

.booking-flow-shell {
  display: grid;
  gap: 18px;
}

.booking-progress-panel {
  padding: 22px;
}

.booking-progress-panel__header {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
}

.booking-progress-panel__header h2 {
  color: #081120;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.booking-progress-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(185, 200, 224, 0.4);
  overflow: hidden;
}

.booking-progress-meter__fill {
  display: block;
  height: 100%;
  width: 6%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0d1628 0%, #1b5fd1 58%, #74d8ff 100%);
  transition: width 0.32s ease;
}

.booking-progress-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px;
}

.booking-progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(192, 206, 229, 0.75);
  background: rgba(249, 251, 255, 0.88);
  color: #2c4262;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.booking-progress-step:hover:enabled {
  transform: translateY(-2px);
  border-color: rgba(45, 124, 255, 0.32);
  box-shadow: 0 16px 30px rgba(45, 124, 255, 0.12);
}

.booking-progress-step:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.booking-progress-step__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef3fb;
  border: 1px solid rgba(170, 191, 228, 0.7);
  font-weight: 800;
}

.booking-progress-step__copy {
  display: grid;
  gap: 4px;
}

.booking-progress-step__copy strong {
  color: #10213c;
  font-size: 0.92rem;
}

.booking-progress-step__copy small {
  color: #70809b;
  font-size: 0.78rem;
}

.booking-progress-step.is-current,
.booking-progress-step.is-complete {
  border-color: rgba(45, 124, 255, 0.3);
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.98), rgba(245, 249, 255, 0.94));
  box-shadow: 0 18px 34px rgba(45, 124, 255, 0.12);
}

.booking-progress-step.is-current .booking-progress-step__number,
.booking-progress-step.is-complete .booking-progress-step__number {
  background: linear-gradient(135deg, #0d1628 0%, #2268de 76%);
  color: #ffffff;
  border-color: transparent;
}

.booking-workspace {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: start;
}

.booking-stage-card {
  min-width: 0;
}

.booking-stage-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(187, 204, 234, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92)),
    #ffffff;
  box-shadow:
    0 20px 45px rgba(25, 52, 93, 0.08),
    0 6px 16px rgba(25, 52, 93, 0.04);
}

.booking-screen {
  display: none;
  gap: 22px;
  padding: 28px;
  animation: bookingStepIn 0.35s ease;
}

.booking-screen.is-active {
  display: grid;
}

.booking-screen__header {
  display: grid;
  gap: 10px;
}

.booking-screen__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  color: #2152a6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-screen__header h2 {
  color: #081120;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
}

.booking-choice-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-page .option-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(189, 205, 230, 0.74);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 14px 30px rgba(30, 58, 99, 0.06);
  color: #10213c;
}

.booking-page .option-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 124, 255, 0.28);
  box-shadow: 0 22px 40px rgba(45, 124, 255, 0.12);
}

.booking-page .option-card.active {
  border-color: rgba(45, 124, 255, 0.38);
  background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%);
  box-shadow: 0 22px 40px rgba(45, 124, 255, 0.16);
}

.option-card__status {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(39, 174, 96, 0.1);
  color: #167445;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.option-card__title {
  color: #091628;
  font-size: 1.08rem;
}

.booking-page .option-card__meta {
  margin-top: 0;
  color: #395172;
}

.option-card__description {
  color: #6b7d99;
  line-height: 1.65;
  font-size: 0.92rem;
}

.option-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.booking-page .option-card__price {
  color: #0d1628;
  font-size: 1rem;
}

.option-card__action {
  color: #2268de;
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-date-layout,
.booking-confirmation-layout {
  display: grid;
  gap: 18px;
}

.booking-date-layout {
  grid-template-columns: minmax(0, 280px) 1fr;
  align-items: end;
}

.booking-date-field--premium,
.booking-selection-hint,
.booking-availability-card,
.booking-review-card {
  border-radius: 24px;
  border: 1px solid rgba(192, 206, 229, 0.76);
  background: #f8fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-date-field--premium {
  padding: 16px;
}

.booking-selection-hint {
  min-height: 68px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  color: #385170;
}

.booking-quick-dates--premium {
  margin-top: 0;
}

.booking-quick-date-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-page .booking-quick-date {
  min-height: 96px;
  gap: 8px;
  border-radius: 22px;
  border: 1px solid rgba(192, 206, 229, 0.8);
  background: #ffffff;
  color: #0f1c2f;
  box-shadow: 0 12px 24px rgba(30, 58, 99, 0.05);
}

.booking-page .booking-quick-date span,
.booking-page .booking-quick-date small {
  color: #667a97;
}

.booking-page .booking-quick-date.active {
  border-color: rgba(45, 124, 255, 0.34);
  background: linear-gradient(180deg, #f2f7ff 0%, #ebf3ff 100%);
  box-shadow: 0 20px 36px rgba(45, 124, 255, 0.12);
}

.booking-quick-date.is-unavailable {
  opacity: 0.48;
  background: #f4f6fa;
  box-shadow: none;
  cursor: not-allowed;
}

.booking-availability-card,
.booking-review-card {
  padding: 22px;
}

.booking-availability-card__header,
.booking-review-card__header {
  margin-bottom: 18px;
}

.booking-availability-badge,
.booking-review-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  color: #2152a6;
  font-size: 0.8rem;
  font-weight: 700;
}

.slot-grid--premium {
  gap: 12px;
}

.booking-page .slot-button--premium {
  display: grid;
  gap: 4px;
  justify-items: start;
  min-width: 118px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(192, 206, 229, 0.8);
  background: #ffffff;
  color: #10213c;
  box-shadow: 0 12px 24px rgba(30, 58, 99, 0.06);
}

.slot-button__time {
  font-size: 1.02rem;
  font-weight: 700;
}

.slot-button__meta {
  color: #6c7f9b;
  font-size: 0.84rem;
}

.booking-page .slot-button--premium.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0d1628 0%, #2152a6 48%, #2d7cff 100%);
  border-color: transparent;
  box-shadow: 0 20px 38px rgba(45, 124, 255, 0.28);
}

.booking-empty-state {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background: #f5f8fd;
  border: 1px dashed rgba(166, 187, 221, 0.9);
}

.booking-empty-state strong {
  color: #10213c;
}

.booking-empty-state p {
  margin: 0;
  color: #617491;
  line-height: 1.6;
}

.booking-confirmation-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.booking-form-grid--premium {
  gap: 14px;
}

.booking-page input,
.booking-page select,
.booking-page textarea {
  color: #10213c;
  background: #ffffff;
  border-color: rgba(191, 205, 228, 0.92);
  box-shadow: none;
}

.booking-page input::placeholder,
.booking-page textarea::placeholder {
  color: #8c9ab1;
}

.booking-sidebar--premium .booking-summary-card--premium {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.booking-page .booking-summary-item {
  background: #f9fbff;
  border-color: rgba(201, 214, 235, 0.9);
}

.booking-summary-note--premium {
  background: linear-gradient(180deg, #f5f9ff, #edf4ff);
  border-color: rgba(177, 197, 232, 0.88);
}

.booking-summary-note--premium p {
  color: #405777;
}

.booking-success-card {
  display: grid;
  gap: 20px;
  padding: 34px;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.booking-success-card__label {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39, 174, 96, 0.12);
  color: #167445;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-success-card h2 {
  color: #081120;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.05em;
}

.booking-success-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-success-summary__item {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(193, 208, 231, 0.88);
}

.booking-success-summary__item span {
  color: #667a97;
  font-size: 0.86rem;
}

.booking-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-mobile-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(189, 205, 230, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 42px rgba(18, 38, 71, 0.16);
  backdrop-filter: blur(18px);
}

.booking-mobile-bar__copy {
  display: grid;
  gap: 4px;
}

.booking-mobile-bar__copy span {
  color: #6c7f9b;
  font-size: 0.82rem;
}

.booking-mobile-bar__copy strong {
  color: #0f1c2f;
}

.booking-mobile-bar__actions {
  display: flex;
  gap: 10px;
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .booking-showcase,
  .booking-workspace,
  .booking-progress-panel__header,
  .booking-choice-grid,
  .booking-company-card__content,
  .booking-company-stats,
  .booking-date-layout,
  .booking-confirmation-layout,
  .booking-success-summary {
    grid-template-columns: 1fr;
  }

  .booking-progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-sidebar--premium {
    display: none;
  }
}

@media (max-width: 640px) {
  .booking-shell {
    padding-bottom: 136px;
  }

  .booking-showcase-card,
  .booking-progress-panel,
  .booking-screen,
  .booking-success-card {
    padding: 20px;
    border-radius: 24px;
  }

  .booking-page .button.secondary,
  .booking-page .button.ghost,
  .booking-page .button.primary {
    width: auto;
  }

  .booking-progress-steps,
  .booking-choice-grid,
  .booking-quick-date-list,
  .booking-success-summary {
    grid-template-columns: 1fr;
  }

  .booking-company-card__trust,
  .booking-success-actions {
    justify-content: stretch;
  }

  .booking-success-actions .button {
    width: 100%;
  }

  .booking-mobile-bar__actions {
    display: grid;
    grid-template-columns: 104px 1fr;
  }
}

body.portal-page,
body.create-space-page,
body.tenant-login-page,
body.dashboard-body--premium {
  font-family: "Plus Jakarta Sans", var(--font);
  background:
    radial-gradient(circle at 12% 8%, rgba(108, 189, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(102, 224, 255, 0.14), transparent 16%),
    radial-gradient(circle at 50% 85%, rgba(50, 108, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf4ff 28%, #f4f8ff 52%, #fbfdff 100%);
  color: #101828;
}

body.portal-page::before,
body.portal-page::after,
body.create-space-page::before,
body.create-space-page::after,
body.tenant-login-page::before,
body.tenant-login-page::after,
body.dashboard-body--premium::before,
body.dashboard-body--premium::after {
  opacity: 0;
}

.portal-page .eyebrow,
.create-space-page .eyebrow,
.tenant-login-page .eyebrow,
.dashboard-body--premium .eyebrow {
  color: #19518b;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(97, 146, 255, 0.2);
  box-shadow: 0 16px 34px rgba(33, 82, 166, 0.08);
}

.portal-page .hero-text,
.portal-page .muted,
.create-space-page .hero-text,
.create-space-page .muted,
.tenant-login-page .hero-text,
.tenant-login-page .muted,
.dashboard-body--premium .hero-text,
.dashboard-body--premium .muted {
  color: #5c6b85;
}

.portal-page .button.secondary,
.portal-page .button.ghost,
.create-space-page .button.secondary,
.create-space-page .button.ghost,
.tenant-login-page .button.secondary,
.tenant-login-page .button.ghost,
.dashboard-body--premium .button.secondary,
.dashboard-body--premium .button.ghost {
  color: #1d3557;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(155, 182, 233, 0.44);
  box-shadow: 0 12px 26px rgba(23, 54, 102, 0.08);
}

.portal-page .button.primary,
.create-space-page .button.primary,
.tenant-login-page .button.primary,
.dashboard-body--premium .button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d1628 0%, #12315d 44%, #2d7cff 100%);
  box-shadow: 0 16px 34px rgba(45, 124, 255, 0.28);
}

.portal-page .button.primary:hover,
.create-space-page .button.primary:hover,
.tenant-login-page .button.primary:hover,
.dashboard-body--premium .button.primary:hover {
  box-shadow: 0 20px 44px rgba(45, 124, 255, 0.34);
}

.portal-page input,
.portal-page select,
.portal-page textarea,
.create-space-page input,
.create-space-page select,
.create-space-page textarea,
.tenant-login-page input,
.tenant-login-page select,
.tenant-login-page textarea,
.dashboard-body--premium input,
.dashboard-body--premium select,
.dashboard-body--premium textarea {
  color: #10213c;
  background: #ffffff;
  border-color: rgba(191, 205, 228, 0.92);
  box-shadow: none;
}

.portal-page input::placeholder,
.portal-page textarea::placeholder,
.create-space-page input::placeholder,
.create-space-page textarea::placeholder,
.tenant-login-page input::placeholder,
.tenant-login-page textarea::placeholder,
.dashboard-body--premium input::placeholder,
.dashboard-body--premium textarea::placeholder {
  color: #8c9ab1;
}

.portal-page label,
.create-space-page label,
.tenant-login-page label,
.dashboard-body--premium label {
  color: #25364f;
}

.saas-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 252, 255, 0.78);
  border-bottom: 1px solid rgba(177, 199, 235, 0.34);
}

.saas-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}

.saas-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.saas-brand strong {
  display: block;
  margin-top: 8px;
  color: #081120;
  font-size: 1.1rem;
}

.saas-brand__logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 28px rgba(20, 48, 93, 0.12);
}

.saas-shell {
  display: grid;
  gap: 22px;
  padding: 30px 0 56px;
}

.saas-hero {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  align-items: stretch;
}

.saas-hero--compact {
  align-items: center;
}

.saas-hero__copy,
.saas-preview-card,
.saas-card,
.dashboard-hero-card,
.dashboard-link-card,
.dashboard-stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(187, 204, 234, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.9)),
    #ffffff;
  box-shadow:
    0 20px 45px rgba(25, 52, 93, 0.08),
    0 6px 16px rgba(25, 52, 93, 0.04);
}

.saas-hero__copy {
  padding: 34px;
}

.saas-hero__copy h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  color: #081120;
}

.saas-points {
  margin-top: 24px;
}

.saas-points span {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(167, 189, 229, 0.44);
  color: #26415f;
}

.saas-hero__preview {
  display: grid;
  gap: 18px;
}

.saas-preview-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.saas-preview-card--dark {
  background:
    linear-gradient(135deg, rgba(13, 22, 40, 0.96), rgba(18, 49, 93, 0.92) 48%, rgba(45, 124, 255, 0.88)),
    #0d1628;
  color: #f8fbff;
  border-color: rgba(37, 87, 171, 0.22);
  box-shadow: 0 28px 54px rgba(13, 22, 40, 0.24);
}

.saas-preview-card--dark p,
.saas-preview-card--dark span,
.saas-preview-card--dark h2,
.saas-preview-card--dark code {
  color: inherit;
}

.saas-preview-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  color: #2152a6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.saas-preview-stack,
.saas-bullet-list,
.dashboard-link-grid,
.dashboard-workgrid,
.dashboard-hero-card__stats {
  display: grid;
  gap: 14px;
}

.saas-preview-stack div {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.saas-preview-stack span {
  font-size: 0.82rem;
  opacity: 0.82;
}

.saas-preview-stack code {
  font-family: "Consolas", "Courier New", monospace;
  overflow-wrap: anywhere;
}

.saas-bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #536784;
  line-height: 1.7;
}

.saas-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saas-card {
  padding: 28px;
}

.saas-card--highlight {
  background:
    linear-gradient(180deg, rgba(249, 251, 255, 0.98), rgba(242, 247, 255, 0.94)),
    #ffffff;
  border-color: rgba(170, 196, 237, 0.78);
}

.saas-card--wide {
  padding: 30px;
}

.saas-inline-preview {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  border: 1px solid rgba(183, 203, 239, 0.82);
  color: #4d6482;
}

.saas-inline-preview strong {
  color: #0d1628;
}

.saas-flow-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saas-flow-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background: #f9fbff;
  border: 1px solid rgba(192, 206, 229, 0.76);
}

.saas-flow-card p {
  margin: 0;
  color: #61728e;
  line-height: 1.65;
}

.onboarding-card,
.login-card,
.dashboard-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92)),
    #ffffff;
}

.onboarding-form,
.login-form-card,
.dashboard-form-card,
.dashboard-edit-card {
  gap: 18px;
}

.onboarding-block,
.login-form-card,
.dashboard-form-card,
.dashboard-edit-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(193, 208, 231, 0.84);
  background: #f9fbff;
}

.onboarding-block h3 {
  margin-bottom: 14px;
}

.onboarding-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4f8ff, #edf4ff);
  border: 1px solid rgba(177, 197, 232, 0.88);
}

.onboarding-footer__note {
  display: grid;
  gap: 6px;
  color: #4b5f7d;
}

.dashboard-shell {
  display: grid;
  gap: 20px;
  padding: 28px 0 56px;
}

.dashboard-hero-card {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  padding: 30px;
}

.dashboard-hero-card__copy h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  color: #081120;
}

.dashboard-hero-card__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-stat-card {
  padding: 20px;
}

.dashboard-stat-card span {
  color: #687b98;
  font-size: 0.85rem;
}

.dashboard-stat-card strong {
  display: block;
  margin-top: 12px;
  color: #081120;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.dashboard-link-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.dashboard-link-card {
  padding: 22px;
}

.dashboard-link-card--highlight {
  background:
    linear-gradient(135deg, rgba(13, 22, 40, 0.96), rgba(18, 49, 93, 0.92) 48%, rgba(45, 124, 255, 0.88)),
    #0d1628;
  color: #f8fbff;
  border-color: rgba(37, 87, 171, 0.22);
}

.dashboard-link-card--highlight p,
.dashboard-link-card--highlight h3,
.dashboard-link-card--highlight span,
.dashboard-link-card--highlight code {
  color: inherit;
}

.dashboard-workgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.dashboard-panel .stack-list {
  margin-top: 18px;
}

.dashboard-body--premium .list-card,
.dashboard-body--premium .subpanel,
.dashboard-body--premium .availability-box,
.dashboard-body--premium .share-space-url {
  background: #f9fbff;
  color: #10213c;
  border-color: rgba(193, 208, 231, 0.88);
  box-shadow: 0 14px 28px rgba(25, 52, 93, 0.06);
}

.dashboard-body--premium .list-card::before,
.dashboard-body--premium .subpanel::before,
.dashboard-body--premium .availability-box::before {
  display: none;
}

.dashboard-body--premium .card-meta,
.dashboard-body--premium .card-meta strong,
.dashboard-body--premium .list-card p,
.dashboard-body--premium .share-space-url {
  color: #4f6483;
}

.dashboard-body--premium .list-card h3,
.dashboard-body--premium .subpanel h3,
.dashboard-body--premium .availability-box h3 {
  color: #081120;
}

.dashboard-body--premium .status-agendado {
  background: rgba(45, 124, 255, 0.08);
  color: #1f5cca;
  border-color: rgba(45, 124, 255, 0.16);
}

.dashboard-body--premium .status-cancelado {
  background: rgba(255, 107, 143, 0.08);
  color: #cb4d72;
  border-color: rgba(255, 107, 143, 0.16);
}

.dashboard-body--premium .status-concluido {
  background: rgba(52, 215, 161, 0.08);
  color: #168a64;
  border-color: rgba(52, 215, 161, 0.16);
}

@media (max-width: 1080px) {
  .saas-hero,
  .saas-card-grid,
  .saas-flow-grid,
  .dashboard-hero-card,
  .dashboard-link-grid,
  .dashboard-workgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .saas-topbar__inner,
  .saas-brand,
  .onboarding-footer,
  .dashboard-topbar__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .saas-hero__copy,
  .saas-preview-card,
  .saas-card,
  .dashboard-hero-card,
  .dashboard-link-card {
    padding: 22px;
  }

  .saas-hero__copy h1,
  .dashboard-hero-card__copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .dashboard-hero-card__stats,
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

h1,
h2,
h3,
.saas-brand strong,
.dashboard-stat-card strong,
.flow-progress__step strong,
.booking-progress-step__copy strong {
  font-family: var(--font-display);
}

.button:active,
button:active {
  transform: translateY(1px) scale(0.985);
}

.saas-hero__copy,
.saas-preview-card,
.saas-card,
.dashboard-hero-card,
.dashboard-link-card,
.booking-showcase-card,
.booking-screen,
.booking-success-card {
  animation: surfaceFadeIn 0.42s ease both;
}

@keyframes surfaceFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.micro-trust-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.micro-trust-bar span,
.dashboard-anchor-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(164, 187, 228, 0.66);
  background: rgba(255, 255, 255, 0.82);
  color: #27415f;
  font-size: 0.9rem;
  font-weight: 700;
}

.portal-hero-premium {
  align-items: stretch;
}

.portal-preview-stack,
.flow-sidebar,
.auth-support-grid {
  display: grid;
  gap: 18px;
}

.portal-preview-display h2 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.app-route-preview {
  display: grid;
  gap: 12px;
}

.app-route-preview__item,
.flow-links-preview div,
.dashboard-guidance-card,
.flow-review-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(191, 205, 228, 0.78);
  background: rgba(255, 255, 255, 0.74);
}

.saas-preview-card--dark .app-route-preview__item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.app-route-preview__item span,
.flow-links-preview span {
  color: inherit;
  opacity: 0.76;
  font-size: 0.82rem;
}

.app-route-preview__item code,
.flow-links-preview code {
  overflow-wrap: anywhere;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92rem;
}

.portal-decision-grid,
.flow-layout,
.auth-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.portal-decision-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.portal-choice-card,
.auth-card,
.auth-support-card,
.flow-sidebar-card {
  display: grid;
  gap: 18px;
  height: 100%;
}

.portal-choice-card__lead {
  margin: 0;
  color: #50657f;
  line-height: 1.7;
}

.portal-choice-preview {
  margin: 0;
}

.portal-choice-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #536784;
  line-height: 1.7;
}

.portal-choice-card--primary {
  background:
    linear-gradient(135deg, rgba(13, 22, 40, 0.98), rgba(18, 49, 93, 0.95) 52%, rgba(45, 124, 255, 0.86)),
    #0d1628;
  border-color: rgba(37, 87, 171, 0.24);
  box-shadow: 0 26px 54px rgba(13, 22, 40, 0.18);
}

.portal-choice-card--primary h2,
.portal-choice-card--primary .portal-choice-card__lead,
.portal-choice-card--primary .portal-choice-list,
.portal-choice-card--primary .section-heading p {
  color: #f3f8ff;
}

.portal-choice-card--primary .section-step {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.portal-choice-card--primary .saas-inline-preview {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #d4e8ff;
}

.portal-choice-card--primary .saas-inline-preview strong {
  color: #ffffff;
}

.portal-choice-card .hero-actions {
  margin-top: auto;
}

.portal-access-form {
  gap: 14px;
}

.form-inline-note {
  margin: 0;
  color: #667a97;
  font-size: 0.92rem;
  line-height: 1.6;
}

.portal-flow-panel--premium,
.dashboard-guidance-panel {
  padding: 30px;
}

.flow-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
}

.onboarding-flow-form {
  gap: 22px;
}

.flow-progress {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-progress__step {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(191, 205, 228, 0.86);
  background: #f9fbff;
  color: #667a97;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.flow-progress__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  color: #2152a6;
  font-size: 0.86rem;
  font-weight: 800;
}

.flow-progress__step strong {
  color: #0f1c2f;
  font-size: 0.95rem;
}

.flow-progress__step small {
  font-size: 0.82rem;
}

.flow-progress__step.is-active {
  border-color: rgba(45, 124, 255, 0.36);
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
  box-shadow: 0 18px 30px rgba(45, 124, 255, 0.1);
  transform: translateY(-1px);
}

.flow-progress__step.is-complete {
  border-color: rgba(39, 174, 96, 0.26);
}

.flow-progress__step.is-complete span {
  background: rgba(39, 174, 96, 0.12);
  color: #167445;
}

.flow-step {
  display: none;
  gap: 18px;
  animation: surfaceFadeIn 0.34s ease both;
}

.flow-step.is-active {
  display: grid;
}

.flow-step__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.flow-step__header p {
  margin: 8px 0 0;
}

.flow-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-actions__hint {
  color: #5c6f8b;
  font-size: 0.92rem;
  font-weight: 700;
}

.flow-review-grid,
.dashboard-guidance-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-review-card span,
.dashboard-guidance-card span {
  color: #667a97;
  font-size: 0.84rem;
}

.flow-review-card strong,
.dashboard-guidance-card h3 {
  color: #0f1c2f;
}

.flow-links-preview {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-links-preview--stack {
  grid-template-columns: 1fr;
}

.flow-links-preview strong {
  color: #0f1c2f;
}

.flow-sidebar-card {
  padding: 24px;
}

.flow-sidebar-card--soft {
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.98), rgba(237, 244, 255, 0.92)),
    #ffffff;
}

.auth-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.8fr);
}

.auth-support-card {
  padding: 24px;
}

.auth-support-card p {
  margin: 0;
  color: #5e728f;
  line-height: 1.65;
}

.auth-support-card--accent {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.dashboard-anchor-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.dashboard-anchor-link {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.dashboard-anchor-link:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 124, 255, 0.34);
  box-shadow: 0 14px 26px rgba(45, 124, 255, 0.12);
}

.dashboard-guidance-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  color: #2152a6;
  font-weight: 800;
}

.dashboard-guidance-card p {
  margin: 0;
  color: #5d718f;
  line-height: 1.65;
}

.dashboard-links-card .dashboard-link-grid {
  margin-top: 6px;
}

.dashboard-panel .section-heading h2 {
  font-size: 1.34rem;
}

.dashboard-form-card,
.dashboard-edit-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(25, 52, 93, 0.06);
}

@media (max-width: 1080px) {
  .portal-decision-grid,
  .flow-layout,
  .auth-layout,
  .dashboard-guidance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .flow-progress,
  .flow-review-grid,
  .flow-links-preview {
    grid-template-columns: 1fr;
  }

  .flow-actions {
    align-items: stretch;
  }

  .flow-actions .button,
  .onboarding-footer .button,
  .auth-support-card .button {
    width: 100%;
  }

  .micro-trust-bar,
  .dashboard-anchor-nav {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
