/* Definir fonte padrão */
body {
  font-family: Arial, sans-serif;
}

/* Estilizar cabeçalho */
header {
  background-color: #333;
  padding: 20px;
  color: #fff;
}

header h1 {
  margin: 0;
}

/* Estilizar botões */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f44336;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #d32f2f;
}

/* Estilizar seção de produtos */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  margin: 20px;
  width: 300px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 100%;
  height: auto;
}

.product h2 {
  margin: 10px 0;
}

.product p {
  color: #888;
}

/* Estilizar rodapé */
footer {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  color: #888;
}

/* Estilizar links no rodapé */
footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #333;
}
)