html {
	scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: normal;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-montserrat);
}

.error,
.error::placeholder {
    color: red !important;
}

textarea:focus, input:focus{
    outline: none;
}

:root {
    --branco: #ffffff;
    --preto: #1C1A1C;
    --teal: #00ADAD;
    --teal-escuro: #0b7a71;
    --cinza-claro: #B5B5B5;
    --cinza-escuro: #808080;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --transicao: all 0.3s ease;
}

.oculto {
    display: none !important;
}

/* Botões (componente reutilizado em várias seções) */

.botao {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 55px;
    padding: 0 21px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.botao svg {
    flex-shrink: 0;
}

.botao-primario {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: var(--teal);
    border: 1px solid var(--teal);
    color: var(--branco);
    transition: color 0.4s ease;
}

.botao-primario::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--branco);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.botao-primario svg path {
    transition: fill 0.45s ease, stroke 0.45s ease;
}

.botao-primario:hover {
    color: var(--teal);
}

.botao-primario:hover::before {
    transform: translateX(0);
}

.botao-primario:hover svg path {
    fill: var(--teal);
    stroke: var(--teal);
}

/* Footer */

.site-footer {
    background-image: url('../../../equipamentos-de-cozinha/home/bg-footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-footer .container {
    width: 1600px;
    max-width: 92%;
    margin: 0 auto;
}

.site-footer a {
    color: var(--branco);
}

/* Topo do footer */

.site-footer .footer-topo {
    position: relative;
    padding: 124px 0 90px;
}

.site-footer .footer-topo-detalhe {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.site-footer .footer-topo-detalhe-imagem {
    display: block;
    width: 172px;
    height: 104px;
}

.site-footer .footer-topo .container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 83px;
}

.site-footer .footer-coluna {
    width: 237px;
    margin-right: 24px;
}

.site-footer .footer-coluna.endereco {
    width: 300px;
}

.site-footer .footer-coluna-sobre {
    width: 380px;
    margin-right: 0;
}

.site-footer .footer-logo {
    display: block;
}

.site-footer .footer-sobre-texto {
    font-weight: 400;
    font-size: 12px;
    line-height: 189%;
    color: var(--branco);
    margin-top: 30px;
    max-width: 366px;
}

.site-footer .footer-redes-titulo {
    font-weight: 700;
    font-size: 12px;
    color: var(--branco);
    margin-top: 31px;
}

.site-footer .footer-redes {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 23px;
}

.site-footer .footer-rede-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #7A7A7A;
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-footer .footer-rede-link:hover {
    background-color: var(--teal);
    border-color: var(--teal);
}

.site-footer .footer-coluna-titulo {
    font-weight: 700;
    font-size: 16px;
    color: var(--branco);
}

.site-footer .footer-coluna-titulo-espaco {
    margin-top: 35px;
}

.site-footer .footer-lista {
    margin-top: 24px;
    margin-left: 10px;
}

.site-footer .footer-lista li {
    margin-top: 10px;
}

.site-footer .footer-lista li:first-child {
    margin-top: 0;
}

.site-footer .footer-lista a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.site-footer .footer-lista a::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 5px;
    height: 10px;
    margin-top: 4px;
    background-color: #7A7A7A;
    -webkit-mask-image: url('../../../equipamentos-de-cozinha/home/icones/ico-seta-footer.svg');
    mask-image: url('../../../equipamentos-de-cozinha/home/icones/ico-seta-footer.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.3s ease;
}

.site-footer .footer-lista a:hover {
    color: var(--teal);
}

.site-footer .footer-lista a:hover::before {
    background-color: var(--teal);
}

/* Endereço e contato */

.site-footer .footer-endereco {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-endereco-icone {
    display: flex;
    margin-top: 6px;
}

.site-footer .footer-contato-lista {
    margin-top: 20px;
}

.site-footer .footer-contato-lista li {
    margin-top: 6px;
}

.site-footer .footer-contato-lista li:first-child {
    margin-top: 0;
}

.site-footer .footer-contato-lista a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.site-footer .footer-contato-lista a:hover {
    color: var(--teal);
}

.site-footer .footer-contato-icone {
    display: flex;
    justify-content: center;
    width: 16px;
}

.site-footer .footer-contato-icone svg path {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.site-footer .footer-contato-lista a:hover .footer-contato-icone svg path {
    fill: var(--teal);
    stroke: var(--teal);
}


/* Base do footer */

.site-footer .footer-base {
    padding-bottom: 24px;
}

.site-footer .footer-base .container {
    border-top: 1px solid #FFFFFF40;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer .footer-copyright {
    font-weight: 400;
    font-size: 12px;
    color: var(--branco);
}

.site-footer .footer-copyright-separador {
    font-weight: 200;
    opacity: 0.5;
}

.site-footer .footer-copyright a {
    font-weight: 400;
    color: var(--branco);
}

.site-footer .footer-copyright a:hover {
    color: var(--teal);
}

.site-footer .footer-exent {
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .site-footer .footer-topo .container {
        flex-direction: column;
        gap: 40px;
    }

    .site-footer .footer-coluna,
    .site-footer .footer-coluna.endereco,
    .site-footer .footer-coluna-sobre {
        width: 100%;
        margin-right: 0;
    }

    html.trava-scroll {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-base .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Header */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 16px 0;
}

/* Header "fundo simples" — usado em páginas sem banner grande atrás do
   header (404, confirmação de contato, etc). Ativa via
   facilizza_header_tem_fundo_simples() em functions.php, que acrescenta
   essa classe no <header> (header.php). */
.site-header.site-header-fundo-simples {
    background-image: url('../../../equipamentos-de-cozinha/geral/fundo-header-simples.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1600px;
    max-width: 90%;
    margin: 0 auto;
}

.site-header .header-logo {
    display: flex;
    flex-shrink: 0;
}

.site-header .header-logo img {
    display: block;
    height: 55px;
    width: auto;
}

/* Pílula do menu */

.site-header .header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
    height: 64px;
    padding: 0px 2px 0px 34px;
    background: linear-gradient(90deg, #EDF1FC 31.37%, rgba(237, 241, 252, 0.64) 108.56%);
    border: 2px solid #7A7A7A40;
    border-radius: 999px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin: 0 auto;
}

.site-header .header-menu {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
    gap: 48px;
}

.site-header .header-menu-item {
    position: relative;
}

.site-header .header-menu-item-dropdown {
    padding-bottom: 14px;
    margin-bottom: -22px;
}

.site-header .header-menu-item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 12px;
    color: #7A7A7A;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.site-header .header-menu-item > a:hover {
    color: var(--teal);
}

.site-header .header-menu-seta {
    display: flex;
}

/* Balão (dropdown) */

.site-header .header-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10;
    min-width: 240px;
    padding: 10px;
    background-color: var(--branco);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(10, 10, 10, 0.15);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-header .header-menu-item-dropdown:hover .header-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-header .header-dropdown-link {
    padding: 4px 14px;
    font-weight: 500;
    font-size: 14px;
    color: var(--cinza-escuro);
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header .header-dropdown-link:hover {
    color: var(--teal);
}

/* Ações (Orçamento + Contato) — mesma lógica do .produto-acoes do catálogo */

.site-header .header-acoes {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    width: 286px;
    height: 55px;
    padding: 4px;
    background-color: var(--branco);
    border-radius: 999px;
}

.site-header .header-acao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    background-color: transparent;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    color: #7A7A7A;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-header .header-acao:hover {
    background-color: var(--teal);
    color: var(--branco);
}

.site-header .header-acao-icone {
    position: relative;
    display: flex;
}

.site-header .header-acao-icone svg path {
    transition: stroke 0.3s ease;
}

.site-header .header-acao:hover .header-acao-icone svg path {
    stroke: var(--branco);
}

.header-orcamento-contador {
    position: absolute;
    top: -6px;
    right: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background-color: var(--teal);
    border-radius: 50%;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0%;
    text-align: center;
    color: #EDF1FC;
}

/* Hamburger (mobile) */

.site-header .header-hamburger {
    display: none;
    flex-direction: column;
    row-gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 60;
}

.site-header .header-hamburger-linha {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--branco);
    border-radius: 2px;
    transition: var(--transicao);
}

.site-header .header-hamburger.ativo .header-hamburger-linha-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.site-header .header-hamburger.ativo .header-hamburger-linha-2 {
    opacity: 0;
}

.site-header .header-hamburger.ativo .header-hamburger-linha-3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Redes sociais no header (mobile) */

.site-header .header-redes {
    display: none;
    align-items: center;
    gap: 12px;
}

.site-header .header-rede-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--preto);
    border: 2px solid var(--preto);
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header .header-rede-link svg path {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.site-header .header-rede-link:hover {
    background-color: var(--teal);
    border-color: var(--teal);
}

@media (min-width: 1750px) {
    .site-header {
        right: 0;
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media (max-width: 1750px) {
.site-header .header-container {
        gap: 40px;
}
}

@media screen and (max-width: 1600px){
    .site-header .header-menu {
        gap: 41px;
    }


    .site-header {
        max-width: 100%;
    }
}



@media (max-width: 1300px) {
    .site-header .header-container {
        gap: 20px;
    }

    .site-header .header-menu-item > a {
        font-size: 11px;
    }

    .site-header .header-logo img {
        height: 46px;
    }
}

@media (max-width: 1150px) {


    .site-header .header-menu-item > a {
        font-size: 10px;
    }

    .site-header .header-acoes {
        width: 240px;
    }

    .site-header .header-acao {
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .site-header .header-logo img {
        height: 38px;
    }

    .site-header .header-acoes {
        width: 210px;
    }

    .site-header .header-acao {
        font-size: 11px;
    }
}

/* Header mobile (menu hamburguer) */

@media (max-width: 1024px) {
    .site-header .header-container {
        flex-direction: row-reverse;
    }

    .site-header.ativo-header {
        background-color: #F8F8F9;
    }

    .site-header .header-hamburger {
        display: flex;
    }

    .site-header.ativo-header .header-hamburger-linha {
        background-color: var(--preto);
    }

    .site-header .header-logo img {
        height: 38px;
    }

    .site-header .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 55;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        margin: 0;
        padding: 120px 30px 60px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        row-gap: 50px;
        overflow-y: auto;
        background-color: #F8F8F9;
        border-radius: 0;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: var(--transicao);
    }

    .site-header .header-nav.ativo {
        right: 0;
    }

    .site-header .header-menu {
        flex: none;
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 30px;
        flex-shrink: 0;
        gap: 30px;
    }

    .site-header .header-menu-item-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .site-header .header-menu-item {
        max-width: 100%;
    }

    .site-header .header-menu-item > a {
        flex-direction: row;
        column-gap: 8px;
        max-width: 100%;
        font-size: 18px;
        color: var(--preto);
        white-space: normal;
        word-break: break-word;
    }

    .site-header .header-menu-item > a br{
        display: none;
    }

    .site-header .header-dropdown {
        display: none;
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        margin-top: 16px;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        row-gap: 16px;
        align-items: center;
    }

    .site-header .header-dropdown.ativo {
        display: flex;
        transform: none !important;
    }

    .site-header .header-menu-seta {
        transition: var(--transicao);
    }

    .site-header .header-menu-item-dropdown.girar .header-menu-seta {
        transform: rotate(180deg);
    }

    .site-header .header-dropdown-link {
        font-size: 14px;
        color: var(--cinza-escuro);
    }

    .site-header .header-acoes {
        flex-direction: column;
        row-gap: 12px;
        width: 100%;
        max-width: 320px;
        height: auto;
        padding: 0;
        background-color: transparent;
    }

    .site-header .header-acao {
        flex: none;
        width: 100%;
        height: 49px;
        font-size: 14px;
        background-color: var(--teal);
        color: var(--branco);
    }

    .site-header .header-acao-icone svg path {
        stroke: var(--branco);
    }

    .site-header .header-redes {
        display: flex;
        flex-shrink: 0;
    }
}

/* Orçamento (balão) */

.orcamento-painel {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
}

.orcamento-painel.ativo {
    visibility: visible;
    pointer-events: auto;
}

.orcamento-painel-fundo {
    position: absolute;
    inset: 0;
    background-color: rgba(28, 26, 28, 0.5);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.orcamento-painel.ativo .orcamento-painel-fundo {
    opacity: 1;
}

.orcamento-painel-caixa {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 869px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--branco);
    transition: right 0.35s ease;
}

.orcamento-painel.ativo .orcamento-painel-caixa {
    right: 0;
}

.orcamento-painel-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 40px;
    border-bottom: 1px solid transparent;
    border-image-source: linear-gradient(90deg, rgba(132, 132, 132, 0) 0%, rgba(132, 132, 132, 0.35) 50%, rgba(132, 132, 132, 0) 100%);
    border-image-slice: 1;
}

.orcamento-painel-topo-titulos {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.orcamento-painel-titulo {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--preto);
}

.orcamento-painel-resumo {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7A7A7A;
    white-space: nowrap;
}

.orcamento-painel-fechar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.orcamento-painel-conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
    padding: 40px;
}

.orcamento-painel-vazio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
}

.orcamento-painel-cheio {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.orcamento-painel-vazio-icone {
    display: flex;
    margin-bottom: 32px;
}

.orcamento-painel-vazio-titulo {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--preto);
    margin-bottom: 22px;
}

.orcamento-painel-vazio-texto {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--preto);
}

/* Mensagem de sucesso ao adicionar um produto */

.orcamento-painel-sucesso {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 55px;
    flex-shrink: 0;
    padding: 0 18px;
    margin-bottom: 24px;
    background-color: #00ADAD0D;
    border: 1.5px solid var(--teal);
    border-radius: 12px;
}

.orcamento-painel-sucesso-icone {
    display: flex;
    flex-shrink: 0;
}

.orcamento-painel-sucesso-texto {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--teal);
}

