:root {
  --background: #0d0d14;
  --foreground: #f1f5f9;
  --card: rgba(22, 22, 34, 0.72);
  --card-strong: rgba(18, 18, 28, 0.82);
  --muted: rgba(226, 232, 240, 0.68);
  --muted-2: rgba(226, 232, 240, 0.52);
  --border: rgba(255, 255, 255, 0.08);
  --purple: #a855f7;
  --purple-2: #7c3aed;
  --cyan: #22d3ee;
  --cyan-2: #06b6d4;
  --amber: #fbbf24;
  --pink: #f472b6;
  --green: #4ade80;
  --blue: #60a5fa;
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 20%),
    radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.12), transparent 20%),
    linear-gradient(180deg, #090910 0%, #0d0f18 45%, #0f1320 100%);
  color: var(--foreground);
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.cadastro-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.cadastro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .52;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-purple { background: radial-gradient(circle, rgba(124,58,237,.85), rgba(124,58,237,.34) 45%, transparent 72%); }
.orb-cyan { background: radial-gradient(circle, rgba(34,211,238,.82), rgba(34,211,238,.26) 45%, transparent 72%); }
.orb-indigo { background: radial-gradient(circle, rgba(99,102,241,.76), rgba(99,102,241,.22) 45%, transparent 72%); }

.orb-xl { width: 42rem; height: 42rem; top: -12%; left: -10%; }
.orb-lg { width: 32rem; height: 32rem; }
.orb-md { width: 22rem; height: 22rem; }
.orb-left-top { left: -8%; top: -8%; }
.orb-right-top { right: -8%; top: -8%; left: auto; }
.orb-mid-right { right: 8%; top: 40%; left: auto; }
.orb-bottom-left { left: -10%; bottom: -14%; top: auto; }

@keyframes orbFloat {
  0%, 100% { transform: scale(1) translate3d(0,0,0); }
  50% { transform: scale(1.12) translate3d(18px,-30px,0); }
}

.cadastro-particle {
  position: absolute;
  border-radius: 50%;
  opacity: .34;
  animation: floatParticle 6s ease-in-out infinite;
}

.cadastro-particle:nth-child(even) { background: rgba(34,211,238,.45); }
.cadastro-particle:nth-child(odd) { background: rgba(168,85,247,.5); }

.p-1 { width: 4px; height: 4px; left: 8%; top: 15%; animation-delay: .3s; }
.p-2 { width: 2px; height: 2px; left: 17%; top: 34%; animation-delay: .8s; }
.p-3 { width: 2px; height: 2px; left: 26%; top: 54%; animation-delay: 1.2s; }
.p-4 { width: 4px; height: 4px; left: 35%; top: 75%; animation-delay: 1.6s; }
.p-5 { width: 2px; height: 2px; left: 53%; top: 24%; animation-delay: 2s; }
.p-6 { width: 2px; height: 2px; left: 67%; top: 47%; animation-delay: 2.4s; }
.p-7 { width: 4px; height: 4px; left: 79%; top: 67%; animation-delay: 2.8s; }
.p-8 { width: 2px; height: 2px; left: 89%; top: 20%; animation-delay: 3.2s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0,0); opacity: .25; }
  50% { transform: translate(10px, -22px); opacity: .78; }
}

.cadastro-page {
  min-height: 100vh;
  padding: 28px 20px 34px;
  position: relative;
  z-index: 1;
}

.cadastro-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.cadastro-title-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.cadastro-top-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .72rem 1.08rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #d8b4fe;
  background: rgba(25, 24, 39, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: 14px;
}

.pulse-dot {
  width: .46rem;
  height: .46rem;
  border-radius: 999px;
  background: #c084fc;
  box-shadow: 0 0 14px rgba(192, 132, 252, .8);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .55; }
}

.text-gradient-primary {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, var(--purple), var(--cyan));
}

.cadastro-title-wrap h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.cadastro-title-wrap p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.cadastro-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.cadastro-info-column {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.cadastro-glass-card {
  background: rgba(22, 22, 34, 0.62);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.hover-card {
  position: relative;
  overflow: hidden;
  transition:
    transform .72s cubic-bezier(.22, 1, .36, 1) .04s,
    border-color .55s ease .04s,
    box-shadow .72s cubic-bezier(.22, 1, .36, 1) .04s,
    background .72s cubic-bezier(.22, 1, .36, 1) .04s,
    filter .72s cubic-bezier(.22, 1, .36, 1) .04s;
}

.hover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.045) 50%,
    transparent 60%
  );
  transform: translateX(-150%);
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}

.hover-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.hover-card:hover::before {
  opacity: 1;
  animation: shimmer 1.7s linear infinite;
}

