* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #000;
}

.header a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.logo {
  font-weight: bold;
  color: gold;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 90vh;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  margin: 15px 0;
}

.hero-text button {
  padding: 12px 25px;
  background: gold;
  border: none;
  cursor: pointer;
}

/* PRODUTO GIRANDO */
.hero-product {
  perspective: 1000px;
  padding: 20px;
}

.product {
  width: 500px;
  height: 333px;
  background: linear-gradient(45deg, gold, #333);
  background-image: url(image/Logo.png);
  animation: spin 10s infinite linear;
  border-radius: 10px;
}

@keyframes spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* BENEFÍCIOS */
.benefits {
  display: flex;
  justify-content: space-around;
  padding: 0px;
}

.benefit {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

/* PRODUTOS */
.products {
  padding: 0px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background: #111;
  padding: 30px;
  border-radius: 10px;
}

/* STEPS */
.steps {
  padding: 50px;
  text-align: center;
}

/* INGREDIENTE */
.ingredient {
  padding: 60px;
  background: #111;
  text-align: center;
}

/* CONTATO */
.contact {
  padding: 50px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  background: gold;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    flex-direction: column;
  }

  .benefits {
    flex-direction: column;
    gap: 20px;
  }
}