/* Reset básico */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* Banner: imagem de fundo */
header img {
  width: 100%;
  height: auto;
  max-height: 400px; /* ajuste conforme necessário */
  object-fit: cover;
  display: block;
}

/* Container principal centralizado */
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: center;
}

/* Seção de introdução: título do produto (imagem) */
.intro {
  margin-bottom: 20px;
}

.intro img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Seção de detalhes do produto (texto) */
.details {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.details h2 {
  font-size: 1.8rem;
  color: #005b28;
  margin-bottom: 10px;
}

.details p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}
