body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #d6f0ff, #ffd6e0);
}

header {
  background: linear-gradient(90deg, #bde0fe, #ffc8dd);
  padding: 15px;
  text-align: center;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  width: 60px;
  border-radius: 50%;
}

/* 🔥 AQUI ESTÁ A FONTE DA LOGO */
header h1 {
  margin: 0;
  color: #7b2cbf;
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  font-weight: normal;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.banner {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.6);
}

/* opcional: deixar frase com mesma fonte */
.banner h2 {
  font-family: 'Pacifico', cursive;
  font-weight: normal;
}

.produtos {
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
}
/*
.card p {
  padding: 10px;
  text-align: center;
}*/
.card p {
  padding: 10px;
  text-align: center;
  font-family: 'Pacifico', cursive;
  font-weight: normal;
  font-size: 16px;
}

.contato {
  text-align: center;
  padding: 30px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: #e1306c;
}

footer {
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.7);
}