body {
  background-color: #c8cbce;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: black;
}

main {
  padding-top: 120px;
}

header{
  position: fixed;
}

.filtro-produto {
  background-color: #f5f5f5;
  padding: 30px 20px;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.filtro-produto label {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.filtro-produto select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: white;
  transition: border-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filtro-produto select:focus {
  border-color: #007bff;
  outline: none;
}

.titulo{
  margin: 10px 0px 10px 31px;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  padding: 50px;
  background-color: #c8cbce;
  justify-items: center;
}

.produtos div {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 350px;
  transition: transform 0.7s ease, box-shadow 0.2s ease;
}



.produtos div:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: white 
}

.produtos img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px; 
  
}


.produtos h2 {
  font-size: 15px;
  color: #333;
  text-align: justify;
}

/* Botao produtos*/
.botao-enviar {
  background-color: #28a745; /* verde */
  color: white;
  padding: 12px 24px;
  margin: 60px 10px 0px 0px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  
}
.botao-enviar a {
  text-decoration: none;
  color: #fff;
}

.container {
 text-align: right;
}






.botao-enviar:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.botao-enviar:active {
  background-color: #1e7e34;
  transform: translateY(0);
}



