* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    body {
      background: #f9f9f9;
      color: #333;
      padding: 20px;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      display: flex;
      gap: 40px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .imagem-area {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    .produto-imagem {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .info-area {
      flex: 1;
      min-width: 300px;
    }
    .titulo {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 10px;
      color: #1e3a8a;
    }
    .descricao {
      font-size: 16px;
      margin-bottom: 30px;
    }
    label {
      font-weight: 600;
      display: block;
      margin-top: 20px;
    }
    select, input[type="number"] {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }
    .botao-whats {
      margin-top: 30px;
      display: inline-block;
      background-color: #25D366;
      color: white;
      padding: 15px 25px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }
    .botao-whats:hover {
      background-color: #1ebe5d;
    } 
/*Descrição do produto panfleto outros produtos*/
    .descricao-complementar {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
