.n24h-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 38px 145px 40px 145px;
  margin: auto;
}

.n24h-footer > .header-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  margin-bottom: 50px;
}

.n24h-footer > .header-footer > a {
  cursor: pointer;
}

.n24h-footer > .header-footer > .nav-footer {
  display: flex;
  gap: 24px;
}

.n24h-footer > .header-footer > .nav-footer > .nav-footer-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.n24h-footer > .header-footer > .nav-footer .menu-title {
  font-family: "Jakarta-Bold";
  font-weight: bold;
  font-size: 27px;
  line-height: 30px;
  text-transform: capitalize;
}

.n24h-footer > .header-footer > .nav-footer ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Começa com 1 coluna */
  column-gap: 49px;
  row-gap: 0;
  list-style: none;
  padding: 0;
  height: fit-content;
}

/* Aplica duas colunas se houver mais de 5 elementos */
.n24h-footer > .header-footer > .nav-footer ul:has(li:nth-child(9)) {
  grid-template-columns: repeat(2, 1fr);
}

.n24h-footer > .header-footer > .nav-footer .submenu-title {
  font-family: "Jakarta-Regular";
  opacity: 0.7;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.n24h-footer > .header-footer > .nav-footer a {
  color: #ffffff;
}

.n24h-rights {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: "Jakarta-Regular";
  width: 100%;
  max-width: 1200px;
}

.n24h-rights small {
  font-size: 18px;
  line-height: 23px;
  opacity: 0.7;
}

.n24h-rights span {
  font-size: 12px;
  line-height: 23px;
  opacity: 0.7;
  width: fit-content;
  white-space: nowrap;
}

.n24h-sources-container {
  display: flex;
  gap: 20px;
}

.n24h-sources-container > .n24h-source {
  display: flex;
  gap: 10px;
}

/* versão tablet  */
@media (max-width: 1024px) {
  .n24h-footer {
    padding: 38px 80px 40px 80px;
  }
  .n24h-footer > .header-footer > a > img {
    width: 200px;
  }
}

/* versão mobile  */
@media (max-width: 768px) {
  .n24h-footer {
    padding: 26px 20px 24px 20px;
    height: 100%;
    width: 100%;
  }

  .n24h-footer > .header-footer {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }

  .n24h-footer > .header-footer > .nav-footer {
    min-width: none;
    flex-wrap: wrap;
  }

  .n24h-footer > .header-footer img {
    width: 208px;
  }

  .n24h-footer > .header-footer > .nav-footer > .nav-footer-item {
    gap: 17px;
  }

  .n24h-footer > .header-footer > .nav-footer .menu-title {
    font-size: 24px;
  }

  .n24h-footer > .header-footer > .nav-footer .submenu-title {
    font-size: 16px;
  }

  .n24h-rights {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: start;
    gap: 40px;
  }

  .n24h-rights small {
    font-size: 12px;
    line-height: 20px;
  }

  .n24h-rights span {
    font-size: 12px;
    line-height: 15px;
  }
}
