/* Fundo vem de .auth-page em styles.css; aqui só garantimos altura mínima do fluxo. */
.register-onboarding-page.auth-page {
  min-height: 100vh;
}

.ob-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214, 226, 245, 0.72);
}

.ob-header-inner {
  width: min(1120px, 96%);
  margin: 0 auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.ob-header-side {
  min-width: 0;
}

.ob-header-side--end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ob-header-brand {
  display: block;
  line-height: 0;
  justify-self: center;
}

.ob-header-brand-img {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.ob-login-link {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
}

.ob-login-link strong {
  color: var(--primary);
  font-weight: 600;
}

.ob-login-link:hover strong {
  text-decoration: underline;
}

.ob-main {
  width: min(1120px, 96%);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.ob-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
  padding: 0 8px;
  max-width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.ob-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  cursor: pointer;
  min-width: 60px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.ob-step:disabled {
  cursor: not-allowed;
}

.ob-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  transition: all 0.25s ease;
}

.ob-step.is-current .ob-step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(43, 79, 151, 0.32);
}

.ob-step.is-done .ob-step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ob-step-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  text-align: center;
}

.ob-step.is-current .ob-step-label {
  color: var(--primary);
  font-weight: 600;
}

.ob-step.is-done .ob-step-label {
  color: var(--accent-dark);
  font-weight: 600;
}

.ob-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 18px 6px 0;
  border-radius: 1px;
  min-width: 24px;
  max-width: 70px;
  transition: background 0.3s ease;
}

.ob-step-line.is-done {
  background: var(--accent);
}

.ob-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(26, 47, 92, 0.06);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.ob-screen {
  display: none;
  padding: 32px 36px 0;
  flex: 1;
  animation: obFade 0.3s ease;
}

.ob-screen.is-active {
  display: block;
}

@keyframes obFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ob-screen-head {
  margin-bottom: 24px;
}

.ob-screen-head h1 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ob-screen-head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.ob-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ob-tile {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  font-family: inherit;
}

.ob-tile:hover {
  border-color: #85b7eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(43, 79, 151, 0.1);
}

.ob-tile.is-selected {
  border-color: var(--primary);
  background: #f0f5ff;
  border-width: 2px;
  padding: 19px 9px;
}

.ob-tile.is-selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.ob-tile-emoji,
.ob-tile-icon {
  font-size: 30px;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0f5ff, #e8eef8);
}

.ob-tile-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.ob-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ob-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ob-field-full {
  grid-column: 1 / -1;
}

.ob-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.ob-field input {
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all 0.15s ease;
}

.ob-field input::placeholder {
  color: #cbd5e1;
}

.ob-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43, 79, 151, 0.1);
}

.ob-field small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.ob-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ob-plan {
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ob-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 79, 151, 0.08);
}

.ob-plan.is-selected.ob-plan-free {
  border-color: var(--accent);
  background: #f0fdf4;
}

.ob-plan.is-selected.ob-plan-paid {
  border-color: var(--primary);
  background: #f0f5ff;
}

.ob-plan-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.ob-plan-badge-recommended {
  background: var(--accent);
}

.ob-plan-badge-popular {
  background: var(--primary);
}

.ob-plan-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ob-plan-icon {
  font-size: 28px;
  line-height: 1;
}

.ob-plan-head > div {
  display: flex;
  flex-direction: column;
}

.ob-plan-head strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.ob-plan-head span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.ob-plan-head span b {
  color: var(--text);
  font-weight: 700;
  font-size: 14.5px;
}

.ob-plan-features {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ob-plan-features li {
  font-size: 12.5px;
  color: var(--text);
  display: flex;
  gap: 6px;
  line-height: 1.45;
}

.ob-plan-features li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.ob-plan-foot {
  margin: 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}

.ob-other-plans {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  background: #fbfcfe;
}

.ob-other-plans summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ob-other-plans summary::-webkit-details-marker {
  display: none;
}

.ob-other-plans summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
}

.ob-other-plans[open] summary::after {
  content: '−';
}

.ob-other-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.ob-mini-plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px;
  text-align: center;
}

.ob-mini-plan strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ob-mini-plan span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.ob-mini-plan small {
  font-size: 10.5px;
  color: var(--muted);
}

.ob-other-plans-note {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}

.ob-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0 18px;
}

.ob-card-payment {
  animation: obSlideDown 0.3s ease;
}

@keyframes obSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ob-card-payment-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ob-card-payment-hint {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: var(--muted);
}

.ob-security-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--muted);
}

.ob-pay-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ob-pay {
  cursor: pointer;
  display: block;
  position: relative;
}

.ob-pay input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ob-pay-inner {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.15s ease;
  position: relative;
}

.ob-pay:hover .ob-pay-inner {
  border-color: #85b7eb;
}

.ob-pay.is-selected .ob-pay-inner {
  border-color: var(--primary);
  background: #f0f5ff;
}

.ob-pay.is-selected .ob-pay-inner::after {
  content: '✓';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.ob-pay-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ob-pay-icon-pix { background: var(--accent-dark); }
.ob-pay-icon-gw { background: #009ee3; }
.ob-pay-icon-pos { background: var(--primary); }

.ob-pay-copy {
  flex: 1;
}

.ob-pay-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ob-pay-copy span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.ob-mp-block {
  background: #f0f5ff;
  border: 1px solid #c7d8f0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 14px;
  animation: obSlideDown 0.3s ease;
}

.ob-mp-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.ob-mp-text {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.ob-mp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  background: #009ee3;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
  transition: all 0.15s ease;
}

.ob-mp-btn:hover {
  background: #0084c1;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 158, 227, 0.3);
}

.ob-mp-btn.is-connected {
  background: var(--accent-dark);
  pointer-events: none;
}

.ob-mp-foot {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.ob-success {
  text-align: center;
  padding: 16px 0 8px;
}

.ob-success-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ob-success h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ob-success p {
  margin: 0 auto;
  max-width: 480px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.ob-finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.ob-finish-card {
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
}

.ob-finish-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.ob-finish-card span {
  font-size: 11.5px;
  color: var(--muted);
}

.ob-finish-help {
  background: #f0f5ff;
  border: 1px solid #c7d8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 8px;
}

.ob-finish-help strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.ob-finish-help ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.7;
}

.ob-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px 22px;
  border-top: 1px solid var(--border);
  margin-top: 22px;
  background: #fbfcfe;
  gap: 10px;
}

.ob-foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ob-btn-back,
.ob-btn-next {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ob-btn-back {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
}

.ob-btn-back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ob-btn-back:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.ob-btn-next {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 0 22px;
}

.ob-btn-next:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(43, 79, 151, 0.28);
}

.ob-btn-next.is-finish {
  background: var(--accent);
}

.ob-btn-next.is-finish:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 18px rgba(108, 208, 77, 0.4);
}

.ob-btn-next.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.ob-btn-skip {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.ob-btn-skip:hover {
  color: var(--primary);
}

.ob-foot-note {
  text-align: center;
  margin: 18px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
}

.ob-foot-note a {
  color: var(--primary);
  text-decoration: underline;
}

.ob-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f3f79;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 100;
  animation: obToastIn 0.3s ease;
}

.ob-toast.is-error {
  background: #b91c1c;
}

.ob-toast.is-success {
  background: var(--accent-dark);
}

@keyframes obToastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
  .ob-main { padding: 16px 0 30px; }
  .ob-card { border-radius: 14px; }
  .ob-screen { padding: 22px 18px 0; }
  .ob-foot { padding: 14px 18px 16px; }
  .ob-screen-head h1 { font-size: 21px; }
  .ob-tiles { grid-template-columns: repeat(2, 1fr); }
  .ob-fields { grid-template-columns: 1fr; }
  .ob-plans { grid-template-columns: 1fr; }
  .ob-other-plans-grid { grid-template-columns: 1fr; }
  .ob-finish-grid { grid-template-columns: 1fr; }
  .ob-stepper { padding: 0; gap: 4px; }
  .ob-step { min-width: 44px; }
  .ob-step-line { min-width: 12px; max-width: 30px; margin: 18px 2px 0; }
  .ob-step-label { font-size: 10px; }
  .ob-btn-back span,
  .ob-btn-next span { display: inline; }
}

