body {
  padding: 0;
  margin: 0;

}

.container {
  width: 1600px;
  height: 750px;

  overflow-x: scroll;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-behavior: thin;
  scrollbar-color: #fff4f4 #f1f1f1;

}

::-webkit-scrollbar-track {
  background-color: #ffffff;
  /* Light gray track */
  border-radius: 5px;
  /* Rounded corners for the track */
}

::-webkit-scrollbar-button {
  display: none;
  /* Hide scrollbar buttons */
}


.imagemProduto {
  display: grid;
  grid-auto-flow: column;
  gap: 25px;
}

.FotoProduto {
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

@media screen and (max-width: 850px) {
  .container {
    width: 400px;
    height: 450px;
    align-items: center;
    overflow-x: scroll;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    scroll-behavior: thin;
    scrollbar-color: #fff4f4 #f1f1f1;

  }

  ::-webkit-scrollbar-track {
    background-color: #ffffff;
    /* Light gray track */
    border-radius: 5px;
    /* Rounded corners for the track */
  }

  ::-webkit-scrollbar-button {
    display: none;
    /* Hide scrollbar buttons */
  }

  .imagemProduto {
    display: grid;
    grid-auto-flow: column;
    gap: 100px;
  }

  .FotoProduto {
    width: 100%;
    height: 400px;
    margin-left: 100px;
    scroll-snap-align: start;
  }

}