* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
   
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  font-family: 'Satisfy', cursive;
  background-color: #c6a0ea;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background-color: #5a2983;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 10px 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #a82bb9;
  transition: background-color 0.3s;
}

nav a.pagina-atual {
  color: #5a2983;
  text-decoration: none;
  margin: 10px 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #e8bbfd;
  transition: background-color 0.3s;
}

main {
  padding: 20px;
  text-align: center;
}

.intro img {
  max-width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}

footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
  margin-top: 300px;
}

.imagem-quadrada-media {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.vitrine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.produto {
  background-color: #f8f4fb;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.produto img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.produto h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #6a1b9a;
}

.produto p {
  font-size: 14px;
  color: #555;
}

.bloco-destaque {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.texto-destaque {
  color: #2C3E50;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  text-align: justify;
}

.imagem-destaque {
  height: auto;         
  width: auto;          
  max-width: 350px;    
  border-radius: 8px;
  object-fit: contain;  
}