@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

footer.section-page {
  align-items: flex-start;
  background-color: #0f003f;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  font-family: "Fredoka", sans-serif;
  gap: 48px;
  justify-content: space-between;
  padding: 48px 80px;
  width: 100%;
  margin-top: 0;
}

footer.section-page .logotipo {
  display: flex;
  align-items: center;
}

footer.section-page .logotipo svg {
  width: 200px;
  height: auto;
}

footer.section-page .servicos,
footer.section-page .redes-sociais,
footer.section-page .sobre-nos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}

footer.section-page h5 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

footer.section-page .item {
  font-size: 18px;
  line-height: 140%;
}

footer.section-page .item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 200ms ease;
}

footer.section-page .item a:hover {
  color: #f08101;
}

footer.section-page .item a.disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  footer.section-page {
    padding: 40px 40px;
    gap: 36px;
    justify-content: flex-start;
  }

  footer.section-page .logotipo {
    width: 100%;
  }
}

@media (max-width: 600px) {
  footer.section-page {
    padding: 32px 24px;
    gap: 28px;
  }

  footer.section-page .logotipo svg {
    width: 160px;
  }

  footer.section-page h5 {
    font-size: 18px;
  }

  footer.section-page .item {
    font-size: 16px;
  }
}
