#page-opiniones {
  .card {
    position: relative;
    /* background-color: #ececec; */
    padding: 50px 20px;
    text-align: center;
    height: 100%;

    &:after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translate(-50%, 0);
      width: 200px;
      height: 1px;
      border-bottom: 2px dashed #d6d6d6;
    }

    .nombre {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .rubro {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .url {
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: 18px;
      font-weight: bold;
      margin-top: 20px;
      margin-bottom: 0;
    }

    .description {
      font-size: 18px;
      font-weight: 300;
    }

    .review {
      font-size: 30px;
      font-weight: 300;
      font-style: italic;
      padding-top: 20px;
    }

    .star {
      color: yellow;
      clip-path: polygon(6px 0, 4.31px 3.98px, 0 4.34px, 3.28px 7.18px, 2.29px 11.4px, 6px 9.16px, 9.71px 11.4px, 8.72px 7.18px, 12px 4.34px, 7.69px 3.98px, 6px 0, 20px 0, 18.31px 3.98px, 14px 4.34px, 17.28px 7.18px, 16.29px 11.4px, 20px 9.16px, 23.71px 11.4px, 22.72px 7.18px, 26px 4.34px, 21.69px 3.98px, 20px 0, 34px 0, 32.31px 3.98px, 28px 4.34px, 31.28px 7.18px, 30.29px 11.4px, 34px 9.16px, 37.71px 11.4px, 36.72px 7.18px, 40px 4.34px, 35.69px 3.98px, 34px 0, 48px 0, 46.31px 3.98px, 42px 4.34px, 45.28px 7.18px, 44.29px 11.4px, 48px 9.16px, 51.71px 11.4px, 50.72px 7.18px, 54px 4.34px, 49.69px 3.98px, 48px 0, 62px 0, 60.31px 3.98px, 56px 4.34px, 59.28px 7.18px, 58.29px 11.4px, 62px 9.16px, 65.71px 11.4px, 64.72px 7.18px, 68px 4.34px, 63.69px 3.98px, 62px 0);
      display: inline-block;
      zoom: 2.5;
      width: 68px;
      height: 12px;
      background: linear-gradient(to right, #fdd663 var(--percent), #80868b 0%);
      vertical-align: middle;
    }

    .points {
      vertical-align: middle;
    }

    a {
      color: var(--color-red-one);
    }
  }

  @media (min-width: 1024px) {
    .card {
      padding: 60px;
    }
  }
}