.page-auth {
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-viewport {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 28px 16px;
  overflow-y: auto;
}

.auth-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--brand);
  filter: blur(0.1px);
  opacity: 1;
  z-index: 0;
}

.bubble-a {
  width: 320px;
  height: 320px;
  left: -70px;
  top: 190px;
}

.bubble-b {
  width: 290px;
  height: 290px;
  right: 130px;
  top: -70px;
}

.bubble-c {
  width: 84px;
  height: 84px;
  left: 160px;
  top: 18px;
}

.bubble-d {
  width: 98px;
  height: 98px;
  right: 96px;
  top: 250px;
}

.bubble-e {
  width: 330px;
  height: 330px;
  right: 70px;
  bottom: -120px;
}

.auth-card {
  width: min(100%, 430px);
  padding: 28px 30px 22px;
  position: relative;
  z-index: 2;
  border-radius: 24px;
}

.auth-brand {
  margin: 0;
  text-align: center;
  font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.auth-subtitle {
  margin: 4px 0 22px;
  text-align: center;
  color: #8d837e;
  font-size: 0.9rem;
}

.auth-supporting-copy {
  margin: -10px 0 22px;
  text-align: center;
  color: #5f5651;
  font-size: 0.92rem;
  line-height: 1.55;
}

.auth-error {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #f0b0a5;
  background: #fff0ed;
  color: #8a2f22;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 12px;
}

.auth-success {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #b8e4be;
  background: #eefcf1;
  color: #1f6c2e;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 12px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mini-link {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-link:hover {
  text-decoration: underline;
}

.field-icon-wrap {
  position: relative;
}

.field-icon,
.field-icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #8f8178;
  font-size: 0.88rem;
}

.field-icon {
  left: 12px;
}

.field-icon-right {
  right: 12px;
}

.field-icon-toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.field-icon-toggle:focus-visible {
  outline: 2px solid var(--ores-secondary);
  outline-offset: -2px;
  border-radius: 8px;
}

.field-icon-wrap .input-control {
  padding-left: 36px;
  padding-right: 36px;
}

.auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.auth-action-btn {
  min-height: 48px;
  box-shadow: 0 10px 18px rgba(53, 31, 21, 0.1);
}

.auth-action-btn:focus-visible {
  outline: 3px solid rgba(28, 93, 133, 0.22);
  outline-offset: 2px;
}

.btn-accent {
  color: #fff;
  background: #1f7a63;
}

.btn-accent:hover {
  background: #176955;
}

@media (max-width: 700px) {
  .auth-viewport {
    place-items: start center;
    padding: 18px 14px 30px;
  }

  .auth-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .bubble-a {
    width: 200px;
    height: 200px;
    left: -80px;
    top: 220px;
  }

  .bubble-b {
    width: 190px;
    height: 190px;
    right: -50px;
    top: -40px;
  }

  .bubble-c,
  .bubble-d {
    display: none;
  }

  .bubble-e {
    width: 210px;
    height: 210px;
    right: -70px;
    bottom: -70px;
  }
}

.page-auth-cadastro {
  background: #fcfaf6;
}

.page-auth-cadastro .auth-viewport {
  place-items: center;
  padding: 34px 16px 40px;
}

.page-auth-cadastro .auth-bubble {
  opacity: 1;
  filter: none;
}

.page-auth-cadastro .bubble-a {
  width: 258px;
  height: 258px;
  left: -146px;
  top: 34px;
  background: #edf1ec;
}

.page-auth-cadastro .bubble-b {
  width: 134px;
  height: 134px;
  right: 168px;
  top: 378px;
  background: #eef0f6;
}

.page-auth-cadastro .bubble-c {
  width: 86px;
  height: 86px;
  left: 148px;
  top: 610px;
  background: #f7ece3;
}

.page-auth-cadastro .bubble-d {
  width: 68px;
  height: 68px;
  right: 110px;
  top: 120px;
  background: #f5efe8;
}

