/* =========================================
   FOOTER MH — MOBILE + TABLET
========================================= */

.mh-footer {
  background: #f4efe7;
  padding: 48px 16px 32px;
  font-family: inherit;
}

.mh-footer__container {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* LOGO */
.mh-footer__logoWrap {
  margin-bottom: 28px;
}

.mh-footer__logo {
  max-width: 105px; /* REDUZIDA */
  height: auto;
  display: inline-block;
}

/* NAV LINKS */
.mh-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.mh-footer__navItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

.mh-footer__navItem:hover {
  opacity: 0.85;
}

/* ICONS — SEM CÍRCULO */
.mh-footer__icon {
  width: 18px;
  height: 18px;
  background: transparent; /* REMOVE FUNDO */
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-footer__icon img {
  width: 18px;
  height: 18px;
  filter: none; /* REMOVE INVERT */
}

/* DIVIDER */
.mh-footer__divider {
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  margin: 32px 0 24px;
}

/* PAYMENTS */
.mh-footer__payments {
  margin-bottom: 28px;
}

.mh-footer__payments img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* LEGAL LINKS */
.mh-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.mh-footer__legalLink {
  color: #222;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
}

.mh-footer__legalLink:hover {
  opacity: 0.8;
}

/* COPYRIGHT */
.mh-footer__copy {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}

/* =========================================
   DESKTOP AJUSTES
========================================= */
@media (min-width: 1024px) {

  .mh-footer {
    padding: 64px 24px 40px;
  }

  .mh-footer__container {
    max-width: 520px;
  }

  .mh-footer__logo {
    max-width: 120px; /* LOGO UM POUCO MAIOR NO DESKTOP */
  }

  .mh-footer__navItem {
    font-size: 17px;
  }

  .mh-footer__legalLink {
    font-size: 16px;
  }
}

/* =========================================
   OCULTA FOOTER PADRÃO NUVEMSHOP
========================================= */
footer.js-footer {
  display: none !important;
}
