@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/CFPecas/Components/Layout/BarraDeBusca.razor.rz.scp.css */
.busca-container[b-misrahsce6] {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 12px 16px;
    width: 100%;
    margin-bottom: 10px;
    position: relative; /* IMPORTANTE */
}

.popup-container[b-misrahsce6] {
    position: absolute;
    top: 100%; /* Garante que o popup fique logo abaixo do input */
    left: 0;
    width: 100%;
}

.produto-popup[b-misrahsce6] {
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 100%;
    max-width: 600px;
    max-height: 300px;
    overflow-y: auto;
}

.busca-input[b-misrahsce6] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none; /* Remove a borda ao focar */
    color: #333;
    font-weight: bold;
}

.busca-icon[b-misrahsce6] {
    position: absolute;
    right: 12px; /* Ajuste conforme necessário */
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888; /* Cor da lupa */
    cursor: pointer;
}


.button[b-misrahsce6] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: darkred;
    background: linear-gradient(45deg, #C00415, #ff4d4d);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: -1px -1px 0 indianred, 1px -1px 0 indianred, -1px 1px 0 indianred, 1px 1px 0 indianred;
}

    .button[b-misrahsce6]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button:hover[b-misrahsce6]::before {
        width: 0;
        height: 0;
    }

    .button:hover[b-misrahsce6] {
        background: linear-gradient(45deg, #ff4d4d, #C00415);
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }

    .button.disabled[b-misrahsce6] {
        background: linear-gradient(45deg, #008000, #00cc00); /* Gradiente verde */
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }


/* Media Queries Modernos */

/* Para telas com largura máxima de 768px (tablets e alguns dispositivos menores) */
@media (max-width: 768px) {
    .busca-container[b-misrahsce6] {
        border-radius: 15px;
        padding: 10px 12px;
        margin-bottom: 8px;
    }

    .busca-input[b-misrahsce6] {
        font-size: 14px;
    }

    .busca-icon[b-misrahsce6] {
        font-size: 16px;
        right: 10px;
    }

    .button[b-misrahsce6] {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 6px;
    }
}

/* Para telas com largura máxima de 360px (smartphones menores) */
@media (max-width: 420px) {
    .busca-container[b-misrahsce6] {
        border-radius: 10px;
        padding: 8px 10px;
        margin-bottom: 6px;
    }

    .busca-input[b-misrahsce6] {
        font-size: 12px;
    }

    .busca-icon[b-misrahsce6] {
        font-size: 14px;
        right: 8px;
    }

    .button[b-misrahsce6] {
        padding: 6px 8px;
        font-size: 0; /* Esconde o texto */
        border-radius: 4px;
    }

        .button img[b-misrahsce6] {
            width: 18px;
            height: 18px;
            display: inline-block;
        }
}
/* _content/CFPecas/Components/Layout/Dialogo.razor.rz.scp.css */
.dialog-overlay[b-kks6g2iyp4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dialog-content[b-kks6g2iyp4] {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 500px; /* Ajuste a largura conforme necessário */
}

.dialog-header[b-kks6g2iyp4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.dialog-body[b-kks6g2iyp4] {
    padding: 20px;
}

.dialog-footer[b-kks6g2iyp4] {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.close-button[b-kks6g2iyp4] {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}


.fecha-botao[b-kks6g2iyp4] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

    .fecha-botao:hover[b-kks6g2iyp4] {
        color: red;
    }

/* Tablets e dispositivos menores */
@media (max-width: 768px) {
    .dialog-content[b-kks6g2iyp4] {
        width: 90%;
        max-width: 90%;
    }

    .dialog-body[b-kks6g2iyp4] {
        padding: 16px;
    }

    .dialog-footer[b-kks6g2iyp4] {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .pcbotaopadrao[b-kks6g2iyp4] {
        width: 100%;
    }
}

/* Smartphones pequenos */
@media (max-width: 420px) {
    .dialog-content[b-kks6g2iyp4] {
        width: 95%;
        max-width: 95%;
        border-radius: 4px;
    }

    .dialog-header h3[b-kks6g2iyp4] {
        font-size: 16px;
    }

    .dialog-body[b-kks6g2iyp4] {
        padding: 12px;
        font-size: 14px;
    }

    .dialog-footer[b-kks6g2iyp4] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .pcbotaopadrao[b-kks6g2iyp4] {
        font-size: 14px;
        padding: 10px;
    }

    .fecha-botao[b-kks6g2iyp4] {
        font-size: 20px;
    }
}
/* _content/CFPecas/Components/Layout/EnviaCotacao.razor.rz.scp.css */
.label-explicacao[b-hzjtuhxl3p] {
    font-size: 12px;
    color: #808080;
    display: block;
    margin-bottom: 2px; /* Reduzido o margin-bottom */
}

.modal-overlay[b-hzjtuhxl3p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-hzjtuhxl3p] {
    background-color: white;
    padding: 15px; /* Reduzido o padding */
    border-radius: 5px;
    width: 400px;
}

.form-group[b-hzjtuhxl3p] {
    margin-bottom: 10px; /* Reduzido o margin-bottom */
}

.fecha-botao[b-hzjtuhxl3p] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

    .fecha-botao:hover[b-hzjtuhxl3p] {
        color: red;
    }

.form-control[b-hzjtuhxl3p] {
    padding: 8px; /* Reduzido o padding */
    font-size: 14px; /* Reduzido o tamanho da fonte */
    line-height: 1.4; /* Ajustado a line-height */
}

#mensagem[b-hzjtuhxl3p] {
    height: 60px; /* Defina uma altura fixa ou ajuste conforme necessário */
}

.pcbotaopadrao[b-hzjtuhxl3p] {
    padding: 8px 15px; /* Reduzido o padding do botão */
}



/* Para tablets e telas até 768px */
@media (max-width: 768px) {
    .modal-content[b-hzjtuhxl3p] {
        width: 90%;
        padding: 12px;
    }

    h2[b-hzjtuhxl3p] {
        font-size: 20px;
    }

    .form-control[b-hzjtuhxl3p] {
        font-size: 13px;
        padding: 7px;
    }

    .pcbotaopadrao[b-hzjtuhxl3p] {
        width: 100%;
        font-size: 14px;
    }

    .g-recaptcha[b-hzjtuhxl3p] {
        transform: scale(0.95);
        transform-origin: 0 0;
    }
}

/* Para smartphones pequenos até 360px */
@media (max-width: 420px) {
    .modal-content[b-hzjtuhxl3p] {
        width: 95%;
        padding: 10px;
    }

    h2[b-hzjtuhxl3p] {
        font-size: 18px;
    }

    .form-control[b-hzjtuhxl3p] {
        font-size: 12px;
        padding: 6px;
    }

    .label-explicacao[b-hzjtuhxl3p] {
        font-size: 11px;
    }

    .pcbotaopadrao[b-hzjtuhxl3p] {
        width: 100%;
        font-size: 13px;
        padding: 10px;
    }

    .fecha-botao[b-hzjtuhxl3p] {
        font-size: 20px;
        top: 8px;
        right: 8px;
    }

    .g-recaptcha[b-hzjtuhxl3p] {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
/* _content/CFPecas/Components/Layout/EnviaMensagem.razor.rz.scp.css */
.label-explicacao[b-zcyrwpbnd9] {
    font-size: 12px; /* Fonte pequena */
    color: #808080; /* Cinza */
    display: block; /* Garante que fique acima do input */
    margin-bottom: 4px; /* Espaço entre o label e o input */
}


.contatos-container[b-zcyrwpbnd9] {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button[b-zcyrwpbnd9] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #C00415, #ff4d4d);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-top: 20px;
}

    .button[b-zcyrwpbnd9]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button:hover[b-zcyrwpbnd9]::before {
        width: 0;
        height: 0;
    }

    .button:hover[b-zcyrwpbnd9] {
        background: linear-gradient(45deg, #ff4d4d, #C00415);
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }



.button-wa[b-zcyrwpbnd9] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #25D366, #128C7E); /* Cores do WhatsApp */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-top: 20px;
}

    .button-wa[b-zcyrwpbnd9]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2); /* Branco transparente para o efeito */
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button-wa:hover[b-zcyrwpbnd9]::before {
        width: 0;
        height: 0;
    }

    .button-wa:hover[b-zcyrwpbnd9] {
        background: linear-gradient(45deg, #128C7E, #25D366); /* Inverte o gradiente no hover */
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }





.modal-content[b-zcyrwpbnd9] {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 400px; /* Ajuste conforme necessário */
}

.form-group[b-zcyrwpbnd9] {
    margin-bottom: 15px;
}

.fecha-botao[b-zcyrwpbnd9] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

    .fecha-botao:hover[b-zcyrwpbnd9] {
        color: red;
    }

/* Para tablets e telas até 768px */
@media (max-width: 768px) {
    .contato-container[b-zcyrwpbnd9] {
        padding: 20px;
        margin: 20px;
    }

    .modal-content[b-zcyrwpbnd9] {
        width: 90%;
    }

    .button[b-zcyrwpbnd9],
    .button-wa[b-zcyrwpbnd9] {
        width: 100%;
        margin-right: 0;
    }

    .form-group[b-zcyrwpbnd9] {
        margin-bottom: 12px;
    }

    .fecha-botao[b-zcyrwpbnd9] {
        top: 5px;
        right: 5px;
        font-size: 20px;
    }

    .g-recaptcha[b-zcyrwpbnd9] {
        transform: scale(0.8); /* Reduz em 20% */
        -webkit-transform: scale(0.8); /* Para navegadores mais antigos */
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}


/* Para smartphones pequenos até 420px */
@media (max-width: 420px) {
    .contato-container[b-zcyrwpbnd9] {
        padding: 10px;
        margin: 10px;
    }

    .modal-content[b-zcyrwpbnd9] {
        width: 100%;
        padding: 10px;
    }

    h2[b-zcyrwpbnd9] {
        font-size: 20px;
    }

    p[b-zcyrwpbnd9], label[b-zcyrwpbnd9], .label-explicacao[b-zcyrwpbnd9] {
        font-size: 14px;
    }

    .button[b-zcyrwpbnd9],
    .button-wa[b-zcyrwpbnd9] {
        font-size: 14px;
        padding: 10px;
        width: 100%;
    }

    .fecha-botao[b-zcyrwpbnd9] {
        font-size: 18px;
    }

    .form-group[b-zcyrwpbnd9] {
        margin-bottom: 10px;
    }

    .g-recaptcha[b-zcyrwpbnd9] {
        transform: scale(0.6); /* Reduz em 40% */
        -webkit-transform: scale(0.6); /* Para navegadores mais antigos */
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

/* _content/CFPecas/Components/Layout/GoogleMapa.razor.rz.scp.css */
iframe[b-9xrvraviwp] {
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.mapa-titulo[b-9xrvraviwp] {
    font-family: 'Poppins', sans-serif;
    text-align: left;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #808080ff;
}

/*@media para telas menores*/

@media (max-width: 768px) {
    iframe[b-9xrvraviwp] {
        height: 300px;
        border-radius: 10px;
    }

    .mapa-titulo[b-9xrvraviwp] {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    body[b-9xrvraviwp] {
        padding: 0 16px;
    }
}

@media (max-width: 420px) {
    iframe[b-9xrvraviwp] {
        height: 250px;
        border-radius: 8px;
    }

    .mapa-titulo[b-9xrvraviwp] {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 10px;
        padding: 0 8px;
    }

    body[b-9xrvraviwp] {
        padding: 0 12px;
    }
}
/* _content/CFPecas/Components/Layout/HistoricoNavega.razor.rz.scp.css */
.caminho[b-1jhj54ths6] {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    background-color: #f0f0f0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    color: #C00415;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

    .caminho[b-1jhj54ths6]::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

.breadcrumb-link[b-1jhj54ths6] {
    text-decoration: none;
    color: gray;
    margin: 0 5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover[b-1jhj54ths6] {
        color: darkslategray;
    }

.seta[b-1jhj54ths6] {
    color: #999;
    margin: 0 5px;
}

.mostrar-tudo[b-1jhj54ths6] {
    background: none;
    border: none;
    color: #666;
    font-weight: bold;
    cursor: pointer;
    padding: 0 5px;
}

    .mostrar-tudo:hover[b-1jhj54ths6] {
        text-decoration: underline;
    }

/* Responsivo */
@media (max-width: 768px) {
    .caminho[b-1jhj54ths6] {
        font-size: 0.95rem;
        padding: 8px;
    }
}

@media (max-width: 420px) {
    .caminho[b-1jhj54ths6] {
        font-size: 0.85rem;
        padding: 6px;
        display: none;
    }
}
/* _content/CFPecas/Components/Layout/ListaOrcamento.razor.rz.scp.css */
/* Estilos Globais */
body[b-9ynqtcv6c0], ul[b-9ynqtcv6c0], li[b-9ynqtcv6c0] {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.button[b-9ynqtcv6c0] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #C00415, #ff4d4d);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-right:20px;
    margin-top: 20px;
}

    .button[b-9ynqtcv6c0]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button:hover[b-9ynqtcv6c0]::before {
        width: 0;
        height: 0;
    }

    .button:hover[b-9ynqtcv6c0] {
        background: linear-gradient(45deg, #ff4d4d, #C00415);
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }

.lista-itens[b-9ynqtcv6c0] {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}

.item-lista[b-9ynqtcv6c0] {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

    .item-lista:last-child[b-9ynqtcv6c0] {
        border-bottom: none;
    }

    .item-lista img[b-9ynqtcv6c0] {
        margin-right: 20px;
        border-radius: 5px;
        width: 100px; /* Largura fixa */
        aspect-ratio: 4 / 3; /* Proporção da imagem original */
    }

.detalhes-item[b-9ynqtcv6c0] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.referencia[b-9ynqtcv6c0] {
    font-weight: bold;
    color: #333;
}

.descricao[b-9ynqtcv6c0] {
    color: #666;
    margin-bottom: 5px;
}

.quantidade-controle[b-9ynqtcv6c0] {
    display: flex;
    align-items: center;
}

    .quantidade-controle button[b-9ynqtcv6c0] {
        padding: 5px 10px;
        margin: 0 5px;
        background-color: #f0f0f0;
        color: #333;
    }

        .quantidade-controle button:hover[b-9ynqtcv6c0] {
            background-color: #e0e0e0;
        }

.botao-excluir[b-9ynqtcv6c0] {
    cursor: pointer;
    color: #d9534f;
    margin-left: 10px;
}

p[b-9ynqtcv6c0] {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    color: #333;
}


.quantity-controls[b-9ynqtcv6c0] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc; /* Adiciona uma borda leve */
    border-radius: 4px; /* Arredonda os cantos */
    overflow: hidden; /* Garante que nada vaze da borda */
}

.quantity-controls button[b-9ynqtcv6c0] {
    background-color: #f0f0f0; /* Cor de fundo clara */
    border: none;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transição suave na cor de fundo */
}

    .quantity-controls button:hover[b-9ynqtcv6c0] {
        background-color: #e0e0e0; /* Cor de fundo mais escura no hover */
    }

    .quantity-controls button:active[b-9ynqtcv6c0] {
        background-color: #d0d0d0; /* Cor de fundo ainda mais escura ao clicar */
    }

.quantity-controls .quantity[b-9ynqtcv6c0] {
    padding: 8px 12px;
    font-size: 1rem;
    border-left: 1px solid #ccc; /* Adiciona separação entre os botões e o número */
    border-right: 1px solid #ccc;
}


/* Estilos para tablets e dispositivos menores (até 768px) */
@media (max-width: 768px) {
    .button[b-9ynqtcv6c0] {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 15px;
    }

    .lista-itens[b-9ynqtcv6c0] {
        width: 95%;
        padding: 8px;
    }

    .item-lista[b-9ynqtcv6c0] {
        flex-direction: column;
        align-items: flex-start;
    }

        .item-lista img[b-9ynqtcv6c0] {
            width: 80px;
            aspect-ratio: 4 / 3;
            margin-bottom: 10px;
        }

    .detalhes-item[b-9ynqtcv6c0] {
        width: 100%;
    }

    .quantidade-controle[b-9ynqtcv6c0] {
        margin-top: 5px;
    }

    .botao-excluir[b-9ynqtcv6c0] {
        align-self: flex-end;
        margin-top: 10px;
    }
}

/* Estilos para celulares pequenos (até 360px) */
@media (max-width: 420px) {
    .button[b-9ynqtcv6c0] {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-top: 10px;
    }

    .item-lista img[b-9ynqtcv6c0] {
        width: 60px;
    }

    .quantidade-controle button[b-9ynqtcv6c0] {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    .quantity-controls .quantity[b-9ynqtcv6c0] {
        padding: 6px 8px;
        font-size: 0.9rem;
    }

    .descricao[b-9ynqtcv6c0], .referencia[b-9ynqtcv6c0] {
        font-size: 0.95rem;
    }

    p[b-9ynqtcv6c0] {
        font-size: 1rem;
        padding: 0 10px;
    }
}
/* _content/CFPecas/Components/Layout/MainLayout.razor.rz.scp.css */
.pagina[b-7hgbxys3w1] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que a p�gina ocupe pelo menos a altura da tela */
    flex-grow: 1;
}

.pcmain[b-7hgbxys3w1] {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o main ocupe toda a altura da tela */
    width: 100%; /* Garante que o main ocupe toda a largura */
    position: relative;
    flex-grow: 1; /* Permite que o main ocupe o espa�o restante */
    overflow: visible;
}



.cabecalho[b-7hgbxys3w1] {
    position: sticky;
    top: 0; /* Quando rolar, ele para no topo */
    z-index: 1000; /* Mant�m acima de outros elementos */

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto; /* Centraliza dentro de um container pai */
}


    .header.fixed[b-7hgbxys3w1] {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Distribui os itens uniformemente */
        padding: 10px 15px;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%; /* Permite que o header ocupe toda a largura dispon�vel */
        box-sizing: border-box; /* Garante que o padding e a borda sejam inclu�dos na largura total */
        position: fixed; /* Fixa o header no topo */
        top: 0;
        left: 50%; /* Centraliza horizontalmente */
        transform: translateX(-50%); /* Ajusta o posicionamento */
        z-index: 1000; /* Garante que fique acima do conte�do */
    }


.pctop-bar[b-7hgbxys3w1] {
    background-color: #C00415; /* Cor de fundo do cabe�alho */
    padding: 10px;
    top: 0;
    position: relative;
}

    .pctop-bar span[b-7hgbxys3w1] {
        padding: 0 10px; /* Reduzido */
        font-size: 0.8em; /* Reduzido */
    }

.pccontent[b-7hgbxys3w1] {
    flex-grow: 1; /* Permite que o conte�do ocupe o espa�o restante */
    margin: 0 auto; /* Centraliza o conte�do horizontalmente */
    max-width: 1200px; /* Largura m�xima do conte�do */
    padding: 20px; /* Adiciona um espa�amento interno ao conte�do */
    padding-top: 80px;
    /*height: 100%; */
    width: 100%;
    box-sizing: border-box;
    /*overflow: visible;*/
}



.phone-info[b-7hgbxys3w1] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
}

    .phone-info div[b-7hgbxys3w1] {
        text-align: center;
        padding: 0 10px; /* Reduzido */
        border-right: 1px solid #ccc;
        font-size: 0.8em; /* Reduzido */
    }

        .phone-info div:last-child[b-7hgbxys3w1] {
            border-right: none;
        }

.pcmain-nav[b-7hgbxys3w1] {
    display: flex;
    flex-direction: row; /* Volta ao layout original para telas maiores */
    background-color: #e0e0e0; /* Cor de fundo da barra de navega��o */
    padding: 10px;
}


.logo-container[b-7hgbxys3w1] {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

    .logo-container:hover[b-7hgbxys3w1] {
        transform: scale(1.1) rotate(0deg);
    }

.logo[b-7hgbxys3w1] {
    max-width: 200px; /* Ajuste conforme necess�rio */
    height: auto;
}



.search-bar[b-7hgbxys3w1] {
    display: flex;
    width: 100%;
    max-width: 200px; /* Reduzido */
    margin-left: 5px; /* Reduzido */
}

    .search-bar input[type="text"][b-7hgbxys3w1] {
        padding: 5px; /* Reduzido */
        border: 1px solid #ccc;
        flex: 1;
        min-width: 150px; /* Reduzido */
        font-size: 0.8em; /* Reduzido */
    }

.search-button[b-7hgbxys3w1] {
    background-color: #C00415;
    color: white;
    border: none;
    padding: 5px; /* Reduzido */
    max-width: 30px; /* Reduzido */
    max-height: 40px; /* Reduzido */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 80px; /* Reduzido */
    font-size: 0.8em; /* Reduzido */
}

    .search-button:hover[b-7hgbxys3w1] {
        background-color: red;
    }

    .search-button:active[b-7hgbxys3w1] {
        background-color: #003380;
        transform: scale(0.95);
    }
.pcmenu-bar[b-7hgbxys3w1] {
    display: flex;
    justify-content: start; /* Centraliza os itens do menu */
    align-items: center;
    width: 100%;
}


.pcmenu-item[b-7hgbxys3w1] {
    color: #C00415; 
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

    .pcmenu-item:hover[b-7hgbxys3w1],
    .pcmenu-item.active[b-7hgbxys3w1] {
        background-color: #f0f0f0;
    }

    .pcmenu-item.active[b-7hgbxys3w1] {
        font-weight: 600;
    }


.pcmenu-toggle[b-7hgbxys3w1] {
    display: none; /* Oculta o �cone por padr�o */
    font-size: 1.5em;
    cursor: pointer;
}


.footer[b-7hgbxys3w1] {
    background-color: #C00415;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-item[b-7hgbxys3w1] {
    font-size: 0.6em;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-item:hover[b-7hgbxys3w1] {
        color: #ffcccc;
    }

.footer-social[b-7hgbxys3w1] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-text[b-7hgbxys3w1] {
    font-size: 0.9em;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-icons[b-7hgbxys3w1] {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon[b-7hgbxys3w1] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .social-icon img[b-7hgbxys3w1] {
        width: 60%;
        height: 60%;
        object-fit: contain;
    }

    .social-icon:hover[b-7hgbxys3w1] {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

.instagram[b-7hgbxys3w1] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook[b-7hgbxys3w1] {
    background-color: #1877f2;
}

.whatsapp[b-7hgbxys3w1] {
    background-color: #25D366;
}


/*##############################################################################################################*/



/*########################### IN�CIO MEDIA QUERIES ##########################*/

@media (max-width: 768px) {
    .pcmenu-toggle[b-7hgbxys3w1] {
        display: block; /* Exibe o �cone do menu em telas menores */
    }

    .pcmenu-bar[b-7hgbxys3w1] {
        display: none; /* Oculta o menu-bar em telas menores */
    }

    .pcmain-nav[b-7hgbxys3w1] {
        display: none; /* Oculta o menu por padr�o em telas menores */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Ajuste conforme necess�rio */
        left: 0;
        background-color: #f0f0f0;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1001; /* Garante que o menu fique acima de outros elementos */
    }

        .pcmain-nav.active[b-7hgbxys3w1] {
            display: flex; /* Exibe o menu quando a classe 'active' � adicionada */
        }

        /* Estilos dos itens do menu */
        .pcmain-nav > *[b-7hgbxys3w1] {
            margin: 0;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

            .pcmain-nav > *:last-child[b-7hgbxys3w1] {
                border-bottom: none;
            }
}

/* Mostra o menu-bar em telas maiores e esconde o menu-toggle */
@media (min-width: 769px) {
    .pcmenu-bar[b-7hgbxys3w1] {
        display: flex; /* Exibe o menu-bar em telas maiores */
    }

    .pcmenu-toggle[b-7hgbxys3w1] {
        display: none; /* Esconde o �cone do menu em telas maiores */
    }

    .pcmain-nav[b-7hgbxys3w1] {
        display: none; /* Garante que o menu n�o seja exibido em telas maiores */
    }
}


/* Estilos para telas menores (360px ou menos) */
@media (max-width: 420px) {
    .logo[b-7hgbxys3w1] {
        height: 80px; /* Ajusta o tamanho do logo para telas menores */
    }

    .pcmenu-bar[b-7hgbxys3w1] {
        display: none; /* Garante que o menu-bar n�o seja exibido */
    }

    .pcmenu-toggle[b-7hgbxys3w1] {
        font-size: 1.2em; /* Ajusta o tamanho do �cone do menu sandu�che */
    }

    .pcmain-nav[b-7hgbxys3w1] {
        top: 50px; /* Ajusta a posi��o do menu para telas menores */
    }

    .pccontent[b-7hgbxys3w1] {
        padding-top: 60px; /* Ajusta o espa�amento superior do conte�do */
    }

    .phone-info div[b-7hgbxys3w1] {
        font-size: 0.7em; /* Reduz o tamanho da fonte das informa��es de contato */
        padding: 0 5px; /* Reduz o espa�amento entre os itens */
    }

    .search-bar input[type="text"][b-7hgbxys3w1] {
        min-width: 120px; /* Reduz a largura m�nima da barra de pesquisa */
        font-size: 0.7em; /* Reduz o tamanho da fonte da barra de pesquisa */
    }

    .search-button[b-7hgbxys3w1] {
        font-size: 0.7em; /* Reduz o tamanho da fonte do bot�o de pesquisa */
        width: 60px; /* Reduz a largura do bot�o de pesquisa */
    }

    .footer-item[b-7hgbxys3w1] {
        font-size: 0.6em; /* Reduz o tamanho da fonte do rodap� */
    }
}

/*########################### FIM MEDIA QUERIES ##########################*/


#blazor-error-ui[b-7hgbxys3w1] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7hgbxys3w1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/CFPecas/Components/Layout/PcSlider.razor.rz.scp.css */
.pcslider-container[b-86c73y88fp] {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pcslider[b-86c73y88fp] {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pcslide[b-86c73y88fp] {
    min-width: 100%;
    box-sizing: border-box;
}

    .pcslide img[b-86c73y88fp] {
        width: 100%;
        height: auto;
        display: block;
    }

.prev[b-86c73y88fp], .next[b-86c73y88fp] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev[b-86c73y88fp] {
    left: 10px;
}

.next[b-86c73y88fp] {
    right: 10px;
}

.indicators[b-86c73y88fp] {
    text-align: center;
    margin-top: 10px;
}

.indicator[b-86c73y88fp] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
    cursor: pointer;
}

    .indicator.active[b-86c73y88fp] {
        background-color: black;
    }


@media (max-width: 768px) {
    .pcslider-container[b-86c73y88fp] {
        padding-bottom: 20px;
    }

    .prev[b-86c73y88fp], .next[b-86c73y88fp] {
        padding: 8px 12px;
        font-size: 18px;
    }

    .pcslide img[b-86c73y88fp] {
        height: auto;
        object-fit: cover;
    }

    .indicator[b-86c73y88fp] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .indicators[b-86c73y88fp] {
        margin-top: 8px;
    }
}

@media (max-width: 420px) {
    .pcslider-container[b-86c73y88fp] {
        padding-bottom: 15px;
    }

    .prev[b-86c73y88fp], .next[b-86c73y88fp] {
        padding: 6px 10px;
        font-size: 16px;
    }

    .pcslide img[b-86c73y88fp] {
        height: auto;
        object-fit: cover;
    }

    .indicator[b-86c73y88fp] {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    .indicators[b-86c73y88fp] {
        margin-top: 6px;
    }

    .prev[b-86c73y88fp] {
        left: 5px;
    }

    .next[b-86c73y88fp] {
        right: 5px;
    }
}
/* _content/CFPecas/Components/Layout/Produto.razor.rz.scp.css */
/* Estilos principais */
:root[b-3wp5ln9dlv] {
    --cor-principal: #C00415;
    --cor-secundaria: #ff4d4d;
    --cor-sucesso: #28a745;
    --cor-disabled: #00cc00;
    --padding-padrao: 20px;
    --sombra: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.alerta-mensagem[b-3wp5ln9dlv] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.produto-detalhes[b-3wp5ln9dlv] {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.produto-conteudo[b-3wp5ln9dlv] {
    display: flex;
    gap: 20px;
}

.imagem-principal[b-3wp5ln9dlv] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .imagem-principal img[b-3wp5ln9dlv] {
        max-width: 350px;
        height: auto;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.informacoes-produto[b-3wp5ln9dlv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.descricao-longa[b-3wp5ln9dlv],
.tags[b-3wp5ln9dlv],
.produtos-similares[b-3wp5ln9dlv],
.produtos-venda-casada[b-3wp5ln9dlv] {
    margin-top: 20px;
}

.lista-horizontal[b-3wp5ln9dlv] {
    display: flex;
    overflow-x: auto;
    margin-top: 10px;
    gap: 10px;
    padding-bottom: 10px;
}

    .lista-horizontal img[b-3wp5ln9dlv] {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
    }

/* Botões */
.button[b-3wp5ln9dlv] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #C00415, #ff4d4d);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .button[b-3wp5ln9dlv]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button:hover[b-3wp5ln9dlv]::before {
        width: 0;
        height: 0;
    }

    .button:hover[b-3wp5ln9dlv] {
        background: linear-gradient(45deg, #ff4d4d, #C00415);
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }

    .button.disabled[b-3wp5ln9dlv] {
        background: linear-gradient(45deg, green, #00cc00);
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }

/* Responsividade */
@media (max-width: 768px) {
    .produto-conteudo[b-3wp5ln9dlv] {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .imagem-principal[b-3wp5ln9dlv] {
        text-align: center;
    }

        .imagem-principal img[b-3wp5ln9dlv] {
            max-width: 80%;
            height: auto;
            margin: 0 auto 15px auto;
            display: block;
        }

    .informacoes-produto[b-3wp5ln9dlv] {
        width: 90%;
        text-align: left;
    }

    .lista-horizontal[b-3wp5ln9dlv] {
        padding: 0 10px;
    }

        .lista-horizontal img[b-3wp5ln9dlv] {
            width: 70px;
            height: 70px;
        }

    .button[b-3wp5ln9dlv] {
        font-size: 14px;
        padding: 10px 20px;
    }

    .tags h3[b-3wp5ln9dlv] {
        font-size: 18px;
    }

    .tags p[b-3wp5ln9dlv] {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .produto-conteudo[b-3wp5ln9dlv] {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .imagem-principal img[b-3wp5ln9dlv] {
        max-width: 95%;
        margin: 0 auto 10px auto;
    }

    .informacoes-produto[b-3wp5ln9dlv] {
        width: 100%;
        padding: 0 10px;
        text-align: left;
    }

    .lista-horizontal[b-3wp5ln9dlv] {
        padding: 0 5px;
    }

        .lista-horizontal img[b-3wp5ln9dlv] {
            width: 60px;
            height: 60px;
        }

    .button[b-3wp5ln9dlv] {
        font-size: 13px;
        padding: 8px 16px;
        text-align: center;
    }

    .tags h3[b-3wp5ln9dlv] {
        font-size: 16px;
    }

    .tags p[b-3wp5ln9dlv] {
        font-size: 14px;
    }
}
/* _content/CFPecas/Components/Layout/ProdutoBuscaIncremental.razor.rz.scp.css */
.produto-popup[b-cnjosxnrgz] {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 100%; /* Ajuste a largura conforme necessário */
    max-width: 600px;
    max-height: 300px; /* Ajuste a altura máxima conforme necessário */
    overflow-y: auto;
    
}

    .produto-popup ul[b-cnjosxnrgz] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .produto-popup li[b-cnjosxnrgz] {
        display: flex;
        align-items: center;
        padding: 8px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
    }

        .produto-popup li img[b-cnjosxnrgz] {
            margin-right: 10px;
        }
/* _content/CFPecas/Components/Layout/SlideItens.razor.rz.scp.css */

.slide-grid[b-w5725r9nuv] {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    height: auto; /* Altura determinada pelo conteúdo */
    min-height: 0; /* Remove restrições de altura mínima */
    /*overflow: visible; */ /* Garante que o conteúdo não seja cortado */
    flex-grow: 1; /* Ocupa o espaço restante dentro do .container */
    background-color: #C2C3C4; /*burlywood;*/
    text-align: center;
    
}

.slide-titulo[b-w5725r9nuv] {
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #C2C3C4; /*burlywood;*/
    text-align: start;
    color: #C00415;
    max-width: auto;
}

.slide-titulotexto[b-w5725r9nuv] {
    margin-left: 20px;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #C2C3C4; /*burlywood;*/
    text-align: start;
    color: #C00415;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-image[b-w5725r9nuv] {
    width: 100%;
    max-width:300px;
    height: auto;
    border-radius: 8px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease; /* Transição suave para hover */
    cursor: pointer;
}

    .slide-image:hover[b-w5725r9nuv] {
        transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    }


.produto-info[b-w5725r9nuv] {
    text-align: center;
    margin-top: 10px;
}

.produto-codigo[b-w5725r9nuv] {
    font-weight: bold;
    margin: 0;
}

.produto-descricao[b-w5725r9nuv] {
    margin: 0;
    color: #555;
    font-weight: bold;
}

.produto-caracteristicas[b-w5725r9nuv] {
    margin: 0;
    color: #555;
    font-size: 12.8px;
}


/* Responsividade */
/* Responsividade para telas médias (max-width: 768px) */
@media (max-width: 768px) {
    .slide-grid[b-w5725r9nuv] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 20px;
    }

    .slide-image[b-w5725r9nuv] {
        max-width: 150px;
        border-radius: 6px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .slide-titulo[b-w5725r9nuv] {
        text-align: start;
        margin-left: 10px;
    }

    .slide-titulotexto[b-w5725r9nuv] {
        margin-left: 10px;
        font-size: 1.5rem;
        text-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.5);
    }

    .produto-info[b-w5725r9nuv] {
        font-size: 1rem;
    }
}

/* Responsividade para telas pequenas (max-width: 480px) */
@media (max-width: 480px) {
    .slide-grid[b-w5725r9nuv] {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 5px;
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 10px;
    }

    .slide-image[b-w5725r9nuv] {
        max-width: 100px;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .slide-titulo[b-w5725r9nuv] {
        text-align: center;
        margin-left: 0;
    }

    .slide-titulotexto[b-w5725r9nuv] {
        margin-left: 5px;
        font-size: 1.2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .produto-info[b-w5725r9nuv] {
        font-size: 0.9rem;
    }
}
/* _content/CFPecas/Components/Layout/SlideItensHorizontal.razor.rz.scp.css */
.slide-container[b-man0njvmdy] {
    display: flex; /* Adiciona flexbox para alinhar botões e grid */
    align-items: center; /* Alinha verticalmente os itens */
    overflow-x: hidden; /* Remove a barra de rolagem padrão */
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: #C2C3C4;
    position: relative; /* Necessário para posicionar os botões */
}

.slide-grid[b-man0njvmdy] {
    display: inline-flex;
    gap: 15px;
    margin-top: 30px;
    overflow-x: auto; /* Mantém a rolagem interna para o JavaScript controlar */
    scroll-behavior: smooth; /* Adiciona rolagem suave */
    padding:10px;
}



.slide-titulo[b-man0njvmdy] {
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #C2C3C4;
    text-align: start;
    color: #C00415;
}

.slide-titulotexto[b-man0njvmdy] {
    margin-left: 20px;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #C2C3C4;
    text-align: start;
    color: #C00415;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-image[b-man0njvmdy] {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .slide-image:hover[b-man0njvmdy] {
        transform: scale(1.05);
    }

.slide-button[b-man0njvmdy] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute; /* Posiciona os botões sobre o slide */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; /* Garante que os botões estejam na frente do conteúdo */
    color: #C00415;
}

.slide-button-left[b-man0njvmdy] {
    left: 0;
}

.slide-button-right[b-man0njvmdy] {
    right: 0;
}

.produto-info[b-man0njvmdy] {
    text-align: center;
    margin-top: 10px;
}

.produto-codigo[b-man0njvmdy] {
    font-weight: bold;
    margin: 0;
}

.produto-descricao[b-man0njvmdy] {
    margin: 0;
    color: #555;
    font-weight: bold;
}

.produto-caracteristicas[b-man0njvmdy] {
    margin: 0;
    color: #555;
    font-size: 12.8px;
}


/* Responsividade */
@media (max-width: 768px) {
    .slide-image[b-man0njvmdy] {
        width: 150px;
    }
}
/* _content/CFPecas/Components/Layout/SlidePromocao.razor.rz.scp.css */
.slide-titulo[b-3ubvlom9uk] {
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: start;
    color: #333; /* Cor do texto mais moderna */
    max-width: auto;
    background: linear-gradient(to bottom, #e0e0e0, #c2c3c4); /* Gradiente sutil */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.slide-titulotexto[b-3ubvlom9uk] {
    margin-left: 20px;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
    text-align: start;
    color: #C00415;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



.slide-grid[b-3ubvlom9uk] {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Aumentado o minmax */
    gap: 20px; /* Aumentado o gap */
    margin-top: 30px;
    background: #f4f4f4; /* Fundo mais claro */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); /* Sombra mais destacada */
}

.slide-item[b-3ubvlom9uk] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Garante que as bordas arredondadas funcionem corretamente com a imagem */
    cursor: pointer;
}

    .slide-item:hover[b-3ubvlom9uk] {
        transform: translateY(-5px); /* Leve elevação no hover */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Sombra mais forte no hover */
    }

.slide-image[b-3ubvlom9uk] {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0; /* Bordas arredondadas apenas no topo */
    display: block; /* Garante que não haja espaço extra abaixo da imagem */
    object-fit: cover; /* Ajusta a imagem para cobrir a área */
}

.produto-info[b-3ubvlom9uk] {
    padding: 15px;
    text-align: center;
}

.produto-codigo[b-3ubvlom9uk] {
    font-weight: 600;
    margin: 5px 0;
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: x-large;
}

.produto-valor[b-3ubvlom9uk] {
    margin-left: 20px;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: #C00415;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.0rem;
    font-weight: 700;
}

.produto-descricao[b-3ubvlom9uk] {
    margin: 5px 0;
    color: #555;
    font-weight: 500;
}

.produto-validade[b-3ubvlom9uk] {
    margin: 5px 0;
    color: #555;
    font-size: x-small;
    font-weight: 900;
}

.produto-caracteristicas[b-3ubvlom9uk] {
    margin: 5px 0;
    color: #777;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .slide-grid[b-3ubvlom9uk] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .slide-titulotexto[b-3ubvlom9uk] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-grid[b-3ubvlom9uk] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .slide-titulotexto[b-3ubvlom9uk] {
        font-size: 1.3rem;
    }
}
/* _content/CFPecas/Components/Layout/TelaLoad.razor.rz.scp.css */
.loading-screen[b-i2nu2og81d]

{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.loading-spinner[b-i2nu2og81d] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-i2nu2og81d 1s linear infinite;
}

.loading-text[b-i2nu2og81d] {
    margin-top: 10px;
    color: white;
    font-size: 18px;
}

@keyframes spin-b-i2nu2og81d {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* _content/CFPecas/Components/Pages/BuscaPorGrupo.razor.rz.scp.css */
.meuhome-page[b-7jwy45a5d7] {
    margin: 0 auto;
    background-color: white;
    /*overflow: visible; */ /* Alterado para garantir que o conteúdo não seja cortado */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fonte moderna */
    /*min-height: 100vh; */ /* Garante que ocupe pelo menos a altura da tela */
    display: flex;
    flex-direction: column; /* Organiza os filhos em coluna */
    flex-grow: 1;
    height: auto;
    max-width: 1200px;
}
/* _content/CFPecas/Components/Pages/Contato.razor.rz.scp.css */
.contatos-container[b-5t8cpxf6yf] {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .contatos-container h1[b-5t8cpxf6yf] {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

    .contatos-container p[b-5t8cpxf6yf] {
        text-align: center;
        margin-bottom: 30px;
        color: #666;
    }

.formulario-contato[b-5t8cpxf6yf] {
    display: grid;
    gap: 20px;
}

.form-group[b-5t8cpxf6yf] {
    display: grid;
    gap: 5px;
}

    .form-group label[b-5t8cpxf6yf] {
        font-weight: bold;
        color: #333;
    }

    .form-group input[b-5t8cpxf6yf],
    .form-group textarea[b-5t8cpxf6yf] {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
    }

.btn-enviar[b-5t8cpxf6yf] {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .btn-enviar:hover[b-5t8cpxf6yf] {
        background-color: #0056b3;
    }




.button[b-5t8cpxf6yf] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #C00415, #ff4d4d);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-top: 20px;
}

    .button[b-5t8cpxf6yf]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button:hover[b-5t8cpxf6yf]::before {
        width: 0;
        height: 0;
    }

    .button:hover[b-5t8cpxf6yf] {
        background: linear-gradient(45deg, #ff4d4d, #C00415);
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }

.informacoes-contato[b-5t8cpxf6yf] {
    font-family: 'Poppins', sans-serif;
    margin-top: 40px;
    text-align: center;
}

    .informacoes-contato h2[b-5t8cpxf6yf] {
        margin-bottom: 20px;
        color: #333;
    }

    .informacoes-contato p[b-5t8cpxf6yf] {
        color: #666;
    }

.btn-whatsapp[b-5t8cpxf6yf] {
    display: inline-block;
    padding: 12px 20px;
    background-color: #25d366; /* Cor verde do WhatsApp */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .btn-whatsapp:hover[b-5t8cpxf6yf] {
        background-color: #128c7e; /* Tom de verde mais escuro */
    }



.button-wa[b-5t8cpxf6yf] {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #25D366, #128C7E); /* Cores do WhatsApp */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-top: 20px;
}

    .button-wa[b-5t8cpxf6yf]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2); /* Branco transparente para o efeito */
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .button-wa:hover[b-5t8cpxf6yf]::before {
        width: 0;
        height: 0;
    }

    .button-wa:hover[b-5t8cpxf6yf] {
        background: linear-gradient(45deg, #128C7E, #25D366); /* Inverte o gradiente no hover */
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }



.whatsapp-icon[b-5t8cpxf6yf] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}


.mapa-titulo[b-5t8cpxf6yf] {
    font-family: 'Poppins', sans-serif;
    color:#C00415; /* substitua pela cor padrão do seu site */
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Estilo para telas até 768px (tablet) */
@media (max-width: 768px) {
    .contatos-container[b-5t8cpxf6yf] {
        padding: 20px;
        margin: 30px 15px;
    }

        .contatos-container h1[b-5t8cpxf6yf] {
            font-size: 1.8rem;
        }

        .contatos-container p[b-5t8cpxf6yf] {
            font-size: 1rem;
        }

    .formulario-contato[b-5t8cpxf6yf] {
        gap: 16px;
    }

    .form-group input[b-5t8cpxf6yf],
    .form-group textarea[b-5t8cpxf6yf] {
        font-size: 15px;
        padding: 8px;
    }

    .btn-enviar[b-5t8cpxf6yf],
    .button[b-5t8cpxf6yf],
    .button-wa[b-5t8cpxf6yf],
    .btn-whatsapp[b-5t8cpxf6yf] {
        font-size: 15px;
        padding: 10px 18px;
        margin-right: 10px;
        margin-top: 16px;
    }

    .informacoes-contato h2[b-5t8cpxf6yf] {
        font-size: 1.5rem;
    }

    .mapa-titulo[b-5t8cpxf6yf] {
        font-size: 1.6rem;
    }
}

/* Estilo para telas até 420px (celulares pequenos) */
@media (max-width: 420px) {
    .contatos-container[b-5t8cpxf6yf] {
        padding: 15px;
        margin: 20px 10px;
    }

        .contatos-container h1[b-5t8cpxf6yf] {
            font-size: 1.5rem;
        }

        .contatos-container p[b-5t8cpxf6yf] {
            font-size: 0.95rem;
        }

    .formulario-contato[b-5t8cpxf6yf] {
        gap: 12px;
    }

    .form-group input[b-5t8cpxf6yf],
    .form-group textarea[b-5t8cpxf6yf] {
        font-size: 14px;
        padding: 8px;
    }

    .btn-enviar[b-5t8cpxf6yf],
    .button[b-5t8cpxf6yf],
    .button-wa[b-5t8cpxf6yf],
    .btn-whatsapp[b-5t8cpxf6yf] {
        font-size: 14px;
        padding: 10px 16px;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }

    .informacoes-contato h2[b-5t8cpxf6yf] {
        font-size: 1.3rem;
    }

    .informacoes-contato p[b-5t8cpxf6yf] {
        font-size: 0.95rem;
    }

    .mapa-titulo[b-5t8cpxf6yf] {
        font-size: 1.4rem;
    }

    .whatsapp-icon[b-5t8cpxf6yf] {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}
/* _content/CFPecas/Components/Pages/Home.razor.rz.scp.css */
.busca-container[b-0keljifmo7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff; /* Fundo branco para contraste */
    border-radius: 20px;
    padding: 20px;
    width: 90%;
    max-width: 800px; /* Limita a largura em telas grandes */
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s, box-shadow 0.3s;
}

    .busca-container:hover[b-0keljifmo7] {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra mais forte ao passar o mouse */
    }

    .busca-container p[b-0keljifmo7] {
        color: #333;
        font-size: 1.1rem;
        margin: 8px 0;
    }
/* _content/CFPecas/Components/Pages/Institucional.razor.rz.scp.css */
body[b-jszhdab15w] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
    color: #333;
}

.institucional-container[b-jszhdab15w] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 30px;
    gap: 60px;
    background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.texto-container[b-jszhdab15w] {
    max-width: 600px;
    animation: fadeIn-b-jszhdab15w 1s ease-in-out;
}

.titulo[b-jszhdab15w] {
    font-size: 3em;
    color: #B80010;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitulo[b-jszhdab15w] {
    font-size: 1.7em;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #B80010;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.alinhamento-esquerda[b-jszhdab15w] {
    text-align: left;
}

.alinhamento-direita[b-jszhdab15w] {
    text-align: right;
}

.descricao[b-jszhdab15w] {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeIn-b-jszhdab15w 1.5s ease-in-out;
}

.imagem-container[b-jszhdab15w] {
    max-width: 480px;
    animation: slideInRight-b-jszhdab15w 1s ease-in-out;
}

.imagem-destaque[b-jszhdab15w] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .imagem-destaque:hover[b-jszhdab15w] {
        transform: scale(1.03);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

@keyframes fadeIn-b-jszhdab15w {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight-b-jszhdab15w {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .institucional-container[b-jszhdab15w] {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .titulo[b-jszhdab15w] {
        font-size: 2.2em;
    }

    .subtitulo[b-jszhdab15w] {
        font-size: 1.5em;
    }
}
/* _content/CFPecas/Components/Pages/ProdutoDetalhes.razor.rz.scp.css */
.busca-container[b-w8esrsi6if] {
    display: flex;
    align-items: center;
    background-color: #f2f2f2; /* Cor de fundo semelhante à da imagem */
    border-radius: 20px; /* Bordas arredondadas */
    padding: 12px 16px;
    width: 100%;
    margin-bottom: 10px;
}

.busca-input[b-w8esrsi6if] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none; /* Remove a borda ao focar */
    color: #333;
    font-weight: bold;
}

.busca-icon[b-w8esrsi6if] {
    position: absolute;
    right: 12px; /* Ajuste conforme necessário */
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888; /* Cor da lupa */
    cursor: pointer;
}