@keyframes shimmer {
  from { transform: translateX(-150%); }
  to { transform: translateX(200%); }
}

.cadastro-brand-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.025) 100%),
    linear-gradient(135deg, rgba(124,58,237,.62) 0%, rgba(34,211,238,.18) 100%),
    rgba(18, 18, 28, 0.70);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 40px rgba(0,0,0,.30),
    0 0 40px rgba(124,58,237,.18);
}

.cadastro-brand-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -20px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%);
  pointer-events: none;
}

.cadastro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #f8fafc;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.cadastro-brand-card h2 {
  margin: 14px 0 8px;
  font-size: 1.28rem;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
}

.cadastro-brand-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.68;
  color: rgba(241,245,249,.86);
}

.cadastro-info-stack {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%),
    linear-gradient(135deg, rgba(124,58,237,.42) 0%, rgba(34,211,238,.10) 100%),
    rgba(18, 18, 28, 0.62);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 40px rgba(0,0,0,.28),
    0 0 28px rgba(124,58,237,.10);
}

.cadastro-info-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
}

.cadastro-info-stack-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.14) 18%, rgba(255,255,255,.08) 82%, transparent 100%);
}

.cadastro-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  font-size: .92rem;
  color: #fff;
}

.cadastro-info-icon.icon-primary {
  background: linear-gradient(135deg, rgba(124,58,237,.32), rgba(192,132,252,.12));
  color: #d8b4fe;
}

.cadastro-info-icon.icon-success {
  background: linear-gradient(135deg, rgba(168,85,247,.28), rgba(244,114,182,.10));
  color: #f5d0fe;
}

.cadastro-info-icon.icon-warning {
  background: linear-gradient(135deg, rgba(6,182,212,.3), rgba(34,211,238,.12));
  color: #a5f3fc;
}

.cadastro-info-icon.icon-gold {
  background: linear-gradient(135deg, rgba(245,158,11,.3), rgba(251,191,36,.12));
  color: #fde68a;
}

.cadastro-info-stack-item h3 {
  margin: 0 0 5px;
  font-size: .96rem;
  line-height: 1.25;
  font-weight: 800;
  color: #f8fafc;
}

.cadastro-info-stack-item p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.cadastro-form-column {
  min-width: 0;
}

.cadastro-alert {
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.alert-danger.cadastro-alert {
  background: rgba(120, 28, 28, .28);
  color: #fecaca;
}

.alert-success.cadastro-alert {
  background: rgba(20, 83, 45, .28);
  color: #bbf7d0;
}

.cadastro-form {
  display: grid;
  gap: 22px;
}

.cadastro-step-card {
  position: relative;
  padding: 24px 24px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.028) 100%),
    linear-gradient(135deg, rgba(124,58,237,.11) 0%, rgba(34,211,238,.05) 100%),
    rgba(15, 17, 27, 0.56);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 18px 38px rgba(0,0,0,.28),
    0 0 0 1px rgba(124,58,237,.12),
    0 0 28px rgba(124,58,237,.10);
}

.cadastro-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,92,246,.60), rgba(34,211,238,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--cyan-2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 800;
  flex: 0 0 44px;
  box-shadow: 0 0 20px rgba(124,58,237,.28);
}

.step-header-text h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #f8fafc;
}

.step-header-text p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.section-mini-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.section-mini-title-spacing {
  margin-top: 28px;
}

.section-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,.12);
  color: #c084fc;
  font-size: .84rem;
  flex: 0 0 34px;
}

.section-mini-title h4 {
  margin: 0;
  font-size: .94rem;
  line-height: 1.2;
  font-weight: 800;
  color: #f8fafc;
}

.section-mini-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.form-label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(241,245,249,.88);
  margin-bottom: 7px;
}

.form-control-modern,
.form-control {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.07);
  color: #f8fafc;
  padding: 12px 14px;
  font-size: .9rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 6px 18px rgba(0,0,0,.10);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .18s ease;
}

.form-control-modern::placeholder,
.form-control::placeholder {
  color: rgba(226,232,240,.52);
  font-size: .88rem;
}

.form-control-modern:focus,
.form-control:focus {
  background: rgba(255,255,255,.11);
  color: #fff;
  border-color: rgba(124,58,237,.55);
  box-shadow:
    0 0 0 4px rgba(124,58,237,.14),
    0 0 24px rgba(124,58,237,.10),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-1px);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.8);
}

.instrumento-family-block + .instrumento-family-block {
  margin-top: 28px;
}

.family-divider {
  position: relative;
  margin-bottom: 16px;
  padding-top: 4px;
}

.family-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.08);
  transform: translateY(-50%);
}

.family-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.family-cordas {
  background: rgba(251,191,36,.16);
  color: #fde68a;
}

