/* CONTENEDOR PRINCIPAL */
.webform-submission-form {
  max-width: 1000px;
  margin: 0 auto;
}

/* FIELDSETS */
.webform-submission-form fieldset {
  background: #fff;
  border: 1px solid #dfe7e8;
  border-top: 0;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
  position: relative;
}

/* TÍTULOS */
.webform-submission-form legend {
  display: block !important;
  margin-left: 20px !important;
  padding: 0 12px !important;
  border: 0 !important;
  background: #fff !important;
}

.webform-submission-form .fieldset-legend {
  background: #fff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #005b3f !important;
}

/* OPCIONES */
.webform-submission-form .form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px !important;
}

.webform-submission-form .js-form-type-radio {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  margin: 0;
}

.webform-submission-form .js-form-type-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.webform-submission-form .js-form-type-radio label {
  display: block;
  min-height: 90px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 18px;
  font-weight: 600;
  color: #142126;
}

.webform-submission-form .js-form-type-radio label:hover {
  background: #f4fbf7;
  border-color: #00704a;
}

.webform-submission-form .js-form-type-radio input[type="radio"]:checked + label {
  border-color: #005b3f;
  background: #e8f6ef;
  box-shadow: 0 0 0 3px rgba(0,91,63,.15);
}

.webform-submission-form .description,
.webform-submission-form .form-item__description {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #68767d;
}

/* BOTONES */
.webform-button--next,
.webform-button--submit {
  background: #005b3f;
  border: 1px solid #005b3f;
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
}

.webform-button--previous {
  background: #fff;
  border: 1px solid #005b3f;
  color: #005b3f;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
}

/* BARRA DE PASOS */
.webform-progress {
  margin-bottom: 40px;
}
}
/* TARJETA DE PUNTUACIÓN */

.score-card {
  background: #ffffff;
  border: 1px solid #dfe7e8;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.score-label {
  color: #68767d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.score-number {
  color: #005b3f;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.score-number span {
  font-size: 24px;
  color: #68767d;
  font-weight: 600;
}

.score-bar {
  height: 14px;
  background: #dfe7e8;
  border-radius: 999px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #005b3f 0%, #00704a 100%);
  border-radius: 999px;
  transition: width .4s ease;
}
/* OCULTAR CAMPO SCORE ORIGINAL */

.form-item-score {
  display: none !important;
}