  snap-tabs {
    --hue: 328deg;
    --accent: var(--hue) 100% 54%;
    --indicator-size: 2px;
    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;

    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  snap-tabs:matches(header, nav, section, article, a) {
    outline-color: hsl(var(--accent));
    outline-offset: -5px;
  }


  .scroll-snap-x {
    overflow: auto hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .scroll-snap-x:last-child {
    overflow: hidden;
  }

  .scroll-snap-x::-webkit-scrollbar {
    display: none;
  }

  .scroll-snap-x {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .scroll-snap-x {
      scroll-behavior: smooth;
    }
  }

  @media (hover: none) {

    .scroll-snap-x {
      scrollbar-width: none;
    }

    .scroll-snap-x::-webkit-scrollbar {
      width: 0;
      height: 0;
    }
  }

  snap-tabs>header {
    --text-color: hsl(var(--hue) 5% 40%);
    --text-active-color: hsl(var(--hue) 20% 10%);

    flex-shrink: 0;
    min-block-size: fit-content;

    display: flex;
    flex-direction: column;
  }

  snap-tabs>header>nav {
    display: flex;
  }

  snap-tabs>header a {
    scroll-snap-align: start;

    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    font-size: .8rem;
    color: var(--text-color);
    font-weight: bold;
    text-decoration: none;
    padding: var(--space-2) var(--space-3);

  }

  snap-tabs>header a>svg {
    inline-size: 1.5em;
    pointer-events: none;
  }

  snap-tabs>header a:hover {
    background: hsl(var(--accent) / 5%);
  }

  snap-tabs>header a:focus {
    outline-offset: -.5ch;
  }

  snap-tabs>header>.snap-indicator {
    inline-size: 0;
    block-size: var(--indicator-size);
    border-radius: var(--indicator-size);
    background: hsl(var(--accent));
  }

  snap-tabs>section {
    block-size: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
  }

  snap-tabs>section>article {
    scroll-snap-align: start;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    padding: var(--space-2) var(--space-3);
  }

  @media (prefers-reduced-motion: reduce) {
    snap-tabs>header a {
      border-block-end: var(--indicator-size) solid hsl(var(--accent) / 0%);
      transition:
        color .7s ease,
        border-color .5s ease;
    }

    snap-tabs>header a:matches(:target, :active, [active]) {
      color: var(--text-active-color);
      border-block-end-color: hsl(var(--accent));
    }

    snap-tabs .snap-indicator {
      visibility: hidden;
    }
  }

  .c-step {
    padding: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 12px auto 26px;
  }

  .c-step ul,
  .c-step li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .c-step__list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    counter-reset: step;
  }
  
  .c-step__list::before {
    content: "";
    position: absolute;
    background: #D3D4D3;
    width: calc(100% - 115px);
    height: 4px;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }

  .c-step__progress{
    position: absolute;
    background: var(--blue);
    width: 0%;
    height: 4px;
    top: 12px;
    left: 57px;
    z-index: -1;
    transition: all .3s ease;
  }
  
  .c-step__item {
    position: relative;
    color: #0B2739;
    font-size: 13px;
    width: 115px;
    text-align: center;
    z-index: 5;
  }

  .c-step__item:before {
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1.5px solid #86888C;
    color: #86888C;
    margin: 0 auto 8px;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 0px 7px #F2F2F2;
    -moz-box-shadow: 0px 0px 0px 7px #F2F2F2;
    box-shadow: 0px 0px 0px 7px #F2F2F2;
  }

  .c-step__item.active:before {
    background-color: var(--blue);
    border: 1.5px solid var(--blue);
    color: var(--white);
  }
  .c-step__item.pasted:before {
    content: '';
    background-color: #F2F2F2;
    background-image: url(https://aprodmovistarcomsa.z13.web.core.windows.net/persons/pasos-esshop/pasos/assets/checked-regular.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border: 0;
  }


  @media screen and (max-width: 530px) {
    .c-step{
      padding: 16px 14px 16px 0px;
      overflow: hidden;
    }

    .c-step__list{
        width: 750px;
    }

    .c-step__item{
      flex-shrink: 0;
    }
  }



  /* ======= fin step ======= */

  .title__page {
    color: #019df4;
    margin: 20px auto;
    font-weight: 300;
    font-size: clamp(15px, 3vw, 20px);
    width: 95%;
    max-width: 1100px;
  }

  .title__page h5 {
    font-size: clamp(36px, 3vw, 40px);
    line-height: 1;
    font-weight: 700;
  }

  .content__page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
    padding: 30px 0;
  }

  .content__page-item {
    width: 95%;
    max-width: 1100px;
    position: relative;
    border: 1px solid #019df4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px 20px;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .content__page-item img {
    position: absolute;
    top: -45px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 91px;
  }

  .content__page-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .content__page-info-number {
    color: #019df4;
    font-weight: 700;
    font-size: 65px;
    line-height: 96px;
  }

  .content__page-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .content__page-info .text1 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    color: #019df4;
    margin-bottom: 10px;
  }

  .content__page-info .text2 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #979797;
  }

  .content__page-info a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #019df4;
    text-decoration: underline;
  }

  .btn__container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px auto 30px;
  }

  .btn__container-back {
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #019df4;
    background: transparent;
    border: 1px solid #019df4;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
  }

  .btn__container-next, 
  .btnCompra {
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #019df4;
    border: none;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
  }

  .btn__container-next:disabled,
  .btn__container-back:disabled,
  .btnCompra:disabled {
    color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
    border: none;
  }

  @media screen and (min-width: 768px) {
    .content__page {
      gap: 30px;
      margin: 0 auto;
      padding: 30px 0;
    }

    .content__page-item {
      flex-direction: row;
      justify-content: flex-start;
      padding: 12px 12px 12px 50px;
    }

    .content__page-item img {
      position: absolute;
      top: 0;
      bottom: 0;
      right: inherit;
      left: -45px;
      margin: auto 0;
    }

    .content__page-info {
      flex-direction: row;
      gap: 20px;
    }

    .btn__container {
      flex-direction: row;
      gap: 40px;
    }

    .btn__container-back {
      width: 80%;
      height: 56px;
      max-width: 110px;
    }

    .btn__container-next, .btnCompra {
      width: 100%;
      height: 56px;
      max-width: 410px;
    }

  }