* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

header {
  background: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #ffffff;
  margin-right: 22px;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #a57acc;
}

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-left: auto;
}


section {
  padding: 60px 0;
  text-align: center;
}

h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 50px 60px 50px;
}

.produto {
  background: #d4d1d1;
  border-radius: 15px;
  text-align: center;
  padding: 25px;
  transition: transform 0.3s;
}

.produto:hover {
  transform: scale(1.05);
}

.produto img {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.produto h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.produto p {
  font-size: 20px;
  font-weight: bold;
  color: #111;
}

footer {
  background: #333;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

footer .left, 
footer .right {
  max-width: 200px;
}

footer .center {
  text-align: center;
  font-weight: bold;
}

footer .center span {
  font-weight: normal;
  font-style: italic;
}
.produto {
  background-color: #4e124e;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.produto img {
  max-width: 200px;
  height: auto;
}
/*cmcaq*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}


header {
  background: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

header nav {
  display: flex;
}

header nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
}


.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px;
  color: white;
}

.banner-content {
  max-width: 600px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner p {
  font-size: 20px;
}

.banner button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}


.container, .form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}



@media (max-width: 768px) {

  
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  header nav {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  header nav a {
    margin: 8px 0;
    font-size: 18px;
  }

 
  .banner {
    height: 50vh;
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner h1 {
    font-size: 28px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    font-size: 16px;
    padding: 10px 20px;
  }

 
  .container, .form-container {
    padding: 20px;
    margin: 10px;
  }

 
  form input {
    font-size: 16px;
    padding: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 22px;
  }
  .banner p {
    font-size: 14px;
  }
  header nav a {
    font-size: 14px;
  }
}
