footer {
  border-top: 0.1rem solid var(--lightBlue);
  padding-top: 6.4rem;
  z-index: 99999;
  background-color: var(--white);
  .container__footer {
    width: 85%;
    max-width: 110rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    color: var(--darkGray);
    @media (width >= 768px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (width >= 1280px) {
      grid-template-columns: repeat(4, 1fr);
      gap: 4.2rem;
    }
    .column {
      article {
        margin-bottom: 4.8rem;
        @media (width >= 1280px) {
          margin-bottom: 3.6rem;
        }
        h4 {
          font-size: 1.6rem;
          color: var(--darkGray);
          text-decoration: underline;
          text-decoration-color: var(--lightBlue);
          text-decoration-thickness: 0.2rem;
          text-underline-offset: 0.8rem;
          display: block;
          margin-bottom: 3rem;
        }
        a {
          font-size: 1.4rem;
          color: var(--darkGreen);
          font-family: var(--fontContent-Bold);
          line-height: 2rem;
        }
        .container-links {
          display: flex;
          flex-direction: column;
          gap: 1.6rem;
        }
      }
    }
    .col_01 {
      .logo {
        width: 12rem;
        margin-bottom: 0.8rem;
      }
      .disclaimer {
        font-size: 1.2rem;
        line-height: 2rem;
        margin-bottom: 2rem;
      }
      .social-networks {
        display: flex;
        gap: 1.6rem;
        margin-bottom: 6rem;
        a img {
          width: 2rem;
          display: block;
        }
      }
    }
  }
  .copyright {
    color: var(--white);
    display: flex;
    flex-direction: column;
    background-color: var(--brand);
    margin-top: 4rem;
    margin-bottom: 6.4rem;
    padding: 2.4rem 0;
    @media (width >= 1280px) {
      margin-bottom: 0;
    }
    .copyright__container {
      width: 85%;
      max-width: 110rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin: 0 auto;
      gap: 2rem;
      @media (width >= 1280px) {
        flex-direction: row;
        justify-content: space-between;
      }
      .logo-superintendencia {
        height: 2rem;
        filter: brightness(200%);
      }
      p {
        font-size: 1.2rem;
      }
    }
  }
}