/* -------------------------Sobre------------------------- */

.sobre-edit {
  display: grid;
  grid-template-columns: 50% 50%;
  background: #009d3d;
  padding: 40px 10px;

  .text-content {
    h2 {
      font-size: 32px;
      font-weight: 700;
      color: white;
      margin: 0;
      margin-bottom: 16px;
    }

    p {
      font-size: 20px;
      font-weight: 400;
      color: white;
      margin: 0;
      margin-bottom: 16px;
    }

    .list {
      .list-item {
        margin-bottom: 16px;

        .list-content {
          display: flex;
          gap: 8px;

          p {
            margin: 0;
          }
        }
      }
    }

    button {
      margin-bottom: 16px;
      width: -webkit-fill-available;
      justify-content: center;
    }

    .link {
      label {
        font-size: 16px;
        font-weight: 600;
        color: white;
      }

      label:last-child {
        display: flex;
        width: 100%;
      }

      input {
        margin-top: 4px;
      }
    }
  }
}