/* Lista de produtos adicionados */

.orcamento-painel-lista {
    display: flex;
    flex-direction: column;
}

.orcamento-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid transparent;
    border-image-source: linear-gradient(90deg, rgba(132, 132, 132, 0) 0%, rgba(132, 132, 132, 0.35) 50%, rgba(132, 132, 132, 0) 100%);
    border-image-slice: 1;
}

.orcamento-item:first-child {
    padding-top: 0;
}

.orcamento-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
    border-image-source: none;
}

.orcamento-item-imagem {
    flex-shrink: 0;
    width: 154px;
    height: 154px;
    object-fit: contain;
}

.orcamento-item-info {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.orcamento-item-badge {
    padding: 3px 12px;
    background-color: #EAF7F7;
    border: 1px solid var(--teal);
    border-radius: 999px;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 3px;
}

.orcamento-item-cabecalho {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.orcamento-item-titulo {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--preto);
    margin-bottom: 3px;
}

.orcamento-item-remover {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0%;
    text-align: right;
    text-decoration: underline;
    color: #6E7180;
    transition: color 0.3s ease;
}

.orcamento-item-remover svg path {
    transition: stroke 0.3s ease;
}

.orcamento-item-remover:hover {
    color: var(--teal);
}

.orcamento-item-remover:hover svg path {
    stroke: var(--teal);
}

.orcamento-item-quantidade {
    display: flex;
    align-items: center;
    gap: 12px;
}

.orcamento-item-quantidade-label {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7A7A7A;
}

.orcamento-item-stepper {
    display: flex;
    align-items: stretch;
    border: 1px solid #DBDBDB;
    border-bottom: 1px solid var(--teal);
    border-radius: 5px;
    overflow: hidden;
}

.orcamento-item-stepper-botao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    background: none;
    border: none;
    font-family: var(--font-montserrat);
    font-size: 16px;
    color: var(--preto);
    cursor: pointer;
}

