/* 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 */
  main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  /* Seção de introdução: Título do produto em imagem */
  .intro {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .intro img {
    max-width: 250px;
    height: auto;
    display: inline-block;
  }
  
  /* Layout flex para a seção de detalhes do produto */
  .product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .product .left {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .product .right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  
  /* Estilos para a seção de detalhes */
  .product .right h2 {
    font-size: 1.8rem;
    color: #005b28;
    margin-bottom: 15px;
  }
  
  .product .right p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* Imagem do produto */
  .product .left img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  