* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fredoka', sans-serif;
  background: #FFA54B;
  color: #2F2F2F;
  text-align: center;
  padding: 20px;
}

header {
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  transform: scale(1.2);
  margin: 10px;
}

.social-icons img {
  width: 32px;
  margin: 0 8px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.filters {
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-button {
  background: #FFB347;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.filter-button:hover {
  background: #FF7B54;
  color: #fff;
}

.produto-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 15px auto;
  width: 90%;
  max-width: 300px;
}

.produto-card img {
  width: 100%;
  border-radius: 10px;
}

.produto-card p {
  margin: 10px 0;
  font-size: 1rem;
}

.botao {
  background: #FF7B54;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s;
}

.botao:hover {
  background: #FF4500;
}