.orcamento-item-stepper-valor {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 0 6px;
    border-left: 1px solid #DBDBDB;
    border-right: 1px solid #DBDBDB;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 14px;
    color: var(--preto);
}

.orcamento-painel-rodape {
    flex-shrink: 0;
    padding: 0 40px 40px;
}

.orcamento-painel-botao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border-radius: 45px;
    border: 1.5px solid var(--teal);
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    color: var(--teal);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.orcamento-painel-botao svg path {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.orcamento-painel-botao:hover {
    background-color: var(--teal);
    color: var(--branco);
}

.orcamento-painel-botao:hover svg path {
    fill: var(--branco);
    stroke: var(--branco);
}

@media (max-width: 1024px) {
    .orcamento-painel-caixa {
        max-width: 100%;
    }

    .orcamento-painel-topo,
    .orcamento-painel-conteudo {
        padding: 24px;
    }

    .orcamento-painel-topo-titulos {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .orcamento-painel-rodape {
        padding: 0 24px 24px;
    }

    .orcamento-item {
        flex-direction: column;
    }


    .orcamento-item-info {
        width: 100%;
    }
}

/* Reset do botão "Adicionar ao orçamento" — é um <button> nos catálogos
   (home, N2, N3) reaproveitando o mesmo .produto-botao estilizado por
   página; aqui só tiram a aparência nativa de <button>. */
#catalogo .produto-botao-orcamento,
#produtos-relacionados .produto-botao-orcamento {
    background-color: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

/* Breadcrumb (plugin Breadcrumb NavXT) */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    font-weight: 400;
    font-size: 14px;
    color: #6E7180;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    border-image-source: linear-gradient(90deg, rgba(0, 173, 173, 0.25) 0%, rgba(0, 173, 173, 0) 100%);
    border-image-slice: 1;
}

.breadcrumb-icone-home {
    display: flex;
    flex-shrink: 0;
}

.breadcrumb a {
    color: #6E7180;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb .separador {
    display: inline-flex;
    align-items: center;
    margin: 0 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0%;
    color: var(--teal);
}

.breadcrumb .breadcrumb-last {
    color: var(--branco);
}

/* CTA - Vamos olhar sua operação juntos */

#cta {
    padding: 60px 0 88px;
}

