* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff0f5;
  color: #333;
}

/* Cabeçalho */
header {
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTNQ98xUEpdfrF6JHyrTIsf9QKj1y5z14iBRw&s.jpg"); /* Caminho da imagem */
  background-size: cover; /* Ajusta a imagem para cobrir todo o header */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Evita repetição da imagem */
  color: white; /* Cor do texto sobre a imagem */
  text-align: center;
  padding: 60px 60px;
  position: relative;
}
/* Seção Sobre */
.sobre {
  background-color: #fff;
  padding: 2em;
  text-align: center;
}

.sobre h2 {
  color: #d63384;
  margin-bottom: 1em;
}
.servicos-evento {
  padding: 40px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.servicos-evento h2 {
  margin-bottom: 30px;
}

.servico {
  margin-bottom: 30px;
}

.servico img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.servico h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #d63384;
}

.servico p {
  max-width: 500px;
  margin: 10px auto;
  font-size: 16px;
  color: #444;
}
/* Produtos */
.produtos {
  padding: 2em;
  background-color: #fff5f8;
  text-align: center;
}

.produtos h2 {
  color: #d63384;
  margin-bottom: 1.5em;
}

.produto {
  display: inline-block;
  width: 250px;
  margin: 1em;
  padding: 1em;
  background-color: #ffe4e1;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.produto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.produto h3 {
  margin-top: 0.5em;
  color: #c2185b;
}

/* Rodapé */
footer {
  background-color: #ff69b4;
  color: white;
  text-align: center;
  padding: 2em;
  font-size: 0.95em;
}

footer h2 {
  margin-bottom: 0.5em;
}

/* Botão WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

.whatsapp-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
