* { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
body { background:#f4f4f4; color:#333; line-height:1.6; }
.container { width:90%; max-width:1200px; margin:auto; }

header { background:#1e90ff; color:#fff; padding:20px 0; text-align:center; }
header h1 { font-size:2rem; }

.produtos { padding:40px 0; }
.produtos h2 { text-align:center; margin-bottom:30px; }
.categoria-title { margin:20px 0 10px; font-size:1.4rem; color:#1e90ff; }

.grid-produtos { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }

.produto-card { background:#fff; padding:20px; border-radius:10px; text-align:center; box-shadow:0 4px 8px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; }
.produto-card:hover { transform:translateY(-5px); box-shadow:0 8px 16px rgba(0,0,0,0.2); }
.produto-card img { width:100%; height:200px; object-fit:contain; border-radius:10px; margin-bottom:15px; }
.produto-card h3 { margin-bottom:10px; font-size:1.2rem; }
.produto-card p { font-size:0.95rem; margin-bottom:10px; color:#555; }
.btn-comprar { display:inline-block; padding:10px 20px; background:#ff6347; color:#fff; border-radius:5px; text-decoration:none; font-weight:bold; transition:background 0.2s; }
.btn-comprar:hover { background:#e5533d; }

footer { background:#333; color:#fff; padding:20px 0; text-align:center; }