footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem 1rem;
  background: #EFEFEF;
  color: #212529;
  gap: 15px;

  @media (min-width: 768.1px) {
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem 4rem;
    grid-template-columns: repeat(5, 1fr);
  }
  a {
    color: currentColor;
  }

  .h3 {
    color: var(--color-red);
    font-size: 1.2rem;
    font-weight: 800;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {

      a {
        color: currentColor;
        text-decoration: none;|

        &:hover {
          color: currentColor;
        }
      }
    }
  }

  & > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;

    &:first-child {
      grid-column: 1/-1;

      @media (min-width: 768.1px) {
        grid-column: 1/3;
      }
    }
  }

  .redes-container {
    ul {
      padding: 0;
      list-style: none;
      display: flex;
      justify-content: flex-end;
      width: 100%;
      min-width: 150px;

      li {
        a {
          color: currentColor;
          display: flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;|

          i {
            font-size: xx-large;
          }
        }
      }
    }
  }
  .follow-us {
    picture {
      max-width: 170px;
      margin-top: 30px;

      img {
        max-width: 100%;
      }
    }
  }
}