* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fffaf7;
  color: #333;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d94f70;
}

.logo span {
  color: #ff9a8b;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(120deg, #ff9a8b, #ff6a88);
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  margin: 15px 0;
  max-width: 500px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #ff6a88;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* PRODUTOS */
.produtos {
  padding: 80px 8%;
  text-align: center;
}

.produtos h2 {
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #d94f70;
}

/* SOBRE */
.sobre {
  padding: 60px 8%;
  background: #fff0eb;
  text-align: center;
}

/* CONTATO */
.contato {
  padding: 60px 8%;
}

.contato form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato input,
.contato textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contato button {
  padding: 12px;
  border: none;
  background: #ff6a88;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 8%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
