<!DOCTYPE html>
<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Larimar Beauty</title>
  
  <!-- Google Tag Manager -->
  <script>
  (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  })(window,document,'script','dataLayer','GTM-PCVM4Z8H');
  </script>
  <!-- End Google Tag Manager -->

  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
  <style>
    header {
      text-align: center;
      margin-top: 2rem;
    }
    nav ul {
      display: flex;
      justify-content: center;
      list-style-type: none;
      padding: 0;
    }
    nav ul li {
      margin: 0 1rem;
    }
    .product {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      background-color: #f9f9f9;
      border-radius: 8px;
      margin-bottom: 2rem;
    }
    .product-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .product-description {
      text-align: center;
      margin-top: 1rem;
    }
    .button-primary {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
    }
    .button-primary:hover {
      background-color: #0056b3;
    }
    .testimonial {
      text-align: center;
      font-style: italic;
      padding: 1rem;
      background-color: #f1f1f1;
      border-radius: 8px;
    }
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #222;
      color: white;
      margin-top: 2rem;
    }
  </style>
</head>
<body>
  <!-- Google Tag Manager (noscript) -->
  <noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PCVM4Z8H" height="0" width="0" style="display:none;visibility:hidden"></iframe>
  </noscript>
  <!-- End Google Tag Manager (noscript) -->

  <!-- Google tag (gtag.js) -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=AW-16449275405"></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());
    gtag('config', 'AW-16449275405');
  </script>

  <header>
    <h1>Larimar Beauty</h1>
  </header>
  <nav class="container-fluid">
    <ul>
      <li><strong>Larimar Beauty</strong></li>
    </ul>
    <ul>
      <li><a href="#produtos">Produtos</a></li>
      <li><a href="#blog">Blog</a></li>
      <li><a href="#contato">Contato</a></li>
    </ul>
  </nav>
  <main class="container">
    <section id="produtos" class="grid">
      <div class="product">
        <img src="produto1.jpg" alt="Produto 1" class="product-image">
        <div class="product-description">
          <h2>Produto 1</h2>
          <p>Descrição detalhada do produto 1.</p>
          <button class="button-primary">Comprar Agora</button>
        </div>
      </div>
    </section>
    <section id="testemunhos" class="grid">
      <div class="testimonial">
        <p>"Amei o produto! Recomendo a todos!" - Cliente Satisfeito</p>
      </div>
    </section>
  </main>
  <section aria-label="Subscribe example">
    <div class="container">
      <article>
        <hgroup>
          <h2>Assine nossa newsletter</h2>
          <h3>Receba novidades e ofertas exclusivas</h3>
        </hgroup>
        <form class="grid">
          <input type="text" id="firstname" name="firstname" placeholder="Nome" aria-label="Nome" required />
          <input type="email" id="email" name="email" placeholder="Email" aria-label="Email" required />
          <button type="submit" onclick="event.preventDefault()">Assinar</button>
        </form>
      </article>
    </div>
  </section>
  <footer class="container">
    <small><a href="#">Política de Privacidade</a> • <a href="#">Termos de Uso</a></small>
    <p>&copy; 2024 Larimar Beauty. Todos os direitos reservados.</p>
  </footer>

  <script>
  document.addEventListener('DOMContentLoaded', function() {
    setTimeout(function() {
      if (!document.cookie.includes('offer_shown')) {
        alert('Bem-vindo! Use o código BEMVINDO para 10% de desconto na sua primeira compra!');
        document.cookie = 'offer_shown=true; max-age=86400'; // 24 horas
      }
    }, 3000); // Exibe após 3 segundos
  });
  </script>
</body>
</html>