/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte e cores globais */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fef6ff;
  color: #333;
  line-height: 1.5;
}

/* Container centralizado com largura máxima */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header ocupa largura total, com container para alinhar conteúdo */
header {
  background-color: #f7d3ee;
  padding: 30px 20px;
  box-shadow: 0 2px 5px rgba(204, 77, 163, 0.2);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.logo-icon {
  width: 50px;
  height: 60px;
  background-color: #cc4da3;
  color: #fef6ff;
  font-size: 32px;
  font-weight: bold;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #cc4da3, 0 0 20px #cc4da3;
}

.logo-text {
  color: #6c757d;
  font-size: 24px;
  font-weight: 600;
}

/* Header título e slogan centralizados */
header h1 {
  font-size: 2.5rem;
  color: #cc4da3;
  text-align: center;
  margin-top: 10px;
}

.slogan {
  font-size: 1.1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 20px;
}

/* Navegação centralizada */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #cc4da3;
  font-weight: 700;
  transition: color 0.3s;
}

nav a:hover {
  color: #96398b;
}

/* Títulos das seções */
h2 {
  text-align: center;
  color: #7a3eb1;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Conteúdo principal */
.produtos {
  padding: 40px 0;
}

/* Grid responsivo para os produtos */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Card dos produtos */
.produto {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.produto h3 {
  margin: 15px 0 5px;
  font-size: 1.1rem;
  color: #cc4da3;
}

.preco {
  color: #ce4085;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Botão de compra */
.botao {
  background-color: #ce4085;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s;
}

.botao:hover {
  background-color: #96398b;
}

/* Footer */
footer {
  background-color: #f7d3ee;
  padding: 20px 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #cc4da3;
  text-decoration: none;
}

footer a:hover {
  color: #96398b;
}

/* Botão WhatsApp fixo */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background-color 0.3s;
  text-align: center;
}

.whatsapp:hover {
  background-color: #128c7e;
}
