<title>ANAS PRODUTOS ARTESANAIS EM GERAL</title>
<style>
/* Estilo Geral */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f4f0;
color:
#333;
}
header {
background-color: #d4a373; /* Tom terroso artesanal */
color: white;
padding: 2rem;
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.container {
max-width: 1000px;
margin: auto;
padding: 20px;
}
/* Vitrine de Produtos */
.vitrine {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.produto-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
transition: transform 0.3s;
text-align: center;
padding-bottom: 20px;
}
.produto-card:hover {
transform: translateY(-5px);
}
.produto-img {
width: 100%;
height: 200px;
background-color: #e9edc9;
display: flex;
align-items: center;
justify-content: center;
color: #606c38;
font-weight: bold;
}
.btn-comprar {
background-color: #bc6c25;
color: white;
border: none;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
text-decoration: none;
font-weight: bold;
}
footer {
text-align: center;
padding: 40px;
font-size: 0.9rem;
color:
#666;
}
</style>
ANAS PRODUTOS ARTESANAIS EM GERAL
Feito à mão, com amor e exclusividade
<div class="container">
<h2 style="text-align: center;">Nossos Produtos</h2>
<div class="vitrine">
<!-- Produto 1 -->
<div class="produto-card">
<div class="produto-img">FOTO DO PRODUTO</div>
<h3>Item Especial 01</h3>
<p>R$ 45,90</p>
<button class="btn-comprar">Encomendar</button>
</div>
<!-- Produto 2 -->
<div class="produto-card">
<div class="produto-img">FOTO DO PRODUTO</div>
<h3>Item Especial 02</h3>
<p>R$ 32,00</p>
<button class="btn-comprar">Encomendar</button>
</div>
<!-- Produto 3 -->
<div class="produto-card">
<div class="produto-img">FOTO DO PRODUTO</div>
<h3>Item Especial 03</h3>
<p>R$ 89,00</p>
<button class="btn-comprar">Encomendar</button>
</div>
</div>
</div>
<footer>
<p>© 2026 ANAS PRODUTOS ARTESANAIS EM GERAL <br> Entre em contato para encomendas personalizadas.</p>
</footer>
ANAS PRODUTOS ARTESANAIS EM GERAL
Feito à mão, com amor e exclusividade