@media (max-width: 480px) {
  .ob-step-label { display: none; }
  .ob-stepper { margin-bottom: 18px; }
}

#authRegisterForm.ob-card {
  display: flex;
  flex-direction: column;
}

.ob-field-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.ob-doc-toggle {
  margin-bottom: 16px;
}

.register-onboarding-page .auth-logo-preview {
  margin-top: 4px;
}

.register-onboarding-page .auth-logo-preview img {
  max-height: 120px;
  border-radius: var(--ra-radius-sm, 10px);
  border: 1px solid var(--border);
}

.ob-review-list {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(120px, 32%) 1fr;
  gap: 10px 18px;
  font-size: 14px;
  align-items: baseline;
}

.ob-review-list dt {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 12.5px;
}

.ob-review-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

.ob-review-lead {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.register-carousel-feedback {
  margin: 0 36px 20px;
  padding: 0 2px;
  min-height: 1.25rem;
  font-size: 13px;
}

.ob-step.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 768px) {
  .register-carousel-feedback {
    margin: 0 18px 16px;
  }
  .ob-review-list {
    grid-template-columns: 1fr;
  }
  .ob-review-list dt {
    margin-top: 6px;
  }
  .ob-review-list dt:first-child {
    margin-top: 0;
  }
}

/* —— Pular etapa (somente dentro da etapa WhatsApp) —— */
.ob-wa-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.ob-wa-top .ob-skip-wrap {
  flex-shrink: 0;
  margin-top: 4px;
}

.ob-wa-top .ob-wa-hero-head {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.ob-skip-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.ob-skip-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.ob-skip-step:hover {
  color: var(--primary);
}

.ob-skip-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.register-onboarding-page.ob-step-whatsapp-active .ob-main {
  width: min(1120px, 96%);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-stepper {
  max-width: 920px;
}

.register-onboarding-page.ob-step-whatsapp-active #authRegisterForm.ob-card {
  min-height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(26, 47, 92, 0.08);
}

/* —— Etapa WhatsApp (premium) —— */
.ob-screen-whatsapp {
  padding: 28px 32px 8px !important;
}

.ob-wa-hero-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ob-wa-hero-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.12),
    0 8px 24px rgba(22, 163, 74, 0.28);
}

.ob-wa-hero-head h1 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.ob-wa-hero-head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
}

.ob-wa-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.ob-wa-showcase {
  position: relative;
  background: linear-gradient(160deg, #f8fafc 0%, #eef4ff 55%, #f0fdf4 100%);
  border: 1px solid rgba(213, 224, 241, 0.9);
  border-radius: 18px;
  padding: 18px 16px 16px;
  min-height: 380px;
}

.ob-wa-showcase-inner {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 24px;
}

.ob-wa-optional-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1px solid rgba(43, 79, 151, 0.12);
  backdrop-filter: blur(8px);
}

.ob-wa-phone-glass {
  margin: 0 auto;
  max-width: 240px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(15, 35, 75, 0.12);
  backdrop-filter: blur(12px);
}

.ob-wa-phone {
  background: #e5ddd5;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #1f2937;
}

.ob-wa-phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #075e54;
  color: #fff;
}

.ob-wa-phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.ob-wa-phone-top strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.ob-wa-phone-top small {
  font-size: 10px;
  opacity: 0.85;
}

.ob-wa-chat {
  padding: 10px 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 200px;
}

.ob-wa-bubble {
  max-width: 88%;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 10.5px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.ob-wa-bubble-in {
  align-self: flex-start;
  background: #fff;
  color: #111827;
}

.ob-wa-bubble-out {
  align-self: flex-end;
  background: #dcf8c6;
  color: #111827;
}

.ob-wa-bubble-success {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ob-wa-bubble-success strong {
  font-size: 10px;
  color: #166534;
}

.ob-wa-bubble-success span {
  font-size: 9.5px;
  color: #374151;
}

.ob-wa-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-wa-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(15, 35, 75, 0.05);
}

.ob-wa-feature strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ob-wa-feature span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.ob-wa-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-wa-feature--calendar .ob-wa-feature-icon {
  color: #2563eb;
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
}

.ob-wa-feature--confirm .ob-wa-feature-icon {
  color: #16a34a;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
}

.ob-wa-feature--ai .ob-wa-feature-icon {
  color: #7c3aed;
  background: linear-gradient(145deg, #ede9fe, #ddd6fe);
}

.ob-wa-picker {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px 14px;
  box-shadow: 0 10px 28px rgba(26, 47, 92, 0.05);
}

.ob-wa-picker-head h2 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.ob-wa-picker-head p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.ob-wa-list-state {
  text-align: center;
  padding: 28px 12px;
  font-size: 13px;
  color: var(--muted);
}

.ob-wa-list-state--error p {
  margin: 0 0 12px;
  color: #b91c1c;
}

.ob-wa-list-spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: obWaSpin 0.8s linear infinite;
}

@keyframes obWaSpin {
  to { transform: rotate(360deg); }
}

.ob-wa-number-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}

