@media (min-width: 628px) {
  .icons-fixed-produtos {
    display: flex;
    top: 50%;
    height: 130px;
  }
}
@media (max-width: 628px) {
  .icons-fixed-produtos {
    display: flex;
    top: 50%;
    left: 85%;
    height: 150px;
  }
}
.nav-produtos {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  position: relative;
  padding: 20px 10px;
}
.nav-produtos::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--dark-blue);
}
.inputs-produtos {
  padding: 10px;
  display: flex;
  gap: 30px;
  width: 60%;
}
.nav-produtos label {
  cursor: pointer;
  color: var(--dark-blue);
}
input[type="radio"] {
  display: none;
}
main .produtos-container {
  min-height: 100vh;
}
main .produtos {
  display: flex;
  width: 100%;
  height: auto;
  padding: 2em;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.figureProdutos {
  position: relative;
  width: 300px;
  height: auto;
}
.figureProdutos img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
}
.figureProdutos figcaption {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.figureProdutos h2 {
  text-align: center;
  font-size: 20px;
  color: var(--dark-blue);
}
figcaption button {
  background-color: var(--dark-blue);
  color: var(--beige);
  cursor: pointer;
  padding: 10px;
}
figcaption button a {
  padding: 12px;
}
figcaption button a:hover {
  opacity: 0.5;
}
.figureProdutos:hover {
  opacity: 0.8;
  z-index: 1;
  text-align: center;
}
.figureProdutos:hover figcaption {
  display: block;
}
