<!DOCTYPE html>
<html lang="pt-BR">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Fist Store — Loja Oficial</title>
    <meta name="description" content="Bem-vindo à Fist Store! Produtos originais, entrega rápida e preços exclusivos.">

    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            color: #222;
        }

        header {
            background: #000;
            color: #fff;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        header h1 {
            margin: 0;
            font-size: 26px;
            font-weight: bold;
        }

        nav a {
            color: white;
            margin-left: 20px;
            text-decoration: none;
            font-size: 16px;
        }

        .banner {
            width: 100%;
            height: 320px;
            background: url('https://via.placeholder.com/1400x400/000000/FFFFFF?text=FIST+STORE') center/cover no-repeat;
        }

        h2 {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 28px;
            font-weight: bold;
        }

        .produtos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            padding: 20px 40px;
        }

        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
            padding-bottom: 20px;
            overflow: hidden;
            text-align: center;
            transition: .2s;
        }

        .card:hover {
            transform: translateY(-6px);
        }

        .card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .nome-produto {
            font-size: 18px;
            margin: 15px 0 5px;
        }

        .preco {
            font-size: 22px;
            color: #10AC61;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .btn {
            background: #10AC61;
            color: #fff;
            border: none;
            padding: 12px 22px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: .2s;
        }

        .btn:hover {
            background: #0e8c52;
        }

        footer {
            background: #000;
            color: #fff;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
        }
    </style>
</head>

<body>

    <!-- HEADER -->
    <header>
        <h1>Fist Store</h1>

        <nav>
            <a href="#">Início</a>
            <a href="#produtos">Produtos</a>
            <a href="#contato">Contato</a>
        </nav>
    </header>

    <!-- BANNER -->
    <div class="banner"></div>

    <h2 id="produtos">Nossos Produtos</h2>

    <!-- PRODUTOS -->
    <div class="produtos">

        <div class="card">
            <img src="https://via.placeholder.com/500x500.png?text=Produto+1" alt="Produto 1">
            <div class="nome-produto">Perfume Masculino Fist</div>
            <div class="preco">R$ 129,90</div>
            <button class="btn">Comprar</button>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/500x500.png?text=Produto+2" alt="Produto 2">
            <div class="nome-produto">Perfume Feminino Fist</div>
            <div class="preco">R$ 139,90</div>
            <button class="btn">Comprar</button>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/500x500.png?text=Produto+3" alt="Produto 3">
            <div class="nome-produto">Desodorante Premium</div>
            <div class="preco">R$ 49,90</div>
            <button class="btn">Comprar</button>
        </div>

    </div>

    <!-- FOOTER -->
    <footer id="contato">
        © 2025 Fist Store — Todos os direitos reservados<br>
        contato@fiststore.com.br
    </footer>

</body>

</html>