#cta .container {
    width: 1600px;
    max-width: 92%;
    margin: 0 auto;
}

#cta .cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 40px;
    background-image: url('../../../equipamentos-de-cozinha/home/bg-cta.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

#cta .cta-titulo {
    font-weight: 700;
    font-size: 42px;
    background: linear-gradient(275.79deg, #00ADAD 9.61%, #FFFFFF 100.23%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

#cta .cta-descricao {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: var(--branco);
    max-width: 810px;
    margin-top: 16px;
}

#cta .cta-botoes {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

#cta .cta-botoes .botao-primario{
    padding: 0 28px;
}

#cta .cta-botao-outline {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--teal);
    color: var(--branco);
    transition: color 0.4s ease;
}

#cta .cta-botao-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--teal);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

#cta .cta-botao-outline svg path {
    transition: fill 0.45s ease, stroke 0.45s ease;
}

#cta .cta-botao-outline:hover::before {
    transform: translateX(0);
}

#cta .cta-botao-outline:hover svg path {
    fill: var(--branco);
    stroke: var(--branco);
}

#cta .cta-botoes .botao-primario:hover svg path {
    fill: var(--teal);
    stroke: var(--teal);
}

/* ==========================================================================
   Modal do WhatsApp — mesmo esquema do modal de depoimentos (#depoimentos
   .depoimento-modal na Home), reaproveitando o formulário padrão
   (.cta-form-card / .cta-form-formulario, igual ao de #contato).
   ========================================================================== */

