body {
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  color: #000;
  margin-top: 80px;
  margin-bottom: 52px;
  font-size: 2rem;
}

.produtos {
  margin-left: -75px;
  width: 1100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.produto {
  width: 100px;
  max-width: 100%;
  text-decoration: none;
  color: black;
  border-radius: 33px;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.623);
  background: #fff;
  transition: transform 0.2s ease;
  flex: 1 1 calc(33.333% - 20px);
}

.produto:hover {
  transform: scale(1.03);
}

.produto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.descricao {
  background-color: #f1b600;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
}

.scroll-top {
  position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #f7be00;
    color: white;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

@media (max-width: 900px) {
  .produto {
    flex: 1 1 calc(50% - 20px); 
    max-width: calc(50% - 20px);
  }

  .produtos {
    margin-left: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .produto img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 20px 10px;
  }

  .produto {
    flex: 1 1 100%; 
    max-width: 100%;
  }

  .produto img {
    height: 220px;
  }

  .descricao {
    font-size: 0.95rem;
  }

  .produtos {
    margin-left: 0;
    width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }

  .produto img {
    height: 200px;
  }

  .descricao {
    font-size: 0.85rem;
    padding: 10px;
  }

  .container {
    padding: 15px 10px;
  }

  .produtos {
    margin-left: 0;
    width: 100%;
    padding: 0 8px;
  }
}