.family-madeiras {
  background: rgba(34,197,94,.16);
  color: #bbf7d0;
}

.family-metais {
  background: rgba(124,58,237,.16);
  color: #e9d5ff;
}

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

.instrumento-card {
  display: block;
  cursor: pointer;
}

.instrumento-card input {
  display: none;
}

.instrumento-card-body {
  position: relative;
  height: 100%;
  background: rgba(22, 22, 34, 0.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.instrumento-card-outline {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow .28s ease;
  z-index: 3;
}

.instrumento-card:hover .instrumento-card-body {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.34);
  border-color: rgba(124,58,237,.35);
}

.instrumento-card input:checked + .instrumento-card-body {
  transform: translateY(-7px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(124,58,237,.08) 100%),
    rgba(22, 22, 34, 0.88);
  box-shadow:
    0 0 0 5px rgba(124,58,237,.18),
    0 22px 42px rgba(124,58,237,.20);
}

.instrumento-card input:checked + .instrumento-card-body .instrumento-card-outline {
  box-shadow: inset 0 0 0 2px #8b5cf6;
}

.instrumento-card input:checked + .instrumento-card-body .instrumento-info {
  background: linear-gradient(180deg, rgba(124,58,237,.05) 0%, rgba(124,58,237,.12) 100%);
}

.instrumento-card input:checked + .instrumento-card-body .instrumento-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(44, 17, 125, 0.88) 100%);
}

.instrumento-image-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
}

.instrumento-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.instrumento-card:hover .instrumento-image-wrap img {
  transform: scale(1.06);
}

.instrumento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.76) 100%);
  transition: background .28s ease;
  z-index: 2;
}

.instrumento-overlay h4 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.instrumento-info {
  padding: 12px 13px 14px;
  transition: background .28s ease;
}

.instrumento-info p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.material-premium-card {
  border-radius: 24px;
  border: 1px solid rgba(124,58,237,.45);
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.018) 100%),
    rgba(18, 18, 28, 0.64);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 40px rgba(124,58,237,.10);
}

.material-premium-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.material-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #6f4cff 0%, #9b4ddb 100%);
  box-shadow: 0 14px 26px rgba(111, 76, 255, 0.22);
  flex: 0 0 50px;
}

.material-main-info {
  min-width: 0;
}

.material-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.material-title-row h4 {
  margin: 0;
  font-size: .94rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.material-main-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.material-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.14);
  color: #d8b4fe;
  font-size: .7rem;
  font-weight: 800;
}

.material-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 8px 0 16px;
  flex-wrap: wrap;
}

.material-price-wrap strong {
  font-size: clamp(1.85rem, 2.2vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.05em;
}

.material-price-wrap span {
  font-size: 1.3rem;
  line-height: 1.1;
  color: rgba(241,245,249,.86);
}

.material-price-wrap small {
  font-size: .84rem;
  color: var(--muted);
  margin-left: 6px;
  margin-bottom: 5px;
}

.material-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 20px;
}

.material-benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(241,245,249,.86);
  font-size: .84rem;
}

.material-benefit-item i {
  color: #c084fc;
  font-size: .88rem;
}

.material-actions-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.material-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(241,245,249,.78);
  font-size: .9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.material-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.material-btn-yes.selected {
  background: linear-gradient(135deg, #6f4cff 0%, #8f4ddc 100%);
  border-color: rgba(111, 76, 255, 0.7);
  color: #fff;
  box-shadow: 0 14px 28px rgba(111, 76, 255, 0.28);
}

.material-btn-no.selected {
  background: rgba(20, 24, 40, 0.85);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.material-btn-no {
  background: rgba(255,255,255,.04);
}

.cadastro-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.cadastro-submit-btn {
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--purple-2), var(--cyan-2));
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.22), 0 0 60px rgba(34, 211, 238, 0.08);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.cadastro-submit-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.cadastro-submit-btn:focus {
  color: #fff;
  box-shadow: 0 0 0 4px rgba(124,58,237,.16), 0 18px 32px rgba(111, 76, 255, 0.24);
}

