:root{
    --wiliete-green:#0FA958;
    --wiliete-dark:#061C2F;
    --wiliete-gold:#F5B800;
    --wiliete-light:#0E2A47;
}

body{
    background:linear-gradient(135deg,#061C2F,#0E2A47);
    color:#fff;
    font-family:'Segoe UI',sans-serif;
}

/* Cards Produtos */
.product-card{
    background:#0B223A;
    border-radius:16px;
    padding:18px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.6);
}

/* Imagem */
.product-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
}

/* Preço */
.price{
    color:var(--wiliete-gold);
    font-weight:bold;
    font-size:18px;
}

/* Botões */
.btn-wiliete{
    background:var(--wiliete-green);
    border:none;
    padding:10px 18px;
    border-radius:30px;
    color:#fff;
    font-weight:600;
}

.btn-wiliete:hover{
    background:#0cc96a;
}
