  .values {
    background-color: var(--cor-primaria);
    width: 100%;
    color: #1f2937;
  }

  .values_container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .values>h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
  }

  .mission {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #374151;
  }

  .values>h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
  }

  .list_values {
    list-style: none;
    padding: 0;
    font-size: 1.125rem;
    color: #374151;
  }

  .values_img {
    width: 40px;
  }

  .values_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .values_list>li {
      display: flex;
      gap: 8px;
      justify-content: flex-start;
      align-items: center;
      width: 250px;
    }

  @media (min-width: 1024px) {
    .values_container>h2 {
      font-size: 3rem;
    }

    .values_container>h3 {
      font-size: 2.25rem;
      margin-bottom: 1rem;
    }

    .mission,
    .list_values {
      font-size: 1.25rem;
    }

    .values {
      padding: 4rem 0 4rem;
    }

    .values_list>li {
      width: 400px;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    
  }