#cta .whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

#cta .whatsapp-modal.whatsapp-modal-aberto {
    display: flex;
}

#cta .whatsapp-modal-fundo {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

#cta .whatsapp-modal-caixa {
    position: relative;
    z-index: 1;
    width: 905px;
    max-width: 100%;
    margin: auto;
}

#cta .whatsapp-modal-fechar {
    position: absolute;
    top: -44px;
    right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

#cta .cta-form-card {
    width: 90%;
    margin: 0 auto;
    padding: 43px;
    background-color: var(--branco);
    border-radius: 20px;
    border: 2px solid #7A7A7A40;
    box-shadow: 0px 0px 23.8px 0px #0000000D;
}

#cta .cta-form-linha {
    display: flex;
    gap: 20px;
}

#cta .cta-form-linha + .cta-form-linha {
    margin-top: 20px;
}

#cta .cta-form-campo {
    position: relative;
    flex: 1;
    min-width: 0;
}

#cta .cta-form-campo input,
#cta .cta-form-campo select,
#cta .cta-form-campo textarea {
    width: 100%;
    height: 51px;
    padding: 0 18px;
    background-color: var(--branco);
    border: 1px solid #DBDBDB;
    border-bottom: 1px solid var(--teal);
    border-radius: 5px;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    color: var(--preto);
    transition: border-color 0.2s ease;
}

#cta .cta-form-campo label {
    position: absolute;
    left: 18px;
    top: 50%;
    max-width: calc(100% - 36px);
    transform: translateY(-50%);
    padding: 0 4px;
    background-color: var(--branco);
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    color: #00000066;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

#cta .cta-form-campo input:focus ~ label,
#cta .cta-form-campo input:not(:placeholder-shown) ~ label,
#cta .cta-form-campo textarea:focus ~ label,
#cta .cta-form-campo textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 10px;
    color: var(--preto);
}

