   
body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f8f8f8;
        color: #333;
	}

 .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            background-color: #000;
            color: #ffcc00;
        }

 .header img {
        height: 95px; /* Ajuste o tamanho da logo */
    }

        .header h1 {
            margin: 0;
            font-size: 20px;
        }

        .header p {
            margin: 0;
            font-size: 12px;
        }

        .content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            padding: 20px;
        }

        .product-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .product-card:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .product-card img {
            width: 100%;
            height: auto;
        }

        .product-info {
            padding: 10px;
        }

        .product-info h2 {
            font-size: 14px;
            margin: 8px 0;
            color: #000;
        }

        .product-info p {
            font-size: 13px;
            color: #666;
        }

        .buy-button {
            display: inline-block;
            margin-top: 5px;
            background-color: #ffcc00;
            color: #000;
            padding: 8px 15px;
            text-decoration: none;
            font-size: 13px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .buy-button:hover {
            background-color: #e6b800;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: #000;
            color: #ffcc00;
        }


 
/* Estilo geral */
.categories {
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.categories p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Estilo para as caixas de categoria */
.category-box {
    display: inline-block;
    width: 150px;
    margin: 20px;
    text-decoration: none;
}

.category-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-name {
    text-align: center;
    padding: 10px 0;
    background-color: #FFA500; /* Cor alaranjada */
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 0 5px 5px;
}