[data-component-id="tec_prepa:footer_menu"] {
  .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;

    .menu {
      display: flex;
      flex-direction: column;
      gap: 16px;

      .menu-title {
        color: #FFF;
        font-family: "DM Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        margin: 0;
      }

      .menu-items {
        margin-inline-start: 0;
        display: grid;
        gap: 16px;

        .menu-item {
          list-style: none;
          color:#FFF;
          font-family: "DM Sans";
          font-size: 12px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
          text-transform: uppercase;
          padding: 0;

          a:hover{
            text-decoration: underline;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  [data-component-id="tec_prepa:footer_menu"] {
    .footer-menu {
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 64px;
      grid-row-gap: 32px;
    }
  }
}
