/* -------------------------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;
        }
      }
    }
  }
  
  /* ---------------------------------------------------------------------------------------------------- */

  /* -------------------------Sobre------------------------- */

.sobre {
    padding: 40px 0;
    background: #009d3d;
  
    .col-lg-6 {
      padding: 0;
    }
  
    .text-content {
      margin-right: 16px;
  
      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;
            }
          }
        }
      }
  
      .dynamic-link {
        display: flex;
        padding: 14px 16px;
        background: #ffd500;
        border-radius: 999px;
        width: fit-content;
        gap: 4px;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
        color: #30302e;
      }
    }
  
    .thumbnail {
      margin-left: 16px;
      img {
        width: -webkit-fill-available;
      }
    }
  }
  
  @media (max-width: 991px) {
    .contato-do-programa-content {
      gap: 0 !important;
  
      .block-fild {
        margin-bottom: 32px;
      }
    }
  
    .sobre {
      .text-content {
        margin-right: 0;
        padding: 0 12px;
      }
      .thumbnail {
        margin-left: 0;
        padding: 0 12px;
      }
    }
  }