#cta .cta-form-campo-mensagem label {
    top: 26px;
}

#cta .cta-form-campo-mensagem textarea:focus ~ label,
#cta .cta-form-campo-mensagem textarea:not(:placeholder-shown) ~ label {
    top: 0;
}

#cta .cta-form-campo-invalido input,
#cta .cta-form-campo-invalido textarea {
    border-color: red;
    outline: none;
}

#cta .cta-form-campo-invalido input:focus,
#cta .cta-form-campo-invalido textarea:focus {
    border-color: red;
    outline: none;
    box-shadow: none;
}

#cta .cta-form-campo-invalido label {
    top: 0;
    font-size: 10px;
    color: red;
}

#cta .cta-form-campo-mensagem {
    margin-top: 20px;
}

#cta .cta-form-campo-mensagem textarea {
    height: 150px;
    padding: 16px 18px;
    resize: none;
}

#cta .phone_hp {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

#cta .cta-form-botao {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 16px;
    cursor: pointer;
}

#cta .cta-form-aviso {
    font-weight: 500;
    font-size: 14px;
    color: #00000066;
    margin-top: 20px;
    padding: 0 20px;
}

#cta .cta-form-aviso a {
    color: #00000066;
}

@media (max-width: 640px) {
    #cta .cta-card {
        padding: 48px 24px;
    }

    #cta .cta-titulo {
        font-size: 26px;
    }

    #cta .cta-form-card {
        padding: 28px 20px;
    }

    #cta .cta-form-linha {
        flex-direction: column;
        gap: 20px;
    }

    #cta .cta-botoes {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}

@media (max-width: 600px) {

.orcamento-item-cabecalho {
    gap: 20px;
    flex-direction: column;
    margin-bottom: 15px;
}


}

/* --------------------------------------------------------------------------
   KPIs reutilizáveis (#segmentos-kpis) — título à esquerda + 4 indicadores
   em linha. Partial em page-templates/geral/segmentos-kpis.php. Ícones
   (mapa/2019) reaproveitados da home (indicador-icone).
   -------------------------------------------------------------------------- */

#segmentos-kpis {
    padding: 49.5px 0;
    background-color: var(--branco);
}

#segmentos-kpis .container {
    width: 1600px;
    max-width: 92%;
    margin: 0 auto;
}

.segmentos-kpis-lista {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px 24px;
}

.segmentos-kpis-titulo {
    margin: 0;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #6E7180;
    flex-shrink: 0;
}

.segmentos-kpi {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.segmentos-kpi-numero {
    position: relative;
    flex-shrink: 0;
}

.segmentos-kpi-prefixo {
    position: absolute;
    left: 0;
    bottom: 100%;
    margin-bottom: -9px;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 10.74px;
    line-height: 13.81px;
    letter-spacing: 0%;
    color: #6E7180;
    white-space: nowrap;
}

.segmentos-kpi-valor {
    margin: 0;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 40.58px;
    line-height: 52.17px;
    letter-spacing: 0%;
    color: #00ADAD;
}

.segmentos-kpi-unidade {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20.29px;
    line-height: 26.09px;
    letter-spacing: 0%;
    color: #6E7180;
}

.segmentos-kpi-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.segmentos-kpi-icone svg {
    width: 39px;
    height: auto;
}

.segmentos-kpi-descricao {
    margin: 0;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #6E7180;
    max-width: 170px;
}

@media (max-width: 1300px) {
    .segmentos-kpis-lista {
        gap: 32px 24px;
    }

    .segmentos-kpi-descricao {
        max-width: 140px;
    }
}

@media (max-width: 1080px) {
    .segmentos-kpis-titulo {
        font-size: 14px;
    }

    .segmentos-kpi-descricao {
        font-size: 12px;
    }

    .segmentos-kpi-valor {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    #segmentos-kpis {
        padding: 28.5px 0;
    }

    .segmentos-kpis-lista {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .segmentos-kpi-descricao {
        max-width: none;
    }
}


@media (max-width: 400px) {
    .case-form-card .cta-form-aviso {
        font-size: 12px;
        padding: 0 3px;
    }
}

@media (max-width: 360px) {
.botao {
    font-size: 14px;
}

}
