/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.navbar {
  width: 100%;
  background-color: rgba(252, 225, 250, 0.95);
  
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: #7985f1;
  font-weight: bold;
  font-size: 1.1rem;
   
}

.navbar a:hover {
  color: #ff69b4;
  
}


.hero {
  background-image: url('img/kier-in-sight-archives-0Sua_2OgbCU-unsplash.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding-top: 60px; /* espaço pro menu fixo */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero-button {
  display: inline-block;
  text-decoration: none;
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;

}

.hero-button:hover {
  background-color: #d63384;
   transform: scale(1.05);
}


.produtos {
  padding: 40px 20px;
  text-align: center;
  background-color: #fdf6f9;
  
}

.grade-produtos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card-produto {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  transition: transform 0.3s;
  
}

.card-produto:hover {
  transform: scale(1.05);
}

.card-produto img {
  width: 220px;
  height: 220px;
  border-radius: 8px;
}

.card-produto h3 {
  font-size: 1.1em;
  margin: 10px 0 5px;
  
}

.card-produto p {
  font-weight: bold;
  color: #d63384;
}

.card-produto button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.card-produto button:hover {
  background-color: #d63384;
}


#contato {
  background-color: #9370DB; /* roxo claro */
  padding: 40px 0;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  width: 100%;
  
}

.formulario {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.formulario h2 {
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.formulario label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
  text-align: justify;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  margin-bottom: 20px;
}

.formulario button {
  background-color: #ff4da6;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
 
}

.formulario button:hover {
  background-color: #e04396;
}