.page-auth-cadastro .bubble-e {
  width: 192px;
  height: 192px;
  right: 62px;
  bottom: 96px;
  background: #faefe6;
}

.cadastro-shell {
  width: min(100%, 980px);
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-inline: auto;
}

.cadastro-hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  margin-top: 6px;
}

.cadastro-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ee;
  color: #2f855b;
  font-size: 1.45rem;
  box-shadow: 0 10px 24px rgba(47, 133, 91, 0.08);
}

.cadastro-hero-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 700;
  color: #272937;
}

.cadastro-hero-subtitle {
  margin: -4px 0 0;
  font-size: 1rem;
  color: #7d8597;
}

.cadastro-progress {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cadastro-progress-item {
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: #ece8e2;
  transition: width 0.18s ease, background-color 0.18s ease;
}

.cadastro-progress-item.is-active {
  width: 28px;
  background: #3e8c64;
}

.cadastro-flash {
  width: min(100%, 520px);
  margin: 0;
}

.cadastro-flow {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cadastro-card,
.cadastro-form-shell {
  width: min(100%, 520px);
  margin-inline: auto;
}

.cadastro-choice-card,
.cadastro-form-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 1px solid #ded8d1;
  box-shadow: 0 18px 40px rgba(63, 49, 40, 0.1);
}

.cadastro-form-card {
  display: none;
}

.cadastro-form-card.is-active {
  display: block;
}

.cadastro-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(224, 214, 205, 0.8);
}

.cadastro-card-head.theme-family {
  background: linear-gradient(180deg, #fff7f0 0%, #fff4ea 100%);
}

.cadastro-card-head.theme-volunteer {
  background: linear-gradient(180deg, #f5fbf7 0%, #edf7f0 100%);
}

.cadastro-card-head.theme-public {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf2fb 100%);
}

.cadastro-card-head-plain {
  display: block;
  padding: 26px 26px 12px;
  border-bottom: 0;
}

.cadastro-card-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #2b2d38;
}

.cadastro-card-head p {
  margin: 4px 0 0;
  color: #7b7f8d;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cadastro-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.theme-family .cadastro-card-icon,
.theme-family .cadastro-choice-icon {
  color: #e67d2f;
}

.theme-volunteer .cadastro-card-icon,
.theme-volunteer .cadastro-choice-icon {
  color: #2e8b60;
}

.theme-public .cadastro-card-icon,
.theme-public .cadastro-choice-icon {
  color: #3a67bb;
}

.cadastro-back-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #687086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.cadastro-back-btn:hover {
  background: rgba(104, 112, 134, 0.08);
  color: #2b2d38;
}

.cadastro-card-body {
  padding: 18px 18px 20px;
}

.cadastro-choice-list {
  display: grid;
  gap: 12px;
  padding: 10px 24px 24px;
}

.cadastro-choice-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4ddd5;
  text-align: left;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cadastro-choice-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(86, 56, 43, 0.08);
}

.cadastro-choice-option.theme-family {
  border-color: #f0c8ad;
}

.cadastro-choice-option.theme-volunteer {
  border-color: #bedecd;
}

.cadastro-choice-option.theme-public {
  border-color: #c8d6f2;
}

.cadastro-choice-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f4ef;
  font-size: 1.45rem;
}

.cadastro-choice-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cadastro-choice-copy strong {
  font-size: 1.05rem;
  color: #2c2f3b;
}

.cadastro-choice-copy small {
  color: #6f7688;
  font-size: 0.97rem;
  line-height: 1.45;
}

.cadastro-choice-arrow {
  color: #b9beca;
  font-size: 0.95rem;
}

.cadastro-field-grid {
  display: grid;
  gap: 14px;
}

.cadastro-field .input-label {
  margin-bottom: 8px;
  color: #303341;
  font-size: 0.9rem;
  font-weight: 700;
}

.cadastro-required {
  color: #ef8f58;
  margin-left: 3px;
}

