    .features-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem 2rem;
      max-width: 1000px;
      width: 100%; /* para que tome el ancho disponible */
    }
    @media(min-width: 1024px) {
      .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem 5rem;
      }
    }
    .feature-item {
      position: relative;
      padding-left: 3rem;
    }
    .icon-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      height: 2.5rem;
      width: 2.5rem;
      background-color: #6b863a;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    .icon-wrapper svg {
      height: 1.5rem;
      width: 1.5rem;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }
    .feature-title {
      font-weight: 600;
      font-size: 1.3rem;
      line-height: 1.75rem;
      color: #000000;
      margin: 0 0 0.5rem 0;
    }
    .feature-desc-l {
    /*  margin: 0 20px; */
      font-size: 1.1rem;
      line-height: 1.75rem;
      margin-right: 40px;
      color: #21252b;
      text-align: justify;
    }
    .feature-desc-r {
    /*  margin: 0 20px; */
      font-size: 1.1rem;
      line-height: 1.75rem;
      margin-right: 70px;
      color: #000000;
      text-align: justify;
    }
    .row {
        margin-right: 0 !important;
    }

    .modal-dialog {
      max-width: 95vw;
      width: 60%;
    }
    
    #imagenExpandida {
      max-height: 90vh;
      width: 100%;
      height: auto;
      object-fit: contain;
    }