header {
    background-color: white;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
header img {
    max-width: 220px;
    height: auto;
}
.footer {
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #333;
}
.footer a {
    color: #007bff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 8px;
    font-weight: bold;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}

* {margin: 0; padding: 0; box-sizing: border-box;}
    body {font-family: Arial, sans-serif; background: #fff;}
    header {padding: 20px; text-align: center;}
    .tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .tabs a {
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      color: #007bff;
      background-color: #e6f0fa;
      transition: 0.2s;
    }
    .tabs a:hover {
      background-color: #007bff;
      color: white;
    }
    h2 {
      text-align: center;
      margin: 10px 0;
    }
    .subtitle {
      text-align: center;
      margin-bottom: 15px;
      color: #333;
      font-size: 14px;
    }
    .produtos {
      padding: 0 15px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 40px;
    }
    .item {
      display: flex;
      gap: 10px;
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 10px;
      align-items: center;
      cursor: pointer;
    }
    .item img {
      width: 70px;
      height: 70px;
      border-radius: 8px;
      object-fit: cover;
    }
    .info {
      flex: 1;
    }
    .info h4 {
      margin-bottom: 5px;
      font-size: 16px;
    }
    .info p {
      font-size: 13px;
      color: #666;
    }
    .preco {
      font-weight: bold;
      color: #555;
      margin-top: 4px;
    }
    footer {
      position: fixed;
      bottom: 50px;
      left: 10px;
    }
    .menu-btn {
      background: #007bff;
      color: white;
      padding: 15px;
      border-radius: 50%;
      text-align: center;
      font-size: 25px;
      text-decoration: none;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    html {
      scroll-behavior: smooth;
    }

    /* === MODAL FULL === */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: white;
      display: none;
      flex-direction: column;
      z-index: 999;
      overflow-y: scroll
    }
    .modal img {
      width: 100%;
    }
    .modal .content {
      padding: 20px;
    }
    .modal .content h2 {
      text-align: left;
    }
    .modal .content p {
      margin-top: 5px;
      color: #444;
      font-size: 14px;
    }
    .modal .content .preco {
      margin-top: 10px;
      color: #777;
      font-weight: bold;
      font-size: 16px;
    }
    .fechar {
      position: fixed;
      top: 15px;
      right: 15px;
      background: white;
      color: #333;
      border: 1px solid #ccc;
      border-radius: 50%;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
      z-index: 1000;
    }