.logo a img {
    position: absolute;
    top: 70PX;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 190%;
}
.solicitar-orcamento {
    text-align: center; /* Centraliza o botão */
    margin: 20px 0;
}

.btn-orcamento {
    display: inline-block;
    padding: 12px 263px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho de fonte padrão */
    text-decoration: none;
    background-color: #343c93; /* Cor do botão */
    color: white;
    border-radius: 5px; /* Bordas arredondadas */
    transition: background-color 0.3s ease; /* Animação ao passar o mouse */
    border: none;
    position: absolute;
    top: 670px;
    left: auto;
    width: auto;
    
}     /* EFFECTS BOTAO ORÇAMENTO */

.btn-orcamento {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-orcamento:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-orcamento:hover {
    background-color: #e25c36; /* Cor ao passar o mouse */
}

/* Tornando o botão responsivo */
@media (max-width: 768px) {
    .btn-orcamento {
        padding: 10px 20px; /* Ajusta o espaçamento em telas menores */
        font-size: 14px; /* Reduz o tamanho da fonte em telas menores */
    }
}

@media (max-width: 480px) {
    .btn-orcamento {
        padding: 8px 16px; /* Espaçamento menor para dispositivos móveis */
        font-size: 12px; /* Tamanho da fonte mais reduzido */
    }
}

#cabecalho .menu.superior {
    margin-top: 36PX;
    text-align: center;
    background: var(--principal, inherit);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.7); /* sombra suave */
}

#cabecalho>.conteiner .main-header .conteudo-topo .busca input {
    appearance: none;
    width: 441px;
    height: 40px;
    padding: 0 45px 0 15px;
    border: 1px solid #ccc;
    border-radius: 18px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: none;
    /*! alterado  */
}
/*! NOVO CODIGO ALTERADO DENTRO DO PRODUTOS  */
#cabecalho>.conteiner>.row-fluid {
    width:1180px;
    max-width:100%;
    margin:auto;
    /*! top: 40px; */margin-top: 22px;
  }
#cabecalho>.conteiner .main-header .conteudo-topo {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-top: 33px;
}

/* CARRINHO BOTÃO NOVO */
.ver-carrinho {
    text-align: center; /* Centraliza o botão */
    margin-top: 10px; /* Espaço entre os botões */
}

.btn-carrinho {
    display: inline-block;
    padding: 12px 201px; /* Mesmo tamanho do botão de orçamento */
    font-size: 16px;
    text-decoration: none;
    background-color: #343C93; /* Cor do botão (Verde WhatsApp) */
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    position: absolute;
    top: 720px; /* Ajusta a posição abaixo do botão de orçamento */
    left: auto;
    width: auto;
}

/* Efeitos ao passar o mouse */
.btn-carrinho {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-carrinho:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    background-color: #f16239;
}

/* Tornando o botão responsivo */
@media (max-width: 768px) {
    .btn-carrinho {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-carrinho {
        padding: 8px 16px;
        font-size: 12px;
    }
}

 /* CARRINHO DE PRODUTOS */
#carrinho-produtos {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-top: 20px;
}

.item-carrinho {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.item-carrinho p {
    margin: 5px 0;
}

.item-carrinho button {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.item-carrinho button:hover {
    background-color: darkred;
}

@media (max-width: 1920px) {
    .slides img {
        width: 100%; /* Ajusta para a largura total da tela em dispositivos menores */
        height: auto;
    }
}

#corpo .listagem .listagem-item .acoes-produto .botao {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 16px 20px 15px;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    background-image: none;
    transform: translate(-50%,-50%);
    pointer-events: all
}