.ob-wa-number-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 14px 48px;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.ob-wa-number-card:hover {
  border-color: #85b7eb;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(43, 79, 151, 0.08);
}

.ob-wa-number-card.is-selected {
  border-color: #2563eb;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.35),
    0 0 0 4px rgba(37, 99, 235, 0.12),
    0 16px 36px rgba(37, 99, 235, 0.14);
}

.ob-wa-number-radio {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
}

.ob-wa-number-card.is-selected .ob-wa-number-radio {
  border-color: #2563eb;
  background: linear-gradient(145deg, #2563eb, #0055ff);
  box-shadow: inset 0 0 0 3px #fff;
}

.ob-wa-number-wa-icon {
  position: absolute;
  left: 44px;
  top: 16px;
  color: #25d366;
}

.ob-wa-number-card {
  padding-left: 72px;
}

.ob-wa-number-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.ob-wa-number-main strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ob-wa-number-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.ob-wa-badge-rec {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
  background: #dcfce7;
  color: #166534;
}

.ob-wa-badge-live {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  margin-left: auto;
}

.ob-wa-list-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.ob-wa-refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  color: var(--primary);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.ob-wa-refresh:hover {
  text-decoration: underline;
}

.ob-wa-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  color: #c2410c;
}

.ob-wa-benefits-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.ob-wa-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ob-wa-benefit {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
}

.ob-wa-benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-wa-benefit-icon--bolt {
  color: #ea580c;
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
}

.ob-wa-benefit-icon--shield {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-wa-benefit-icon--support {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
}

.ob-wa-benefit strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ob-wa-benefit p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.ob-progress-panel {
  min-width: 140px;
  text-align: right;
}

.ob-progress-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.ob-progress-track {
  height: 6px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
  margin-bottom: 4px;
}

.ob-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #4f8cff);
  transition: width 0.35s ease;
}

.ob-progress-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

/* progresso global substitui o painel só da etapa WhatsApp */

@media (max-width: 960px) {
  .ob-wa-grid {
    grid-template-columns: 1fr;
  }
  .ob-wa-showcase-inner {
    grid-template-columns: 1fr;
  }
  .ob-wa-showcase {
    min-height: auto;
  }
  .ob-wa-top {
    flex-direction: column;
    align-items: stretch;
  }
  .ob-wa-top .ob-skip-wrap {
    align-items: flex-end;
  }
  .ob-wa-benefits-row {
    grid-template-columns: 1fr;
  }
  .ob-wa-benefits {
    grid-template-columns: 1fr;
  }
  .ob-progress-panel {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ob-screen-whatsapp {
    padding: 20px 16px 4px !important;
  }
  .ob-wa-hero-head {
    flex-direction: column;
  }
  .ob-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .ob-header-side:first-child {
    display: none;
  }

  .ob-header-brand {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .ob-header-side--end {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* =========================================================
   Premium split layout (telas 1–3, 5–7)
   ========================================================= */

.register-onboarding-page .ob-card {
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(26, 47, 92, 0.08);
  min-height: 560px;
}

.ob-global-progress {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  max-width: min(1120px, 96%);
  margin: 0 auto 14px;
  padding: 0 4px;
}

.ob-global-progress .ob-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.ob-global-progress .ob-progress-track {
  width: min(160px, 28vw);
  height: 6px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
}

.ob-global-progress .ob-progress-pct {
  min-width: 36px;
  text-align: right;
}

.ob-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.ob-split--finish {
  align-items: stretch;
}

.ob-split-main {
  min-width: 0;
}

.ob-split-aside {
  min-width: 0;
}

.ob-aside-glass {
  background: linear-gradient(165deg, #f8fafc 0%, #eef4ff 45%, #f0fdf4 100%);
  border: 1px solid rgba(213, 224, 241, 0.95);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 32px rgba(15, 35, 75, 0.06);
  height: 100%;
}

.ob-aside-glass--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ob-aside-kicker {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.ob-aside-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ob-aside-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.ob-aside-checklist {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-aside-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.ob-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.ob-aside-preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(15, 35, 75, 0.06);
}

.ob-aside-preview-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.ob-aside-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.ob-aside-preview-line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #dbeafe, #e0e7ff);
  margin-bottom: 6px;
}

.ob-aside-preview-line.is-wide {
  width: 85%;
}

.ob-aside-preview-line.is-short {
  width: 45%;
}

.ob-screen-segment .ob-tiles-premium {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 900px) {
  .ob-screen-segment .ob-tiles-premium {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ob-screen-segment .ob-tile-premium.is-selected {
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.35),
    0 0 0 4px rgba(37, 99, 235, 0.12),
    0 16px 36px rgba(37, 99, 235, 0.14);
}

.ob-fields-stack .ob-field-full {
  grid-column: 1 / -1;
}

.ob-pwd-meter {
  margin-top: 8px;
}

.ob-pwd-meter-track {
  height: 5px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
  margin-bottom: 4px;
}

.ob-pwd-meter-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 0.25s ease, background 0.25s ease;
}

.ob-pwd-meter-fill.is-weak {
  background: #f59e0b;
}

.ob-pwd-meter-fill.is-medium {
  background: #3b82f6;
}

.ob-pwd-meter-fill.is-strong {
  background: #16a34a;
}

.ob-pwd-meter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.ob-security-visual {
  position: relative;
  margin-bottom: 16px;
}

.ob-security-shield {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.ob-security-badge {
  position: absolute;
  bottom: -4px;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
}

.ob-security-badge:first-of-type {
  left: 0;
}

.ob-security-badge:last-of-type {
  right: 0;
}

.ob-robot-visual {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 14px;
}

.ob-robot-face {
  font-size: 48px;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.2));
}

.ob-robot-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.25);
  animation: obRobotPulse 2s ease-out infinite;
}

@keyframes obRobotPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

.ob-setup-progress {
  width: 100%;
  margin-top: 16px;
  text-align: left;
}

.ob-setup-progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.ob-setup-progress-head strong {
  color: var(--primary);
}

.ob-setup-progress-track {
  height: 6px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
}

.ob-setup-progress-fill {
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
}

.ob-map-mock {
  position: relative;
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
  margin-bottom: 14px;
  overflow: hidden;
}

.ob-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.ob-map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.ob-brand-preview-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.ob-brand-preview-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.ob-brand-preview-card strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.ob-brand-preview-card span {
  font-size: 11px;
  color: var(--muted);
}

.ob-logo-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ob-logo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ob-logo-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

.ob-logo-upload-btn:hover {
  border-color: var(--primary);
  background: #f0f5ff;
}

.ob-review-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}

.ob-perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ob-perks-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ob-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ob-perks-list strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ob-perks-list span {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
}

.ob-success--premium {
  text-align: left;
  padding: 8px 0 20px;
  position: relative;
}

.ob-success-confetti {
  position: absolute;
  inset: -20px 0 auto;
  height: 120px;
  background:
    radial-gradient(circle at 20% 40%, rgba(34, 197, 94, 0.2) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.2) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 70%, rgba(245, 158, 11, 0.2) 0 3px, transparent 4px);
  pointer-events: none;
}

