@media (min-width: 997px) {
  .only-desk {
    display: block;
  }

  .only-mobile {
    display: none;
  }

  .container {
    width: 100vw;
    height: 100vh;
    display: flex;
  }

  .progreso {
    width: 40vw;
    height: 100%;
    padding-top: 140px;
    padding-left: 4vw;
    position: relative;
    overflow-y: hidden;
  }

  .titulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .titulo p {
    margin: 0;
    color: #313131;
    font-size: 0.9rem;
  }

  .titulo h2 {
    margin: 0;
    color: #000031;
  }

  .pasos {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
  }

  .paso {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .numero-paso {
    background-color: transparent;
    /*border: 2px solid #000031;*/
    border-radius: 50px;
    width: 32px;
    height: 32px;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .numero-paso p {
    font-weight: 700;
    /* color: #000031;*/
  }

  .nombre-paso {
    text-transform: uppercase;
    /*color: #000031;*/
  }

  /* Activo */
  .activo .numero-paso {
    border: 2px solid #000031;
  }
  .activo .numero-paso p {
    color: #000031;
  }
  .activo .nombre-paso {
    color: #000031;
  }

  /*Inactivo*/
  .inactivo .numero-paso {
    border: 2px solid #a5a5a5;
  }
  .inactivo .numero-paso p {
    color: #a5a5a5;
  }
  .inactivo .nombre-paso {
    color: #a5a5a5;
  }

  /*Completado*/
  .completado .numero-paso {
    background-image: url("/media/premio/check.png");
    border: 0px;
  }
  .completado .numero-paso p {
    color: #a78e29;
    display: none;
  }
  .completado .nombre-paso {
    color: #a78e29;
  }

  .terminos {
    position: absolute;
    bottom: 80px;
  }

  .terminos a {
    text-decoration: none;
  }

  .terminos p {
    color: #a78e29;
    cursor: pointer;
  }

  .contenido {
    background-color: #f9f7f7;
    width: 60vw;
    height: 100%;
    position: relative;
    padding-top: 80px;
    overflow-y: auto;
  }

  .seccion1-container,
  .seccion2-container,
  .seccion3-container {
    padding: 0px 7.5vw;
    margin-top: 45px;
  }

  .encabezado {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .encabezado h2 {
    color: #000031;
    font-weight: 500;
    font-size: 2rem;
    margin: 0;
  }

  .encabezado hr {
    border: 1px solid #a78e29;
    width: 100%;
  }

  .formulario {
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .input {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
  }

  .input label {
    color: #272727;
    font-size: 1rem;
  }

  .input input {
    border: 1px solid #d9d9d9;
    height: 40px;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .input textarea {
    border: 1px solid #d9d9d9;
    height: 80px;
    outline: none;
    padding: 10px;
    resize: none;
  }

  .input .err {
    position: absolute;
    bottom: -20px;

    font-size: 0.7rem;
    color: #df0f0f;
  }

  .two-inputs {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .button {
    display: flex;
    justify-content: flex-end;
  }

  .button button {
    border: 0px;
    font-size: 1rem;
    height: 50px;
    width: 230px;
    border-radius: 42px;
    cursor: pointer;
  }

  .button .next-button {
    background-color: #000031;
    color: #fff;
  }

  .button .back-button {
    background-color: #a5a5a5;
    color: #fff;
  }

  .integrante-input {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /*Custom select*/
  .custom-select {
    position: relative;
    display: inline-block;
  }

  .custom-select select {
    display: none;
  }

  .select-selected {
    cursor: pointer;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    padding: 10px;
    font-size: 0.8rem;
    color: #666;
  }

  .select-items {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #d9d9d9;
    z-index: 1;
  }

  .select-items div {
    padding: 8px 16px;
    cursor: pointer;
    border-bottom: 1px solid #d9d9d9;
    font-size: 0.8rem;
    color: #666;
  }

  .select-items div:hover {
    background-color: #ddd;
  }

  .custom-select.custom-open .select-items {
    display: block;
  }

  /* Estilos miembros */
  .miembro {
    display: none;
    width: 100%;
    margin-bottom: 5px;
  }

  .miembro h4 {
    color: #000031;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .miembro h4 b {
    font-weight: 500;
    font-size: 0.8rem;
  }

  .miembro div {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;

    margin-bottom: 5px;
  }

  .miembro div label {
    color: #272727;
    font-size: 1rem;
  }

  .miembro div input {
    background-color: #fff;
    border: 1px solid #d9d9d9;

    height: 40px;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .añadir-button {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .añadir-button button {
    border: 0px;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    color: #a78e29;
    font-weight: 500;
  }
}

@media (max-width: 997px) {
  .only-desk {
    display: none;
  }

  .only-mobile {
    display: block;
  }

  .encabezado {
    background-color: #000031;
    height: 58px;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .encabezado h2 {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 10px;
  }

  .header .texto h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000031;
    margin: 0;

    width: 280px;
    height: 22px;
  }

  .header .texto p {
    font-size: 10px;
    color: #66666690;
    margin: 0;
  }

  .progreso {
    border: 4.1px solid #b6b6b6;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .half-circle {
    width: 67px;
    height: 66px;
    position: absolute;

    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .progreso p {
    color: #000;
    font-weight: 500;
  }

  .formulario {
    background-color: #f9f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .formulario .title {
    padding: 0px 10%;
    width: 100%;
  }

  .formulario .title h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000031;
  }

  .formulario .title hr {
    border: 1px solid #a78e29;
  }

  .form {
    margin-top: 30px;
    margin-bottom: 40px;
    width: 100%;
    padding: 0px 10%;

    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form .integrante-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .input {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .input label {
    color: #272727;
    font-size: 0.8rem;
  }

  .input input {
    border: 1px solid #d9d9d9;
    background-color: #fff;
    outline: none;
    height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2.5px;
    font-size: 0.8rem;
  }

  .input textarea {
    border: 1px solid #d9d9d9;
    background-color: #fff;
    outline: none;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    font-size: 0.8rem;
  }

  .input .err {
    font-size: 0.7rem;
    color: #df0f0f;
  }

  .button {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
  }

  .button .next-button {
    color: #fff;
    border: 0px;
    background-color: #000031;
    width: 150px;
    height: 35px;
    border-radius: 100px;
    cursor: pointer;
  }

  .button .back-button {
    border: 0px;
    background-color: #a5a5a5;
    color: #fff;
    width: 150px;
    height: 35px;
    border-radius: 100px;
    cursor: pointer;
  }

  /**/
  /*Custom select*/
  .custom-select-mb {
    position: relative;
    display: inline-block;
  }

  .custom-select-mb select {
    display: none;
  }

  .select-selected-mb {
    cursor: pointer;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
  }

  .select-items-mb {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #d9d9d9;
    z-index: 1;
    left: 0;
  }

  .select-items-mb div {
    padding: 5px 10px;
    cursor: pointer;
    border-bottom: 1px solid #d9d9d9;
    font-size: 0.8rem;
    color: #666;
  }

  .select-items-mb div:hover {
    background-color: #ddd;
  }

  .custom-select-mb.custom-open-mb .select-items-mb {
    display: block;
  }

  /**/

  /* Miembros */
  .integrante h4 {
    color: #000031;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .integrante h4 b {
    font-weight: 500;
    font-size: 0.8rem;
  }

  .integrante {
    display: flex;
    flex-direction: column;
    display: none;
    width: 100%;
    margin-bottom: 15px;
  }

  .integrante .input {
    margin-bottom: 10px;
  }

  .añadir-button button {
    background-color: transparent;
    border: 0px;
    color: #a78e29;
    font-weight: 500;
    cursor: pointer;
  }
}
