.adopem-becas-wrap {
    padding: 24px 16px 48px;
    color: #3a3a3a;
}

.adopem-becas-main-title {
    text-align: center;
    color: #f08736;
    font-size: 35px;
    margin: 12px 0 40px;
    line-height: 1.1;
    font-weight: 600;
}

.adopem-steps-progress {
  display: grid;
  grid-template-columns: repeat(8, minmax(90px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

.adopem-step-item {
  text-align: center;
}

.adopem-step-circle {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  background: #d1d1d1;
  color: #fff;
  margin-bottom: 10px;
}

.adopem-step-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #9b9b9b;
  text-transform: uppercase;
}

.adopem-step-item.is-active .adopem-step-circle,
.adopem-step-item.is-complete .adopem-step-circle {
  background: #f08736;
}

.adopem-step-item.is-active .adopem-step-label,
.adopem-step-item.is-complete .adopem-step-label {
  color: #303030;
}

.adopem-step-panel h3 {
  text-align: center;
  color: #284f8f;
  font-size: 48px;
  margin: 0 0 34px;
  line-height: 1.1;
  font-weight: 600;
}

.adopem-step-panel p {
  text-align: center;
  font-size: 20px;
}

.adopem-grid-3,
.adopem-grid-2 {
  display: grid;
  gap: 16px;
}

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

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

.adopem-col-span-2 {
  grid-column: span 2;
}

.adopem-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adopem-field label,
.adopem-radio-group legend {
  font-size: 14px;
  font-weight: 700;
  color: #4a4a4a;
}

.adopem-field input,
.adopem-field textarea,
.adopem-field select {
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  padding: 15px;
  background: #f7f7f7;
  font-size: 18px;
}

.adopem-radio-group {
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  padding: 14px;
  background: #f7f7f7;
}

.adopem-radio-group > div {
  display: flex;
  gap: 22px;
  margin-top: 8px;
}

.adopem-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.adopem-consent-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  background: #f7f7f7;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.adopem-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.adopem-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.next{
  display: flex;
    gap: 38px;
}
.adopem-btn {
  border: none;
  border-radius: 999px;
  background: #f08736;
  color: #fff;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.adopem-btn-secondary {
  background: #838383;
}

.adopem-errors {
  text-align: center;
  color: #a40000;
  font-size: 16px;
  min-height: 26px;
  margin-top: 20px;
}

#adopem-review {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 10px;
  background: #f7f7f7;
  border: 1px solid #cbcbcb;
}

#adopem-review h4 {
  margin-top: 0;
  font-size: 24px;
  color: #284f8f;
}

#adopem-review ul {
  margin: 0;
  padding-left: 18px;
}

#adopem-review li {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .adopem-steps-progress {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

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

  .adopem-becas-main-title,
  .adopem-step-panel h3,
  .adopem-btn {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .adopem-steps-progress,
  .adopem-grid-3,
  .adopem-grid-2 {
    grid-template-columns: 1fr;
  }

  .adopem-col-span-2 {
    grid-column: span 1;
  }

  .adopem-step-panel h3 {
    font-size: 30px;
  }

  .adopem-becas-main-title {
    font-size: 32px;
  }

  .adopem-btn {
    font-size: 22px;
    padding: 12px 28px;
  }
}
