@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: #f7f8fc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  background: #fff;
  padding: 0 5%;
}
nav .nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
  width: 135px;
}
nav .nav-back {
  color: #FF6B00;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .nav-back:hover {
  transform: translateX(-3px);
}

.page-wrap {
  box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.08);
  background-color: #fff2e9;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 5% 60px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.09);
  width: 100%;
  max-width: 680px;
  overflow: hidden;
}

.progress-bar {
  background: rgba(255, 112, 41, 0.8392156863);
  padding: 28px 32px 20px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: #ffede0;
  z-index: 0;
}

.step-track {
  position: absolute;
  top: 18px;
  left: 18px;
  height: 3px;
  background: #FF6B00;
  z-index: 1;
  transition: 0.4s;
  border-radius: 2px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
  cursor: default;
}
.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ffede0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #888;
  transition: 0.3s;
}
.step-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffede0;
  white-space: nowrap;
}
.step.active .step-dot {
  border-color: #c01313;
  color: #c01313;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
.step.active .step-label {
  color: #c01313;
}
.step.done .step-dot {
  background: #FF6B00;
  border-color: #FF6B00;
  color: #fff;
}
.step.done .step-dot img {
  width: 25px;
}
.step.done .step-label {
  color: #ffede0;
}

.form-body {
  padding: 32px;
}

.step-panel {
  display: none;
}
.step-panel.visible {
  display: block;
}

.step-title {
  display: flex;
  gap: 10px;
  font-size: 25px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.step-title img {
  width: 30px;
}

.step-sub {
  font-size: 18px;
  color: #888;
  margin-bottom: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field-row.full {
  grid-template-columns: 1fr;
}
.field-row.third {
  grid-template-columns: 1fr 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.field label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
}
.field label span {
  color: #e74c3c;
}
.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 2px solid #ffede0;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  color: #1a1a2e;
  transition: 0.2s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #e74c3c;
}
.field input.ok,
.field select.ok,
.field textarea.ok {
  border-color: #27ae60;
}
.field-hint {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}
.field-err {
  font-size: 14px;
  color: #e74c3c;
  margin-top: 2px;
  display: none;
}
.field-err.show {
  display: block;
}
.field-ok {
  font-size: 14px;
  color: #27ae60;
  margin-top: 2px;
  display: none;
}
.field-ok.show {
  display: block;
}

.slug-wrap {
  display: flex;
  border: 2px solid #ffede0;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}
.slug-wrap:focus-within {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.slug-wrap.error {
  border-color: #e74c3c;
}
.slug-wrap.ok {
  border-color: #27ae60;
}
.slug-wrap.checking {
  border-color: #aaa;
}
.slug-wrap .slug-prefix,
.slug-wrap .slug-suffix {
  padding: 11px 12px;
  font-size: 14px;
  color: #888;
  font-weight: 600;
  white-space: nowrap;
}
.slug-wrap .slug-prefix {
  border-right: 2px solid #ffede0;
}
.slug-wrap .slug-suffix {
  border-left: 2px solid #ffede0;
}
.slug-wrap .slug-input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 11px 12px !important;
  flex: 1;
}
.slug-wrap .slug-input:focus {
  outline: none;
}

.color-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-preview {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid #ffede0;
  cursor: pointer;
  transition: 0.2s;
}

.color-input {
  padding: 11px 14px;
  border: 2px solid #ffede0;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  flex: 1;
  outline: none;
  transition: 0.2s;
}
.color-input:focus {
  border-color: #FF6B00;
}

input[type=color] {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.upload-area {
  border: 2px dashed #ffede0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}
.upload-area:hover {
  border-color: #FF6B00;
  background: rgba(255, 107, 0, 0.03);
}
.upload-area input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.upload-area .upload-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.upload-area .upload-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
}
.upload-area .upload-sub {
  font-size: 0.72rem;
  color: #bbb;
}

.upload-preview {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: none;
  margin: 0 auto 8px;
}

.pass-wrap {
  position: relative;
}
.pass-wrap input {
  width: 100%;
  padding-right: 42px;
}

.pass-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
  color: #888;
}

.pass-strength {
  height: 4px;
  border-radius: 2px;
  margin-top: 6px;
  background: #ffede0;
  overflow: hidden;
}

.pass-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: 0.3s;
}

.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}

.btn-next {
  background: #FF6B00;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}
.btn-next:hover {
  background: #e05e00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-prev {
  background: transparent;
  color: #FF6B00;
  border: 2px solid #ffede0;
  padding: 10px 15px;
  border-radius: 25px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}
.btn-prev:hover {
  border-color: #FF6B00;
  color: #FF6B00;
}

.success-panel {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.success-panel.visible {
  display: block;
}
.success-panel .success-icon {
  padding-left: 82px;
}

.success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.success-sub {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.btn-wa:hover {
  background: #1da854;
  transform: translateY(-1px);
}
.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.section-div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 20px;
}
.section-div span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FF6B00;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-div::before, .section-div::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ffede0;
}

@media (max-width: 600px) {
  .field-row,
  .field-row.third {
    grid-template-columns: 1fr;
  }
  .form-body {
    padding: 24px 20px;
  }
  .progress-bar {
    padding: 20px;
  }
  .step-label {
    display: none;
  }
  .btn-row {
    flex-direction: column-reverse;
  }
  .btn-next,
  .btn-prev {
    width: 100%;
    justify-content: center;
  }
  .slug-wrap {
    display: block;
  }
  .slug-wrap .slug-prefix,
  .slug-wrap .slug-suffix {
    padding: 11px 12px;
    font-size: 14px;
    border-radius: 0px;
    border: 0;
  }
  .slug-wrap .slug-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 11px 12px !important;
    flex: 1;
    width: 100%;
  }
  .form-card .form-body {
    padding: 20px 10px 20px 10px;
  }
  .form-card .form-body .step-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-card .form-body .step-sub {
    text-align: center;
  }
  .success-panel {
    padding: 0px;
  }
  .success-panel .btn-wa {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.conf0 {
  fill: #FC6394;
}

.conf1 {
  fill: #EF3C8A;
}

.conf2 {
  fill: #5ADAEA;
}

.conf3 {
  fill: #974CBE;
}

.conf4 {
  fill: #3CBECD;
}

.conf5 {
  fill: #813BBE;
}

.conf6 {
  fill: #F9B732;
}

.conf7 {
  display: none;
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
}

.conf8 {
  fill: none;
  stroke: #F9B732;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.confetti-cone {
  transform-origin: 200px 50px;
  animation: confetti-cone1 1.2s ease infinite;
}

@keyframes confetti-cone1 {
  0% {
    transform: translate(40px, 95px) rotate(45deg) scale(1, 1);
  }
  15% {
    transform: translate(10px, 145px) rotate(45deg) scale(1.1, 0.85);
  }
  100% {
    transform: translate(40px, 105px) rotate(45deg) scale(1, 1);
  }
}
#yellow-strip {
  fill: none;
  stroke: #F9B732;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  animation: confdash 1.2s ease infinite;
}

@keyframes confdash {
  0% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 500;
    transform: translate(-30px, 30px);
    opacity: 0;
  }
  2% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 500;
    transform: translate(-30px, 30px);
    opacity: 0;
  }
  35% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 900;
    transform: translate(-2px, 0px);
    opacity: 1;
  }
  85% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transform: translate(1px, -5px);
    opacity: 1;
  }
  90% {
    stroke-dashoffset: 1000;
    stroke-dashoffset: 1000;
    transform: translate(2px, -8px);
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 1000;
    stroke-dashoffset: 500;
    transform: translate(2px, -8px);
    opacity: 0;
  }
}
#a2 {
  transform-origin: 310.9px 241px;
  animation: confa 1.2s ease-out infinite;
}