@media (max-width: 1300px) {
  .cadastro-grid {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
  }

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

@media (max-width: 991.98px) {
  .cadastro-page {
    padding: 22px 16px 28px;
  }

  .cadastro-grid {
    grid-template-columns: 1fr;
  }

  .cadastro-info-column {
    position: static;
    order: 1;
  }

  .cadastro-form-column {
    order: 2;
  }

  .cadastro-step-card {
    padding: 22px 18px 22px;
  }

  .step-header-text h3 {
    font-size: 1rem;
  }

  .section-mini-title h4 {
    font-size: .9rem;
  }
}

@media (max-width: 767.98px) {
  .cadastro-title-wrap {
    margin-bottom: 18px;
  }

  .cadastro-title-wrap h1 {
    font-size: 1.4rem;
  }

  .cadastro-title-wrap p {
    font-size: .86rem;
  }

  .cadastro-brand-card h2 {
    font-size: 1.16rem;
  }

  .cadastro-brand-card p {
    font-size: .84rem;
  }

  .cadastro-step-card {
    padding: 18px 14px 20px;
    border-radius: 20px;
  }

  .step-header {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: .92rem;
    flex-basis: 38px;
  }

  .step-header-text h3 {
    font-size: .95rem;
  }

  .step-header-text p,
  .section-mini-title p {
    font-size: .82rem;
  }

  .section-mini-title h4 {
    font-size: .88rem;
  }

  .instrumentos-grid {
    grid-template-columns: 1fr;
  }

  .instrumento-image-wrap {
    height: 180px;
  }

  .material-premium-top {
    align-items: flex-start;
  }

  .material-title-row h4 {
    font-size: .9rem;
  }

  .material-benefits {
    grid-template-columns: 1fr;
  }

  .material-actions-centered {
    flex-direction: column;
    width: 100%;
  }

  .material-btn {
    width: 100%;
  }

  .cadastro-submit-wrap {
    justify-content: stretch;
  }

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

@media (max-width: 575.98px) {
  .cadastro-page {
    padding-inline: 12px;
  }

  .cadastro-title-wrap h1 {
    font-size: 1.28rem;
  }

  .cadastro-info-stack-item {
    padding: 14px 12px;
  }

  .cadastro-info-stack-item h3 {
    font-size: .9rem;
  }

  .cadastro-info-stack-item p {
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-control-modern,
  .form-control {
    min-height: 48px;
    font-size: .86rem;
  }

  .material-price-wrap strong {
    font-size: 1.7rem;
  }

  .material-price-wrap span {
    font-size: 1.18rem;
  }

  .material-price-wrap small {
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    font-size: .8rem;
  }

  .material-option-content,
  .material-btn {
    font-size: .86rem;
  }
}

/* =========================
   SUCESSO CADASTRO
========================= */

.sucesso-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 34px;
  position: relative;
  z-index: 1;
}

.sucesso-shell {
  width: min(760px, 100%);
  margin: 0 auto;
}

.sucesso-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.028) 100%),
    linear-gradient(135deg, rgba(124,58,237,.11) 0%, rgba(34,211,238,.05) 100%),
    rgba(15, 17, 27, 0.56);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 18px 38px rgba(0,0,0,.28),
    0 0 0 1px rgba(124,58,237,.12),
    0 0 28px rgba(124,58,237,.10);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-radius: 26px;
}

.sucesso-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,92,246,.60), rgba(34,211,238,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}

.sucesso-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.sucesso-icon {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.85));
  color: #fff;
  font-size: 2.2rem;
  box-shadow:
    0 0 24px rgba(124,58,237,.25),
    0 0 60px rgba(34,211,238,.10);
}

.sucesso-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .72rem 1.08rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #d8b4fe;
  background: rgba(25, 24, 39, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: 18px;
}

.sucesso-card h1 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  line-height: 1.08;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.sucesso-lead {
  margin: 0 0 10px;
  color: rgba(241,245,249,.92);
  font-size: 1rem;
  line-height: 1.7;
}

.sucesso-text {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
}

.sucesso-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.sucesso-btn-primary {
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--purple-2), var(--cyan-2));
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 0 24px rgba(168, 85, 247, 0.22),
    0 0 60px rgba(34, 211, 238, 0.08);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.sucesso-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.sucesso-footer-note {
  margin-top: 18px;
  color: rgba(226,232,240,.62);
  font-size: .82rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .sucesso-page {
    padding: 20px 14px 26px;
  }

  .sucesso-card {
    padding: 30px 18px 24px;
    border-radius: 22px;
  }

  .sucesso-icon {
    width: 74px;
    height: 74px;
    font-size: 1.9rem;
  }

  .sucesso-card h1 {
    font-size: 1.55rem;
  }

  .sucesso-lead {
    font-size: .92rem;
  }

  .sucesso-text {
    font-size: .86rem;
  }

  .sucesso-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .sucesso-actions {
    display: block;
  }
}

.cadastro-field-help{
  display:block;
  margin-top:6px;
  font-size:.78rem;
  color: rgba(226, 232, 240, 0.62);
  line-height:1.5;
}

.input-password-wrap{
  position: relative;
}

.toggle-password{
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(226,232,240,.6);
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
}

.toggle-password:hover{
  color: #c084fc;
  transform: translateY(-50%) scale(1.1);
}

.input-password-wrap input{
  padding-right: 42px !important;
}