/* 🔹 1. Ajustar o Cabeçalho e Menu */
header {
    height: 50px !important;
    background-color: #fff !important;
}

header .logo img {
    max-height: 40px !important;
}

header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
}

/* 🔹 2. Melhorar a Exibição dos Produtos na Home */
.listagem-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 15px !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 15px !important;
}

/* 🔹 3. Ajustar as Imagens dos Produtos */
.listagem-item .imagem-produto {
    width: 100% !important;
    text-align: center !important;
}

.listagem-item .imagem-produto img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

/* 🔹 4. Melhorar a Disposição das Informações do Produto */
.listagem-item .info-produto {
    width: 100% !important;
    text-align: center !important;
    margin-top: 10px !important;
}

.listagem-item .nome-produto {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* 🔹 5. Destacar o Preço e Parcelamento */
.listagem-item .preco-produto {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #000 !important;
}

.listagem-item .preco-parcela {
    font-size: 14px !important;
    color: #4CAF50 !important;
    margin-top: 5px !important;
}

/* 🔹 6. Ajustar o Botão "Comprar" */
.listagem-item .acoes-produto {
    width: 100% !important;
    text-align: center !important;
    margin-top: 10px !important;
}

.listagem-item .acoes-produto .botao-comprar {
    width: 90% !important;
    padding: 12px !important;
    border: 2px solid #000 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    border-radius: 5px !important;
    text-align: center !important;
    font-weight: bold !important;
    transition: all 0.3s ease-in-out;
}

/* ✅ Correção: Removendo botões extras */
.listagem-item .acoes-produto .botao-comprar + .botao-comprar {
    display: none !important;
}

/* Efeito hover no botão */
.listagem-item .acoes-produto .botao-comprar:hover {
    background-color: #333 !important;
}

/* 🔹 7. Ajustar o Botão do WhatsApp */
.whatsapp-button {
    position: fixed !important;
    bottom: 15px !important;
    right: 15px !important;
    width: 55px !important;
    height: 55px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999 !important;
}

.whatsapp-button img {
    width: 30px !important;
    height: auto !important;
}

/* 🔹 8. Criar um Banner Fixo para Promoções */
.banner-promocao {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #ffcc00 !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-align: center !important;
    padding: 5px 0 !important;
    z-index: 9999 !important;
}

/* 🔹 9. Melhorar a Exibição no Checkout */
.checkout-container {
    padding: 15px !important;
    background: #f9f9f9 !important;
    border-radius: 10px !important;
}

/* 🔹 10. Melhorar a Legibilidade dos Textos */
body {
    font-size: 16px !important;
    color: #333 !important;
}
