/* ===================================
   E-AUTO PEÇAS - CSS CORRIGIDO
   =================================== */

/* ===== TOPO ===== */
#cabecalho {
    background: #070808;
}

#cabecalho .busca input {
    border-radius: 30px;
    padding: 8px 12px;
    border: 1px solid #ddd;
}

/* ===== MENU ===== */
.menu.superior {
    background: #2687d1;
}

.menu.superior .nivel-um > li > a {
    color: #ffffff;
    font-weight: 600;
}

/* ===== TITULOS ===== */
.titulo {
    color: #0d47a1;
    font-weight: bold;
    text-transform: uppercase;
}

/* ===== PRODUTOS ===== */
.listagem .produto {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 10px;
}

.listagem .produto:hover {
    transform: translateY(-4px);
}

/* IMAGEM */
.listagem .produto .imagem-produto img {
    border-radius: 8px;
}

/* PREÇO */
.preco-promocional,
.preco-a-vista,
.preco-venda {
    color: #0d47a1;
    font-weight: bold;
    font-size: 18px;
}

/* BOTÃO */
.botao.principal {
    background: #0d47a1;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.botao.principal:hover {
    background: #08306b;
}

/* ===== RODAPÉ ===== */
#rodape {
    background: #0d47a1;
    color: #ffffff;
}

/* ===================================
   RESPONSIVO
   =================================== */

/* MOBILE - 2 COLUNAS */
@media screen and (max-width: 768px) {

    .listagem ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between;
    }

    .listagem .produto {
        width: 48% !important;
        margin-bottom: 15px !important;
    }

    .listagem .produto .nome-produto {
        font-size: 13px;
        min-height: 38px;
    }

    #cabecalho .busca input {
        width: 100%;
    }
}