body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f9f7;
            margin: 0;
            padding: 40px;
            color: #1f2937;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        h1 {
            color: #2b8a3e;
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
            border: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
        }

        .imagem-produto {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
            background-color: #f3f4f6;
            /* Cor de fundo caso a imagem demore a carregar */
        }

        .sem-foto {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e5e7eb;
            border-radius: 8px;
            font-size: 48px;
            margin-bottom: 12px;
        }

        .nome {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 8px;
            color: #111827;
        }

        .categoria {
            font-size: 12px;
            color: #6b7280;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .preco {
            color: #2b8a3e;
            font-weight: 800;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .btn-comprar {
            background: #2b8a3e;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            margin-top: auto;
            transition: 0.2s;
        }

        .btn-comprar:hover {
            background: #15803d;
        }