/* ==========================
   TABELA DE PREÇOS PREMIUM
========================== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; }

body {
    background-color: #fefaf5; /* Bege clarinho fundo */
    color: #2d2d2d;
    padding-bottom: 40px;
}

/* CABEÇALHO */
.topo {
    background: #1a0b00 url('../assets/img/thumb_entrega.jpg') center/cover;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 4px solid #eea31b;
    margin-bottom: 30px;
}

.topo h1 {
    font-family: "Merriweather", serif;
    font-size: 2.2rem;
    color: #eea31b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.sub { font-size: 1rem; opacity: 0.9; margin-top: 5px; }

/* LAYOUT PRINCIPAL */
#conteudo {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

section { margin-bottom: 50px; }

section h2 {
    font-family: "Merriweather", serif;
    color: #7a3405;
    border-bottom: 2px solid #eea31b;
    display: inline-block;
    margin-bottom: 25px;
    padding-right: 20px;
    font-size: 1.8rem;
}

/* CARD DO ITEM */
.item-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    border: 1px solid #eaddcf;
    transition: transform 0.2s;
}

.item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #eea31b;
}

/* FOTO */
.item-thumb {
    width: 130px;
    flex-shrink: 0;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTEÚDO */
.item-content {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TÍTULO E PREÇO */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.nome {
    font-weight: 700;
    font-size: 1.1rem;
    color: #3b1600;
}

.valor {
    font-weight: 800;
    color: #eea31b; /* Dourado Preço */
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 10px;
}

/* DESCRIÇÃO E DETALHES */
.marketing {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
    font-style: italic;
}

.tags {
    font-size: 0.85rem;
    color: #7a3405;
    font-weight: 600;
    background: #fff4e0;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
    margin-right: 5px;
}

/* RODAPÉ */
footer { text-align: center; margin-top: 40px; }
.btn-voltar {
    display: inline-block;
    background: #2b0b00;
    color: #eea31b;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}
.btn-voltar:hover { background: #461200; }

/* RESPONSIVO (CELULAR) */
@media (max-width: 600px) {
    .item-card {
        flex-direction: column;
    }
    .item-thumb {
        width: 100%;
        height: 160px;
    }
    .item-header {
        flex-direction: column; /* Preço embaixo do nome no celular */
        gap: 5px;
    }
    .valor {
        margin-left: 0;
        color: #eea31b; /* Dourado no mobile fica chique */
        font-size: 1.3rem;
    }
}

/* ==================================================
   NOVOS BOTÕES DE CHAMADA (Adicione ao precos.css)
================================================== */

/* Botão "Peça agora" dentro de cada item */
.btn-pedir-item {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background-color: #f4cb00; /* Verde WhatsApp */
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pedir-item:hover {
    background-color: #f1a604;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Ajuste do Header para ter um botão também */
.topo {
    position: relative;
}

/* (Opcional) Botão Flutuante "Fazer Pedido" no rodapé da página de preços */
.btn-flutuante-pedido {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #eea31b;
    color: #3b1600;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 100;
    text-decoration: none;
    border: 2px solid #fff;
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}