.ob-success--premium .ob-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 16px;
  background: #dcfce7;
  color: #16a34a;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.12);
}

.ob-success--premium h1 {
  text-align: left;
  font-size: 28px;
}

.ob-success--premium p {
  text-align: left;
  max-width: none;
  margin: 0 0 20px;
}

.ob-finish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ob-btn-finish-primary,
.ob-btn-finish-ghost {
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.ob-btn-finish-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(43, 79, 151, 0.28);
}

.ob-btn-finish-primary:hover {
  background: var(--primary-dark);
}

.ob-btn-finish-ghost {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.ob-value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.ob-value-card {
  text-align: center;
  padding: 14px 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.ob-value-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.ob-value-card span {
  font-size: 11px;
  color: var(--muted);
}

.ob-cockpit-mock {
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.ob-cockpit-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.ob-cockpit-kpi {
  padding: 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.ob-cockpit-kpi small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}

.ob-cockpit-kpi strong {
  font-size: 15px;
  color: var(--text);
}

.ob-cockpit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.ob-cockpit-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.ob-aside-help {
  margin-top: 14px;
  font-size: 12px;
}

.ob-btn-next.is-cta-large {
  padding: 0 28px;
  box-shadow: 0 10px 24px rgba(43, 79, 151, 0.28);
}

.ob-step.is-current .ob-step-circle {
  box-shadow: 0 0 0 4px rgba(43, 79, 151, 0.2), 0 8px 18px rgba(43, 79, 151, 0.28);
}

.register-onboarding-page.ob-step-finish-active .ob-global-progress {
  opacity: 1;
}

.register-onboarding-page.ob-step-finish-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #22c55e, #2563eb);
  width: 100% !important;
}

@media (max-width: 960px) {
  .ob-split {
    grid-template-columns: 1fr;
  }
  .ob-split-aside {
    order: 2;
  }
  .ob-aside-glass--center {
    padding: 16px;
  }
  .ob-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .ob-value-strip {
    grid-template-columns: 1fr;
  }
  .ob-global-progress {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ob-screen {
    padding: 22px 16px 0;
  }
  .ob-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   Etapa 1 — Negócio (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-segment-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 38%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-segment-active .ob-stepper {
  margin-bottom: 18px;
}

.register-onboarding-page.ob-step-segment-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-segment-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-segment-active .ob-step-line.is-done {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.register-onboarding-page.ob-step-segment-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.register-onboarding-page.ob-step-segment-active .ob-card {
  border: 1px solid rgba(214, 226, 245, 0.9);
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.05),
    0 24px 60px rgba(37, 99, 235, 0.08);
}

.ob-screen-segment {
  padding: 36px 40px 8px;
}

.ob-split-segment {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 32px;
}

.ob-segment-head h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-segment-spark {
  font-size: 1.15em;
  line-height: 1;
}

.ob-segment-lead {
  margin: 0 0 4px;
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.55;
}

.ob-segment-helper {
  margin: 0 0 22px;
  font-size: 13px;
  color: #94a3b8;
}

.ob-segment-helper strong {
  color: #475569;
  font-weight: 600;
}

.ob-tile-premium {
  align-items: flex-start;
  text-align: left;
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  min-height: 118px;
  gap: 8px;
}

.ob-tile-premium:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.ob-tile-premium.is-selected {
  border-color: #2563eb;
  background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 55%, #ffffff 100%);
  padding: 13px 13px 11px;
}

.ob-tile-premium.is-selected::after {
  content: none;
}

.ob-tile-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.2s ease;
}

.ob-tile-check::after {
  content: '';
  position: absolute;
  inset: 4px 5px 5px 6px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) scale(0.6);
  opacity: 0;
}

.ob-tile-premium.is-selected .ob-tile-check {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(145deg, #2563eb, #0055ff);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
}

.ob-tile-premium.is-selected .ob-tile-check::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.ob-tile-premium .ob-tile-icon {
  width: 44px;
  height: 44px;
  font-size: 26px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ob-tile-icon--barber { background: linear-gradient(145deg, #fef3c7, #fde68a) !important; }
.ob-tile-icon--salon { background: linear-gradient(145deg, #fce7f3, #fbcfe8) !important; }
.ob-tile-icon--unisex { background: linear-gradient(145deg, #ede9fe, #ddd6fe) !important; }
.ob-tile-icon--estetica { background: linear-gradient(145deg, #ecfdf5, #bbf7d0) !important; }
.ob-tile-icon--nails { background: linear-gradient(145deg, #fff1f2, #fecdd3) !important; }
.ob-tile-icon--spa { background: linear-gradient(145deg, #ecfdf5, #a7f3d0) !important; }
.ob-tile-icon--ink { background: linear-gradient(145deg, #f1f5f9, #cbd5e1) !important; }
.ob-tile-icon--other { background: linear-gradient(145deg, #eff6ff, #bfdbfe) !important; }

.ob-tile-premium .ob-tile-label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.ob-tile-desc {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
  display: block;
}

.ob-segment-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.95), rgba(240, 253, 250, 0.9));
  border: 1px solid rgba(191, 219, 254, 0.65);
}

.ob-segment-tip-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.ob-segment-tip p {
  margin: 0;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.5;
}

.ob-aside-glass--segment {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(96, 165, 250, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(167, 243, 208, 0.12), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 42%, #f0fdf4 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ob-aside-glass--segment .ob-aside-kicker {
  color: #2563eb;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.ob-aside-glass--segment .ob-aside-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ob-aside-segment-lead {
  margin-bottom: 16px !important;
  font-size: 12.5px !important;
}

.ob-aside-features {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ob-aside-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ob-aside-features li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.ob-aside-features strong {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.ob-aside-features small {
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

.ob-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(191, 219, 254, 0.6);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.ob-feat-icon--wa {
  color: #16a34a;
  background: rgba(240, 253, 244, 0.95);
  border-color: rgba(134, 239, 172, 0.7);
}

.ob-aside-hero {
  position: relative;
  height: 148px;
  margin: 4px 0 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ob-aside-spark {
  position: absolute;
  color: #93c5fd;
  font-size: 14px;
  opacity: 0.85;
  animation: obSpark 2.8s ease-in-out infinite;
}

.ob-aside-spark--1 { top: 18%; left: 18%; animation-delay: 0s; }
.ob-aside-spark--2 { top: 8%; right: 22%; animation-delay: 0.6s; }
.ob-aside-spark--3 { bottom: 42%; left: 8%; animation-delay: 1.1s; }

@keyframes obSpark {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.ob-aside-robot {
  position: relative;
  width: 88px;
  height: 110px;
  filter: drop-shadow(0 12px 24px rgba(37, 99, 235, 0.2));
}

.ob-aside-robot-head {
  width: 56px;
  height: 48px;
  margin: 0 auto;
  border-radius: 16px 16px 12px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.ob-aside-robot-eye {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dd3fc, #2563eb 55%, #1e40af);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.65);
  animation: obEyeGlow 2.2s ease-in-out infinite;
}

@keyframes obEyeGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(37, 99, 235, 0.5); }
  50% { box-shadow: 0 0 16px rgba(37, 99, 235, 0.9); }
}

.ob-aside-robot-body {
  width: 64px;
  height: 44px;
  margin: -4px auto 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border: 2px solid #cbd5e1;
  position: relative;
  z-index: 1;
}

.ob-aside-robot-arm {
  position: absolute;
  width: 14px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f1f5f9, #cbd5e1);
  border: 1px solid #94a3b8;
  top: 52px;
  z-index: 0;
}

.ob-aside-robot-arm--l {
  left: 4px;
  transform: rotate(18deg);
}

.ob-aside-robot-arm--r {
  right: 4px;
  transform: rotate(-12deg);
}

.ob-aside-wa-float {
  position: absolute;
  right: 12%;
  bottom: 28%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.4);
  animation: obWaFloat 3s ease-in-out infinite;
}

@keyframes obWaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ob-aside-proof {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.ob-aside-proof-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-aside-proof p {
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}

.register-onboarding-page.ob-step-segment-active .ob-btn-next {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  padding: 0 26px;
  height: 46px;
  font-weight: 700;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.register-onboarding-page.ob-step-segment-active .ob-btn-next:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(37, 99, 235, 0.42),
    0 16px 32px rgba(0, 85, 255, 0.28);
}

.register-onboarding-page.ob-step-segment-active .ob-foot {
  background: linear-gradient(180deg, #fbfcff 0%, #f8fafc 100%);
  border-top-color: rgba(226, 232, 240, 0.9);
}

@media (max-width: 960px) {
  .ob-screen-segment {
    padding: 28px 22px 8px;
  }

  .ob-split-segment {
    grid-template-columns: 1fr;
  }

  .ob-aside-segment {
    order: 2;
  }

  .ob-aside-hero {
    height: 120px;
  }
}

@media (max-width: 640px) {
  .ob-screen-segment .ob-tiles-premium {
    grid-template-columns: 1fr;
  }

  .ob-tile-premium {
    min-height: auto;
  }
}

/* =========================================================
   Etapa 2 — Acesso (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-account-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-account-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-account-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-account-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-account-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
}

.register-onboarding-page.ob-step-account-active .ob-btn-next {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 46px;
  font-weight: 700;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.register-onboarding-page.ob-step-account-active .ob-btn-next:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
}

.ob-screen-account {
  padding: 34px 40px 8px;
}

.ob-split-account {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
}

.ob-account-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.ob-account-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(147, 197, 253, 0.65);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
}

.ob-account-head h1 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-account-lead {
  margin: 0 0 2px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.ob-account-sub {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.45;
}

.ob-account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ob-screen-account .ob-field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2px;
}

.ob-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.ob-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: inline-flex;
  z-index: 1;
}

.ob-input-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ob-input-wrap input::placeholder {
  color: #cbd5e1;
}

.ob-input-wrap input:focus {
  border-color: #3b82f6;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 4px rgba(59, 130, 246, 0.12);
}

.ob-input-wrap input.is-valid {
  border-color: #86efac;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.03),
    0 0 0 3px rgba(34, 197, 94, 0.12);
}

.ob-input-valid {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #16a34a;
  display: inline-flex;
  pointer-events: none;
}

.ob-input-wrap:has(.ob-input-toggle) input {
  padding-right: 48px;
}

.ob-input-wrap:has(.ob-input-valid:not([hidden])) input {
  padding-right: 44px;
}

.ob-input-wrap:has(.ob-input-toggle):has(.ob-input-valid:not([hidden])) input {
  padding-right: 76px;
}

.ob-input-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ob-input-toggle:hover {
  color: #2563eb;
  background: rgba(239, 246, 255, 0.9);
}

.ob-account-pwd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ob-pwd-panel {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
}

.ob-pwd-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ob-pwd-panel-label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.ob-pwd-panel-status {
  font-size: 12px;
  font-weight: 800;
}

.ob-pwd-panel-status.is-weak {
  color: #f59e0b;
}

.ob-pwd-panel-status.is-medium {
  color: #3b82f6;
}

.ob-pwd-panel-status.is-strong {
  color: #16a34a;
}

.ob-pwd-panel-status.is-strong::before {
  content: '✓ ';
}

.ob-pwd-segments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.ob-pwd-segments span {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ob-pwd-segments span.is-on {
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.ob-pwd-segments span.is-on.is-strong {
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.45);
}

.ob-pwd-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ob-pwd-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.15s ease;
}

.ob-pwd-checklist li.is-met {
  color: #15803d;
  font-weight: 600;
}

.ob-pwd-check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  flex-shrink: 0;
  position: relative;
}

.ob-pwd-checklist li.is-met .ob-pwd-check-icon {
  border-color: #22c55e;
  background: #22c55e;
}

.ob-pwd-checklist li.is-met .ob-pwd-check-icon::after {
  content: '';
  position: absolute;
  inset: 3px 4px 4px 5px;
  border: solid #fff;
  border-width: 0 0 1.5px 1.5px;
  transform: rotate(-45deg);
}

.ob-account-secure-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.95), rgba(240, 253, 250, 0.9));
  border: 1px solid rgba(191, 219, 254, 0.65);
}

.ob-account-secure-icon {
  color: #2563eb;
  flex-shrink: 0;
  display: inline-flex;
}

.ob-account-secure-tip p {
  margin: 0;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.5;
}

.ob-aside-glass--account {
  padding: 22px 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(96, 165, 250, 0.2), transparent 60%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 50%, #f0fdf4 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.ob-security-scene {
  position: relative;
  height: 200px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ob-security-pedestal {
  position: absolute;
  bottom: 8px;
  width: 120px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25), transparent 70%);
}

.ob-security-shield-3d {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 55%, #0055ff 100%);
  box-shadow:
    0 16px 40px rgba(37, 99, 235, 0.45),
    0 0 40px rgba(59, 130, 246, 0.25);
  animation: obShieldFloat 3.2s ease-in-out infinite;
}

@keyframes obShieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ob-security-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #93c5fd;
  opacity: 0.7;
  animation: obSpark 2.5s ease-in-out infinite;
}

.ob-security-particle--1 { top: 20%; left: 20%; }
.ob-security-particle--2 { top: 12%; right: 18%; animation-delay: 0.5s; }
.ob-security-particle--3 { bottom: 35%; left: 12%; animation-delay: 1s; }

.ob-security-float {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  animation: obWaFloat 3.5s ease-in-out infinite;
}

.ob-security-float--cloud {
  top: 18%;
  left: 8%;
  color: #64748b;
}

.ob-security-float--check {
  top: 14%;
  right: 10%;
  color: #16a34a;
  animation-delay: 0.4s;
}

.ob-security-float--data {
  bottom: 28%;
  right: 6%;
  animation-delay: 0.9s;
}

.ob-trust-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ob-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
}

.ob-trust-card strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.ob-trust-card span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.ob-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-trust-icon--globe {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-trust-icon--shield {
  color: #16a34a;
  background: linear-gradient(145deg, #ecfdf5, #bbf7d0);
}

.ob-trust-icon--user {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ddd6fe);
}

@media (max-width: 960px) {
  .ob-screen-account {
    padding: 28px 22px 8px;
  }

  .ob-split-account {
    grid-template-columns: 1fr;
  }

  .ob-aside-account {
    order: 2;
  }

  .ob-account-pwd-row {
    grid-template-columns: 1fr;
  }

  .ob-security-scene {
    height: 170px;
  }
}

/* =========================================================
   Etapa 3 — Empresa (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-company-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-company-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-company-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-company-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-company-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
}

.register-onboarding-page.ob-step-company-active .ob-btn-next {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 46px;
  font-weight: 700;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.register-onboarding-page.ob-step-company-active .ob-btn-next:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
}

.ob-screen-company {
  padding: 34px 40px 8px;
}

.ob-split-company {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 30px;
}

.ob-company-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.ob-company-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(147, 197, 253, 0.65);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
}

.ob-company-head h1 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-company-lead {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.ob-doc-toggle-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
  padding: 4px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.ob-doc-opt {
  min-height: 42px;
  border: 1.5px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ob-doc-opt.is-active {
  color: #1d4ed8;
  background: #fff;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.12),
    0 6px 16px rgba(37, 99, 235, 0.12);
}

.ob-doc-opt.is-disabled,
.ob-doc-opt:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ob-company-form.ob-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ob-screen-company .ob-field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.ob-screen-company .ob-input-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ob-screen-company .ob-input-wrap input:focus {
  border-color: #3b82f6;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 4px rgba(59, 130, 246, 0.12);
}

.ob-screen-company .ob-input-wrap input.is-valid {
  border-color: #86efac;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.03),
    0 0 0 3px rgba(34, 197, 94, 0.12);
}

.ob-input-wrap--disabled input {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  border-color: #e2e8f0;
}

.ob-input-wrap--disabled .ob-input-icon {
  color: #cbd5e1;
}

.ob-input-lock {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: inline-flex;
  pointer-events: none;
}

.ob-aside-glass--company {
  padding: 22px 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(129, 140, 248, 0.18), transparent 58%),
    radial-gradient(ellipse 60% 45% at 100% 80%, rgba(96, 165, 250, 0.12), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 48%, #f5f3ff 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.ob-company-ai-hero {
  position: relative;
  height: 160px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ob-company-ai-spark {
  position: absolute;
  color: #a5b4fc;
  font-size: 13px;
  animation: obSpark 2.6s ease-in-out infinite;
}

.ob-company-ai-spark--1 { top: 16%; left: 22%; }
.ob-company-ai-spark--2 { top: 10%; right: 20%; animation-delay: 0.7s; }

.ob-company-ai-robot {
  position: relative;
  z-index: 2;
  width: 80px;
  filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.25));
}

.ob-company-ai-robot-head {
  width: 52px;
  height: 44px;
  margin: 0 auto;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, #fff, #e2e8f0);
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ob-company-ai-eye {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c4b5fd, #6366f1 55%, #4338ca);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.65);
  animation: obEyeGlow 2.2s ease-in-out infinite;
}

.ob-company-ai-robot-body {
  width: 58px;
  height: 38px;
  margin: -3px auto 0;
  border-radius: 11px;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border: 2px solid #cbd5e1;
}

.ob-company-ai-float {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  animation: obWaFloat 3.2s ease-in-out infinite;
}

.ob-company-ai-float--chart {
  top: 22%;
  left: 6%;
  color: #2563eb;
}

.ob-company-ai-float--users {
  top: 12%;
  right: 8%;
  animation-delay: 0.5s;
  color: #7c3aed;
}

.ob-company-ai-float--id {
  bottom: 26%;
  right: 4%;
  animation-delay: 1s;
  color: #64748b;
}

.ob-company-ai-lead {
  margin-bottom: 14px !important;
  font-size: 12.5px !important;
}

.ob-setup-progress--premium {
  margin-bottom: 14px;
}

.ob-setup-progress--premium .ob-setup-progress-head {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

.ob-setup-progress--premium .ob-setup-progress-head strong {
  color: #2563eb;
  font-size: 12px;
}

.ob-setup-progress--premium .ob-setup-progress-track {
  height: 8px;
  background: #e2e8f0;
}

.ob-setup-progress--premium .ob-setup-progress-fill {
  background: linear-gradient(90deg, #6366f1, #2563eb, #0055ff);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
  transition: width 0.35s ease;
}

.ob-setup-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-setup-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.05);
}

.ob-setup-checklist li.is-done {
  background: linear-gradient(90deg, rgba(240, 253, 244, 0.9), rgba(255, 255, 255, 0.7));
  border-color: rgba(134, 239, 172, 0.45);
}

.ob-setup-checklist strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.ob-setup-checklist li > div > span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.ob-setup-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.ob-setup-check--done {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
}

.ob-setup-check--pending {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  position: relative;
}

.ob-setup-checklist li.is-pending .ob-setup-check--pending::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #94a3b8;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: obSetupSpin 0.8s linear infinite;
}

@keyframes obSetupSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
  .ob-screen-company {
    padding: 28px 22px 8px;
  }

  .ob-split-company {
    grid-template-columns: 1fr;
  }

  .ob-aside-company {
    order: 2;
  }

  .ob-company-form.ob-fields {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Etapa 4 — WhatsApp (premium mock polish)
   ========================================================= */

.register-onboarding-page.ob-step-whatsapp-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 38%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-whatsapp-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-btn-next {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 46px;
  font-weight: 700;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.register-onboarding-page.ob-step-whatsapp-active .ob-btn-next:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
}

.register-onboarding-page.ob-step-whatsapp-active #authRegisterForm.ob-card {
  border: 1px solid rgba(214, 226, 245, 0.9);
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.05),
    0 24px 60px rgba(37, 99, 235, 0.08);
}

.ob-screen-whatsapp {
  padding: 32px 36px 10px !important;
}

.ob-wa-hero-head h1 {
  color: #0f172a;
}

.ob-wa-optional-badge {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
}

.ob-wa-picker {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ob-wa-picker-head h2 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ob-wa-badge-rec {
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.ob-wa-benefits-row {
  border-top-color: rgba(226, 232, 240, 0.9);
  margin-top: 24px;
}

.ob-skip-step {
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.ob-skip-step:hover {
  background: rgba(239, 246, 255, 0.9);
}

/* =========================================================
   Etapa 5 — Endereço e marca (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-address-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-address-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-address-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-address-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-address-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
}

.register-onboarding-page.ob-step-address-active .ob-btn-next {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 46px;
  font-weight: 700;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.register-onboarding-page.ob-step-address-active .ob-btn-next:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
}

.ob-screen-address {
  padding: 34px 40px 8px;
}

.ob-split-address {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
}

.ob-address-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.ob-address-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(147, 197, 253, 0.65);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.1),
    0 6px 16px rgba(37, 99, 235, 0.15);
}

.ob-address-head h1 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-address-lead {
  margin: 0 0 2px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.ob-address-sub {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

.ob-address-form.ob-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ob-screen-address .ob-field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.ob-screen-address .ob-input-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ob-screen-address .ob-input-wrap input:focus {
  border-color: #3b82f6;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 4px rgba(59, 130, 246, 0.12);
}

.ob-screen-address .ob-input-wrap input.is-valid {
  border-color: #86efac;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.03),
    0 0 0 3px rgba(34, 197, 94, 0.12);
}

.ob-address-form .ob-field-full {
  grid-column: 1 / -1;
}

.ob-logo-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.ob-logo-section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 10px;
}

.ob-logo-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-radius: 16px;
  border: 2px dashed rgba(148, 163, 184, 0.65);
  background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
  text-align: center;
  margin-bottom: 14px;
}

.ob-logo-dropzone-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.ob-logo-dropzone-hint {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

.ob-logo-dropzone .ob-logo-upload {
  justify-content: center;
}

.ob-logo-dropzone .ob-logo-upload-btn {
  border-radius: 12px;
  height: 42px;
  padding: 0 18px;
  border-color: rgba(37, 99, 235, 0.35);
  background: #fff;
  color: #2563eb;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.ob-logo-preview-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.ob-logo-preview-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.ob-logo-preview-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ob-logo-preview-panel p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.ob-aside-glass--address {
  padding: 22px 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(96, 165, 250, 0.15), transparent 55%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 50%, #f0fdf4 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.ob-map-mock--premium {
  height: 168px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 45%, #ecfdf5 100%);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.ob-map-roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 48%, rgba(255, 255, 255, 0.7) 49%, rgba(255, 255, 255, 0.7) 51%, transparent 52%),
    linear-gradient(15deg, transparent 62%, rgba(255, 255, 255, 0.55) 63%, rgba(255, 255, 255, 0.55) 64%, transparent 65%);
  opacity: 0.85;
}

.ob-map-mock--premium .ob-map-pin {
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.5),
    0 0 20px rgba(59, 130, 246, 0.4);
  z-index: 2;
}

.ob-map-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  z-index: 1;
  animation: obMapPulse 2.5s ease-in-out infinite;
}

@keyframes obMapPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.ob-address-aside-lead {
  margin-bottom: 14px !important;
  font-size: 12.5px !important;
}

.ob-brand-preview-card--premium {
  position: relative;
  margin-top: 0;
  margin-bottom: 14px;
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.ob-brand-preview-body {
  flex: 1;
  min-width: 0;
}

.ob-brand-preview-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.ob-address-mini-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-address-mini-cards li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.05);
}

.ob-address-mini-cards strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.ob-address-mini-cards li > div > span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.ob-address-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-address-mini-icon--pin {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-address-mini-icon--store {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
}

@media (max-width: 960px) {
  .ob-screen-address {
    padding: 28px 22px 8px;
  }

  .ob-split-address {
    grid-template-columns: 1fr;
  }

  .ob-aside-address {
    order: 2;
  }

  .ob-address-form.ob-fields {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Etapa 6 — Confirmar cadastro (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-review-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 38%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-review-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-review-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-review-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-review-active .ob-global-progress .ob-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #0055ff);
}

.register-onboarding-page.ob-step-review-active .ob-btn-next.is-cta-create {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 48px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.4),
    0 14px 32px rgba(0, 85, 255, 0.25);
}

.register-onboarding-page.ob-step-review-active .ob-btn-next.is-cta-create:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(37, 99, 235, 0.45),
    0 18px 36px rgba(0, 85, 255, 0.3);
}

.ob-screen-review {
  padding: 34px 40px 8px;
}

.ob-split-review {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 30px;
}

.ob-review-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.ob-review-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(147, 197, 253, 0.65);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.1),
    0 6px 16px rgba(37, 99, 235, 0.15);
}

.ob-review-head h1 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-review-lead {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
}

.ob-review-card--premium {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  padding: 8px 4px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.ob-review-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ob-review-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.15s ease;
}

.ob-review-row:hover {
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.7), rgba(248, 250, 252, 0.4));
}

.ob-review-row + .ob-review-row {
  border-top: 1px solid rgba(241, 245, 249, 0.95);
}

.ob-review-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-review-row-icon--biz {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-review-row-icon--tag {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
}

.ob-review-row-icon--building {
  color: #0ea5e9;
  background: linear-gradient(145deg, #e0f2fe, #bae6fd);
}

.ob-review-row-icon--user {
  color: #64748b;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}

.ob-review-row-icon--id {
  color: #475569;
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}

.ob-review-row-icon--mail {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-review-row-icon--pin {
  color: #16a34a;
  background: linear-gradient(145deg, #ecfdf5, #bbf7d0);
}

.ob-review-row-icon--wa {
  color: #16a34a;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
}

.ob-review-row-icon--logo {
  color: #ea580c;
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
}

.ob-review-row-body {
  min-width: 0;
}

.ob-review-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ob-review-row-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  word-break: break-word;
}

.ob-review-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
  flex-shrink: 0;
}

.ob-aside-glass--review {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(167, 243, 208, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(96, 165, 250, 0.15), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 48%, #f0fdf4 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.ob-review-spark {
  position: absolute;
  color: #93c5fd;
  font-size: 12px;
  opacity: 0.8;
  animation: obSpark 2.8s ease-in-out infinite;
}

.ob-review-spark--1 {
  top: 14%;
  right: 18%;
}

.ob-review-spark--2 {
  top: 38%;
  left: 10%;
  animation-delay: 0.8s;
}

.ob-aside-glass--review .ob-aside-title {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.ob-perks-list--premium {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-perk-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.06);
}

.ob-perk-card .ob-perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-perk-card--calendar .ob-perk-icon {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-perk-card--wa .ob-perk-icon {
  color: #16a34a;
  background: linear-gradient(145deg, #ecfdf5, #bbf7d0);
}

.ob-perk-card--chart .ob-perk-icon {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
}

.ob-perk-card--bell .ob-perk-icon {
  color: #ca8a04;
  background: linear-gradient(145deg, #fefce8, #fef08a);
}

.ob-perk-card strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.ob-perk-card span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.ob-review-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.95), rgba(240, 253, 250, 0.9));
  border: 1px solid rgba(191, 219, 254, 0.55);
}

.ob-review-trust-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.ob-review-trust p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .ob-screen-review {
    padding: 28px 22px 8px;
  }

  .ob-split-review {
    grid-template-columns: 1fr;
  }

  .ob-aside-review {
    order: 2;
  }
}

/* =========================================================
   Etapa 7 — Tudo pronto! (premium mock)
   ========================================================= */

.register-onboarding-page.ob-step-finish-active {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 35%, #eef2ff 100%);
}

.register-onboarding-page.ob-step-finish-active .ob-step.is-done .ob-step-circle {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}

.register-onboarding-page.ob-step-finish-active .ob-step.is-current .ob-step-circle {
  background: linear-gradient(145deg, #2563eb 0%, #0055ff 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 10px 28px rgba(37, 99, 235, 0.38);
}

.register-onboarding-page.ob-step-finish-active .ob-step.is-current .ob-step-label {
  color: #1d4ed8;
  font-weight: 700;
}

.register-onboarding-page.ob-step-finish-active .ob-step-line.is-done {
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.register-onboarding-page.ob-step-finish-active .ob-btn-next.is-cta-finish-access {
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  border-radius: 12px;
  height: 48px;
  padding: 0 26px;
  font-weight: 700;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.4),
    0 14px 32px rgba(0, 85, 255, 0.28);
}

.register-onboarding-page.ob-step-finish-active .ob-btn-next.is-cta-finish-access:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-2px);
}

.register-onboarding-page.ob-step-finish-active .ob-foot {
  background: linear-gradient(180deg, #fbfcff 0%, #f8fafc 100%);
}

.ob-header-finish-hint {
  margin: 0 0 4px;
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
  line-height: 1.3;
}

.ob-header-side--end {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.ob-screen-finish {
  padding: 32px 36px 8px;
}

.ob-split-finish {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.ob-success--final {
  position: relative;
  padding: 8px 0 12px;
}

.ob-success-celebration {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
}

.ob-success-spark {
  position: absolute;
  font-size: 14px;
  color: #93c5fd;
  animation: obSpark 2.5s ease-in-out infinite;
}

.ob-success-spark--1 { top: 0; left: 0; }
.ob-success-spark--2 { top: 8%; right: 0; animation-delay: 0.5s; }
.ob-success-spark--3 { bottom: 10%; left: 20%; animation-delay: 1s; }

.ob-success-icon--party {
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
  color: #2563eb;
  box-shadow:
    0 0 0 12px rgba(34, 197, 94, 0.12),
    0 12px 32px rgba(37, 99, 235, 0.2);
}

.ob-success--final h1 {
  margin: 0 0 6px;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ob-success-lead {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}

.ob-success-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.ob-finish-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(240, 253, 250, 0.9));
  border: 1px solid rgba(191, 219, 254, 0.65);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.ob-finish-highlight-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.ob-finish-highlight strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.ob-finish-highlight p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.ob-success--final .ob-finish-actions {
  margin-bottom: 14px;
}

.ob-btn-finish-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #0055ff 100%);
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 12px 28px rgba(0, 85, 255, 0.22);
}

.ob-btn-finish-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0044dd 100%);
  transform: translateY(-1px);
}

.ob-btn-finish-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ob-finish-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

.ob-finish-secure svg {
  color: #64748b;
  flex-shrink: 0;
}

.ob-aside-glass--finish {
  padding: 22px 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%, rgba(167, 243, 208, 0.15), transparent 55%),
    linear-gradient(165deg, #f8fafc 0%, #eef4ff 50%, #f5f3ff 100%);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.ob-finish-aside-lead {
  margin: 0 0 14px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.ob-finish-next-steps {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-finish-step-card {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ob-finish-step-card:hover {
  border-color: rgba(147, 197, 253, 0.8);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.ob-finish-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-finish-step-icon--team {
  color: #16a34a;
  background: linear-gradient(145deg, #ecfdf5, #bbf7d0);
}

.ob-finish-step-icon--calendar {
  color: #7c3aed;
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
}

.ob-finish-step-icon--bell {
  color: #ca8a04;
  background: linear-gradient(145deg, #fefce8, #fef08a);
}

.ob-finish-step-icon--chart {
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.ob-finish-step-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.ob-finish-step-card span {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

.ob-finish-step-arrow {
  font-size: 20px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1;
}

.ob-finish-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.9), rgba(245, 243, 255, 0.85));
  border: 1px solid rgba(199, 210, 254, 0.6);
}

.ob-finish-tip p {
  margin: 0;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
}

.ob-finish-tip strong {
  color: #334155;
}

@media (max-width: 960px) {
  .ob-screen-finish {
    padding: 28px 22px 8px;
  }

  .ob-split-finish {
    grid-template-columns: 1fr;
  }

  .ob-aside-finish {
    order: 2;
  }

  .ob-header-side--end {
    align-items: center;
  }

  .ob-header-finish-hint {
    text-align: center;
  }
}
