<!DOCTYPE html>
<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Meyrelles SX - Instrumentais Cirúrgicos</title>
  <link href="https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap" rel="stylesheet">
  <style>
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #222;
    }

    header {
      background: #fff;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header nav a {
      margin: 0 10px;
      text-decoration: none;
      color: #222;
      font-weight: 500;
    }

    .hero {
      background: #eef1f5;
      padding: 60px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .hero p {
      margin-bottom: 20px;
    }

    .btn-primary {
      background: #2563eb;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
    }

    .section {
      padding: 40px 20px;
      text-align: center;
    }

    .products {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .product-card {
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      max-width: 220px;
    }

    .product-card img {
      max-width: 100%;
      border-radius: 8px;
    }

    .benefits ul {
      list-style: none;
      padding: 0;
    }

    .benefits ul li::before {
      content: '✔';
      color: green;
      margin-right: 8px;
    }

    footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }
  </style>
</head>
<body>
  <header>
    <h2>Meyrelles SX</h2>
    <nav>
      <a href="#">Home</a>
      <a href="#produtos">Produtos</a>
      <a href="#kits">Kits</a>
      <a href="#sobre">Sobre</a>
      <a href="#contato">Contato</a>
    </nav>
  </header>

  <section class="hero">
    <h1>Conheça nossos Kits Profissionais</h1>
    <p>Descontos especiais para estudantes</p>
    <button class="btn-primary">Ver Kits</button>
  </section>

  <section class="section" id="produtos">
    <h2>Destaques</h2>
    <div class="products">
      <div class="product-card">
        <img src="URL_DA_IMAGEM_1" alt="Kit Estudante Medicina">
        <p>Kit Estudante Medicina</p>
      </div>
      <div class="product-card">
        <img src="URL_DA_IMAGEM_2" alt="Kit Veterinária">
        <p>Kit Veterinária</p>
      </div>
      <div class="product-card">
        <img src="URL_DA_IMAGEM_3" alt="Pinça Anatômica Inox">
        <p>Pinça Anatômica Inox</p>
      </div>
    </div>
  </section>

  <section class="section">
    <h2>Personalize seu Kit</h2>
    <button class="btn-primary">Começar Agora</button>
  </section>

  <section class="section benefits">
    <h2>Por que escolher a Meyrelles SX?</h2>
    <ul>
      <li>Aço inox cirúrgico 316L</li>
      <li>Garantia de 1 ano</li>
      <li>Enviamos para todo o Brasil</li>
      <li>Parcelamento em até 6x</li>
    </ul>
  </section>

  <section class="section">
    <h2>Depoimentos de Clientes</h2>
    <p>"Comprei pra faculdade, chegou rápido demais!" ⭐️⭐️⭐️⭐️⭐️</p>
  </section>

  <footer>
    <p>Instagram | TikTok | Facebook</p>
    <p>CNPJ: 93 1145374</p>
  </footer>
</body>
</html>
