.section01 {
  padding: 100px 0 170px;
  h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    margin: 32px 0;
    color: #252424;
  }
  .txt01 {
    max-width: 314px;
    margin-bottom: 0;
  }

  #formularioGestantes {
    .steps-header {
      display: flex;
      gap: 9px;
      margin-bottom: 26px;
      border-bottom: 1px solid #ccc;
    }

    .step-item {
      flex: 1;
      padding: 10px;
      text-align: left;
      border-radius: 8px;
      background: #fff;
      color: #666;
      line-height: 17px;
      font-weight: 500;
      font-size: 14px;
      border-radius: 18px 18px 0 0;
      max-width: 114px;
      display: flex;
      justify-content: start;
      gap: 5px;
    }
    .step-item:nth-child(1) {
      border-radius: 0 18px 0 0;
    }

    .step-item.active {
      background: #d8ede3;
      color: #252424;
    }

    .step-content {
      display: none;
    }

    .step-content.active {
      display: block;
    }

    & > div {
      position: relative;
    }
    .rowInput {
      display: flex;
      gap: 32px;
      div {
        width: 100%;
        position: relative;
      }
    }
    input,
    select,
    textarea {
      height: 48px;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      color: #8d8d8d;
      font-size: 14px;
      padding: 0 0 0 20px;
      outline: none;
      margin-bottom: 24px;
    }
    select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: #fff
        url("https://essentialnutrition-upload-files.s3.us-east-1.amazonaws.com/site-begenerous/formulario-prescritor/seta.svg")
        no-repeat right 20px center;
      padding-right: 48px;
    }
    textarea {
      height: 48px;
      padding-top: 12px;
    }
    .checkbox {
      display: flex;
      gap: 12px;
      label {
        color: #8d8d8d;
        font-size: 14px;
        line-height: 18px;
        max-width: 334px;
      }
      .erro-campo {
        bottom: -14px;
      }
    }
    #check01 {
      width: 12px;
      height: 12px;
      border-color: #8d8d8d;
      padding: 0;
      margin: 4px 0 0;
    }
    .captcha-wrapper {
      display: flex;
      border: 1px solid #ccc;
      background: #f9f9f9;
      align-items: center;
      gap: 20px;
      padding: 13px 20px;
      width: fit-content;
      margin-bottom: 43px;
      .captcha-label {
        margin: 0;
        font-size: 14px;
      }
      #captchaResposta {
        width: 80px;
        margin: 0;
        height: 34px;
      }
      .erro-campo {
        bottom: -21px;
        right: 0;
      }
    }
    .bt_wrapper {
      display: flex;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .buttons {
      display: flex;
      justify-content: end;
      margin-top: 8px;
      gap: 16px;
      .btn-prev {
        width: 100px;
        height: 38px;
        background: #e0e0e0;
        border-radius: 6px;
        border: 0;
        color: #666666;
        font-size: 16px;
        outline: none;
        cursor: pointer;
      }
      .btn-prev:hover {
        opacity: 0.8;
      }
    }
    .asterisco {
      color: #252424;
      font-size: 12px;
    }
    .erro-campo {
      position: absolute;
      bottom: 4px;
    }
  }
}

/* Modal de sucesso */
.modal-sucesso {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-sucesso.active {
  display: flex;
}

.modal-sucesso__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-sucesso__content {
  position: fixed;
  background: #fff;
  border-radius: 4px;
  padding: 56px 0px 60px;
  max-width: 721px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-sucesso__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  outline: none !important;
}

.modal-sucesso__icon {
  width: 62px;
  height: 50px;
}

.modal-sucesso__title {
  font-size: 24px;
  font-family: "proxima-soft";
  line-height: 27px;
  font-weight: 600;
  color: #252424;
  margin: 24px 0 20px;
  letter-spacing: -0.19px;
  max-width: 300px;
}

.modal-sucesso__text {
  font-size: 16px;
  font-family: "proxima-soft";
  font-weight: 500;
  color: #252424;
  margin: 0 0 12px;
  line-height: 19px;
  max-width: 322px;
}
.modal-sucesso__text.text01:before {
  content: "";
  width: 84px;
  height: 10px;
  background: var(--unnamed-color-9ed1b8) 0% 0% no-repeat padding-box;
  background: #9ed1b8 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 0.5;
  display: block;
  position: absolute;
  margin: 11px 0 0 101px;
}

.modal-sucesso__logo {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section01 {
    padding: 0 0 166px;
    .container {
      padding: 0 30px;
    }
    h1 {
      margin-bottom: 32px;
    }
    .txt01 {
      max-width: 315px;
    }
    .col02 {
      margin-top: 120px;
    }
    #formularioGestantes {
      .steps-header {
        gap: 6px;
      }
      .step-item {
        padding: 10px 8px;
      }
      .rowInput {
        display: flex;
        gap: 0;
        flex-direction: column;
      }
      #motivacao {
        height: 73px;
      }
    }
  }
  .modal-sucesso__text {
    max-width: 211px;
  }
}
@media (max-width: 340px) {
  .section01 {
    .container {
      padding: 0 24px;
    }
    & #formularioGestantes {
      .step-item {
        line-height: 15px;
        font-size: 12px;
      }
      input,
      select,
      textarea {
        font-size: 13px;
        padding: 0 0 0 14px;
      }
    }
  }
}