.cadastro-input {
  min-height: 52px;
  padding: 13px 14px;
  border-radius: 14px;
  border-color: #ded5cc;
  background: #fffefb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cadastro-input:focus {
  border-color: #d6a38d;
  box-shadow: 0 0 0 4px rgba(214, 163, 141, 0.14);
}

.cadastro-actions,
.cadastro-submit-block {
  margin-top: 18px;
}

.cadastro-submit-btn {
  min-height: 54px;
  border-radius: 14px;
  background: #3d8b62;
  box-shadow: 0 12px 24px rgba(61, 139, 98, 0.18);
}

.cadastro-submit-btn:hover {
  background: #337652;
}

.cadastro-submit-copy {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #6f7688;
}

.cadastro-access-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #dde6de;
  background: #f6faf7;
  color: #50606b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cadastro-access-note i {
  color: #3d8b62;
  font-size: 1rem;
}

.cadastro-secure-upload-block {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dde6de;
  background:
    radial-gradient(circle at top right, rgba(61, 139, 98, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdfb 0%, #f5f8f5 100%);
}

.cadastro-secure-upload-head {
  display: grid;
  gap: 6px;
}

.cadastro-secure-upload-head h3 {
  margin: 0;
  color: #2e3a33;
  font-size: 1rem;
}

.cadastro-secure-upload-head p {
  margin: 0;
  color: #64707d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cadastro-secure-upload-copy {
  display: block;
  margin-top: 8px;
  color: #6f7688;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cadastro-secure-upload-summary {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e3ddd5;
  background: #fffefb;
}

.cadastro-secure-upload-summary strong {
  color: #303341;
  font-size: 0.86rem;
}

.cadastro-secure-upload-summary span {
  color: #6f7688;
  font-size: 0.8rem;
}

.cadastro-secure-upload-summary-photo {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.cadastro-secure-upload-summary-body {
  display: grid;
  gap: 4px;
}

.cadastro-secure-upload-preview {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #ddd7cf;
  background: #f4efe9;
}

.page-auth-cadastro .field-icon-wrap .input-control {
  padding-left: 14px;
  padding-right: 44px;
}

.cadastro-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6f7688;
  font-size: 0.95rem;
}

.cadastro-footer-link a {
  color: #3d8b62;
  font-weight: 700;
  text-decoration: none;
}

.cadastro-footer-link a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .page-auth-cadastro .auth-viewport {
    place-items: start center;
    padding: 22px 14px 36px;
  }

  .page-auth-cadastro .bubble-a {
    width: 180px;
    height: 180px;
    left: -96px;
    top: 12px;
  }

  .page-auth-cadastro .bubble-b {
    width: 96px;
    height: 96px;
    right: -24px;
    top: 360px;
  }

  .page-auth-cadastro .bubble-c,
  .page-auth-cadastro .bubble-d {
    display: none;
  }

  .page-auth-cadastro .bubble-e {
    width: 152px;
    height: 152px;
    right: -48px;
    bottom: 34px;
  }

  .cadastro-card-head,
  .cadastro-card-head-plain,
  .cadastro-card-body,
  .cadastro-choice-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cadastro-card-head h2 {
    font-size: 1.3rem;
  }

  .cadastro-choice-option {
    gap: 12px;
    padding: 16px 14px;
  }

  .cadastro-choice-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .cadastro-choice-copy small,
  .cadastro-card-head p,
  .cadastro-submit-copy,
  .cadastro-access-note {
    font-size: 0.9rem;
  }

  .cadastro-secure-upload-summary-photo {
    grid-template-columns: 1fr;
  }

  .cadastro-secure-upload-preview {
    width: 100%;
    max-width: 160px;
    height: 160px;
  }
}
.cadastro-hero-journey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 250, 246, 0.98), rgba(233, 245, 237, 0.96));
  color: #2f7e59;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(47, 126, 89, 0.1);
}