#a1 {
  transform-origin: 276px 246px;
  animation: confa 1.2s ease-out infinite;
}

@keyframes confa {
  0% {
    opacity: 0;
    transform: translate(-30px, 20px) rotate(0);
  }
  15% {
    opacity: 1;
    transform: translate(25px, -10px) rotate(60deg);
  }
  80% {
    opacity: 1;
    transform: translate(33px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(37px, -23px) scale(0.5) rotate(230deg);
  }
}
#b1 {
  transform-origin: 195.2px 232.6px;
  animation: confb 1.2s ease-out infinite;
}

#b2 {
  transform-origin: 230.8px 219.8px;
  animation: confb 1.2s ease-out infinite;
}

#b3 {
  transform-origin: 222.8px 190.6px;
  animation: confb 1.2s ease-out infinite;
}

#b4 {
  transform-origin: 262px 188.5px;
  animation: confb 1.2s ease-out infinite;
}

#b5 {
  transform-origin: 282.3px 170.6px;
  animation: confb 1.2s ease-out infinite;
}

@keyframes confb {
  0% {
    opacity: 0;
    transform: translate(-30px, 20px) rotate(0);
  }
  12% {
    opacity: 1;
    transform: translate(25px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(33px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(37px, -23px) scale(0.5) rotate(240deg);
  }
}
#c1 {
  transform-origin: 174.8px 183.4px;
  animation: confc 1.2s ease-out infinite;
}

#c2 {
  transform-origin: 178.9px 156.2px;
  animation: confc 1.2s ease-out infinite;
}

#c3 {
  transform-origin: 206.7px 140px;
  animation: confc 1.2s ease-out infinite;
}

#c4 {
  transform-origin: 213.5px 120.2px;
  animation: confc 1.2s ease-out infinite;
}

@keyframes confc {
  0% {
    opacity: 0.7;
    transform: translate(-30px, 20px) rotate(0);
  }
  18% {
    opacity: 1;
    transform: translate(5px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(13px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(17px, -23px) scale(0.5) rotate(230deg);
  }
}
#d1 {
  transform-origin: 127px 176px;
  animation: confd 1.2s ease-out infinite;
}

#d2 {
  transform-origin: 133px 118px;
  animation: confd 1.2s ease-out infinite;
}

#d3 {
  transform-origin: 152px 100px;
  animation: confd 1.2s ease-out infinite;
}

@keyframes confd {
  0% {
    opacity: 0.7;
    transform: translate(-20px, 20px) rotate(0);
  }
  18% {
    opacity: 1;
    transform: translate(-5px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(-8px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -23px) scale(0.5) rotate(230deg);
  }
}/*# sourceMappingURL=cadastro.css.map */