html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
content {
  flex: 1;
  height: 100%;
}
.AJM-background {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0) 55%
    ),
    url("./imgs/background_image.jpg");
  background-size: cover; /* cobre a tela inteira */
  background-position: center; /* centraliza */
  background-repeat: no-repeat; /* não repete */
  height: 100vh;
  position: relative;
}

.AJM-bg-menu {
  background-color: rgb(59 7 100);
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;

  .card {
    display: inline-block;
  }
}

.card {
  min-width: 350px; /* largura do card */
  height: 450px;
  background: #fff;
  border-radius: 12px;
  padding-left: 10px;
  padding-right: 10px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}
.AJM-bg-header {
}
.AJM-logo img {
  width: 150px;
}

.footer {
  color: #fff;
  padding: 40px;
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .col {
  display: flex;
  flex-direction: column;
}

.footer .col h4 {
  margin-bottom: 12px;
  font-weight: bold;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  margin: 3px 0;
}

.footer a:hover {
  color: #fff;
}