.cadastro-form-shell-volunteer {
  width: min(100%, 980px);
}

.cadastro-volunteer-wizard {
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(215, 224, 217, 0.95);
  background:
    radial-gradient(circle at top right, rgba(61, 139, 98, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(230, 143, 88, 0.09), transparent 26%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 50px rgba(63, 49, 40, 0.14);
}

.cadastro-wizard-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cadastro-wizard-hero-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cadastro-wizard-choice-back {
  margin-top: 2px;
  background: rgba(104, 112, 134, 0.08);
}

.cadastro-wizard-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(61, 139, 98, 0.1);
  color: #2f7e59;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cadastro-wizard-hero h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  color: #253238;
}

.cadastro-wizard-hero p {
  margin: 8px 0 0;
  max-width: 700px;
  color: #66717d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.cadastro-wizard-meta {
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 225, 216, 0.9);
  background: linear-gradient(180deg, rgba(248, 252, 249, 0.96), rgba(241, 247, 243, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cadastro-wizard-counter {
  color: #6f7a86;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cadastro-wizard-meta-title {
  color: #27343a;
  font-size: 1.04rem;
}

.cadastro-wizard-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-padding-inline: 12px;
}

.cadastro-wizard-nav::-webkit-scrollbar {
  height: 8px;
}

.cadastro-wizard-nav::-webkit-scrollbar-thumb {
  background: rgba(125, 111, 104, 0.28);
  border-radius: 999px;
}

.cadastro-wizard-step {
  position: relative;
  flex: 0 0 228px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(222, 229, 223, 0.95);
  background: rgba(255, 255, 255, 0.88);
  color: #697582;
  text-align: left;
  font: inherit;
  appearance: none;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease;
}

.cadastro-wizard-step:hover {
  transform: translateY(-1px);
  border-color: rgba(202, 214, 206, 0.98);
  box-shadow: 0 16px 30px rgba(63, 49, 40, 0.08);
}

.cadastro-wizard-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff6f1 0%, #eef7f1 100%);
  color: #d06f48;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cadastro-wizard-step-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cadastro-wizard-step-copy strong {
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.1;
}

.cadastro-wizard-step-copy small {
  color: #7a8793;
  font-size: 0.75rem;
  line-height: 1.4;
}

.cadastro-wizard-step.is-current {
  border-color: rgba(208, 111, 72, 0.34);
  background: linear-gradient(135deg, rgba(255, 249, 244, 0.98), rgba(255, 238, 229, 0.94));
  color: #914b31;
  box-shadow: 0 18px 30px rgba(208, 111, 72, 0.14);
}

.cadastro-wizard-step.is-current .cadastro-wizard-step-badge {
  background: linear-gradient(135deg, #d06f48 0%, #ea9160 100%);
  color: #fff;
}

.cadastro-wizard-step.is-complete {
  border-color: rgba(96, 170, 133, 0.36);
  background: linear-gradient(135deg, rgba(244, 255, 249, 0.98), rgba(231, 247, 238, 0.94));
  color: #246c4d;
}

.cadastro-wizard-step.is-complete .cadastro-wizard-step-badge {
  background: linear-gradient(135deg, #2f7e59 0%, #48a979 100%);
  color: #fff;
}

.cadastro-wizard-progress {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(224, 219, 213, 0.65), rgba(242, 239, 235, 0.92));
  box-shadow: inset 0 1px 2px rgba(59, 31, 22, 0.08);
}

.cadastro-wizard-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7e59 0%, #4ca978 52%, #e38a59 100%);
  box-shadow: 0 10px 20px rgba(47, 126, 89, 0.24);
  transition: width 0.24s ease;
}

.cadastro-wizard-panels {
  position: relative;
}

.cadastro-wizard-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(220, 228, 222, 0.92);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(63, 49, 40, 0.08);
}

.cadastro-wizard-panel[hidden] {
  display: none;
}

