/* Garante que o botão fique abaixo do produto */
.produto-shelf, .shelf-product, .produto {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estiliza o botão principal de compra */
.produto-shelf .botao.principal, 
.shelf-product .botao.principal, 
.produto .botao.principal {
    background-color: #ff6600; /* Cor do botão */
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px; /* Espaçamento abaixo do produto */
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.produto-shelf .botao.principal:hover, 
.shelf-product .botao.principal:hover, 
.produto .botao.principal:hover {
    background-color: #cc5500;
}