.cadastro-wizard-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cadastro-wizard-panel-head h3 {
  margin: 0;
  color: #28353b;
  font-size: 1.16rem;
}

.cadastro-wizard-panel-head p {
  margin: 6px 0 0;
  max-width: 760px;
  color: #6e7a87;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cadastro-wizard-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(227, 138, 89, 0.12), rgba(61, 139, 98, 0.16));
  color: #9d5034;
  font-size: 1.1rem;
}

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

.cadastro-wizard-grid .span-2 {
  grid-column: 1 / -1;
}

.cadastro-access-note-volunteer {
  margin-bottom: 0;
}

.cadastro-inline-options {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

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

.cadastro-option-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(220, 228, 222, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(63, 49, 40, 0.04);
  cursor: pointer;
}

.cadastro-option-pill input {
  margin: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #2f7e59;
}

.cadastro-option-pill span {
  color: #33424a;
  font-size: 0.92rem;
  font-weight: 700;
}

.cadastro-conditional-inline[hidden] {
  display: none;
}

.cadastro-wizard-inline-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(219, 228, 221, 0.92);
  background: linear-gradient(180deg, rgba(250, 252, 250, 0.96), rgba(243, 247, 244, 0.94));
  color: #62707b;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cadastro-wizard-inline-note-strong {
  border-color: rgba(214, 198, 189, 0.92);
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(248, 242, 237, 0.96));
}

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

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

.cadastro-final-review-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(220, 228, 222, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.95));
  box-shadow: 0 14px 28px rgba(63, 49, 40, 0.06);
}

.cadastro-final-review-card small {
  color: #7a8793;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cadastro-final-review-card strong {
  color: #28353b;
  font-size: 1rem;
}

.cadastro-final-review-card span {
  color: #67737f;
  font-size: 0.84rem;
  line-height: 1.5;
}

.cadastro-secure-upload-block-final {
  margin-top: 0;
}

.cadastro-secure-upload-card {
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(124, 104, 96, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.cadastro-input[type="file"] {
  padding: 8px 10px;
  border-radius: 18px;
  background: #fff;
}

.cadastro-input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #eef6f1 0%, #f7efe8 100%);
  color: #2d6e50;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cadastro-input[type="file"].is-valid-file {
  border-color: rgba(47, 126, 89, 0.48);
  box-shadow: 0 0 0 3px rgba(47, 126, 89, 0.08);
}

.cadastro-input[type="file"].is-invalid-file {
  border-color: rgba(211, 101, 79, 0.5);
  box-shadow: 0 0 0 3px rgba(211, 101, 79, 0.08);
}

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

.cadastro-wizard-actions-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .cadastro-volunteer-wizard {
    padding: 20px;
  }

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

  .cadastro-wizard-meta {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .cadastro-form-shell-volunteer {
    width: 100%;
  }

  .cadastro-volunteer-wizard {
    padding: 16px;
    border-radius: 22px;
  }

  .cadastro-hero-journey {
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .cadastro-wizard-hero-main {
    gap: 10px;
  }

  .cadastro-wizard-hero h2 {
    font-size: 1.5rem;
  }

  .cadastro-wizard-hero p,
  .cadastro-wizard-panel-head p,
  .cadastro-wizard-inline-note,
  .cadastro-final-review-card span {
    font-size: 0.86rem;
  }

  .cadastro-wizard-step {
    flex-basis: 210px;
    min-height: 74px;
  }

  .cadastro-wizard-panel {
    padding: 18px;
  }

  .cadastro-wizard-grid,
  .cadastro-final-review-grid,
  .cadastro-option-grid {
    grid-template-columns: 1fr;
  }

  .cadastro-wizard-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cadastro-wizard-actions > .btn,
  .cadastro-wizard-actions-end,
  .cadastro-wizard-actions-end .btn {
    width: 100%;
  }

  .cadastro-wizard-actions-end {
    justify-content: stretch;
  }
}
