/* ============================= */
/* GERAL */
/* ============================= */

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 120px;
}

body {
    background: #f5f1f2 !important;
    margin: 0;
    padding: 0;
}

/* ============================= */
/* HEADER */
/* ============================= */

.topo {
    background: #1b1b1b;
    border-bottom: 4px solid #647a34;
    position: sticky;
    top: 0;
    z-index: 999;
}

.topo .centralizar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    width: 100px;
    height: auto;
    display: none;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home {
    display: none;
}

/* ============================= */
/* MENU */
/* ============================= */

.menu-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.menu-categorias a {
    color: #fff;
    text-decoration: none;
    margin-right: 13px;
    font-size: 15px;
    font-weight: bold;
    transition: .3s;
}

.menu-categorias a:hover {
    color: #d9c89e;
}

.menu-categorias a:last-child {
    background: #647a34;
    padding: 12px 18px;
    border-radius: 8px;
    margin-right: 0;
}

.menu-categorias a:last-child:hover {
    background: #7b9440;
    color: #fff;
}

.obs-ilustrativa {
    text-align: center;
    font-style: italic;
    color: #888;
    margin: 0 0 30px;
}

/* ============================= */
/* CONTEÚDO */
/* ============================= */

.conteudo {
    padding: 50px 0;
}

.conteudo .categoria {
    background: #1b1b1b;
    border-top: 4px solid #647a34;
    padding: 35px;
    margin-bottom: 40px;
}

.conteudo .categoria:nth-child(odd) {
    background: none;
    border: none
}

.conteudo .categoria:last-child {
    margin-bottom: 0;
}

/* ============================= */
/* TÍTULO */
/* ============================= */

.titulo {
    color: #647a34;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;

}

.imagem-categoria {
    width: 100%;
    height: 300px;
    position: relative;
}

.imagem-categoria img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}


.linha-divisoria {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, .15);
}

.conteudo .categoria:nth-child(odd) .linha-divisoria {
    background-color: rgba(27, 27, 27, .15);
}


/* ============================= */
/* PRODUTOS COM IMAGEM */
/* ============================= */

.grid-produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.produto-card {
    width: 210px;
    margin: 0 10px 25px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.produto-card:hover {
    transform: translateY(-6px);
}

.produto-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.produto-card h3 {
    padding: 12px 15px 5px;
    margin: 0;
    font-size: 15px;
    color: #1b1b1b;
}

.produto-card .codigo {
    padding: 0 15px 5px;
    color: #777;
}

.produto-card .preco {
    padding: 0 15px 15px;
    color: #647a34;
    font-weight: bold;
}

/* ============================= */
/* PRODUTOS SEM IMAGEM */
/* ============================= */

.lista-produtos {
    margin-top: 20px;
    columns: 2;
    column-gap: 50px;
}

.lista-produtos .item {
    display: block;
    break-inside: avoid-column;
    margin-bottom: 20px;
}

.lista-produtos .item:hover {
    transform: none;
}

.lista-produtos.com-imagem {
    columns: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: normal;
}

.lista-produtos.com-imagem .item {
    break-inside: auto;
}

.linha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.linha strong,
.linha h3 {
    color: #ffffff;
    margin: 0;
    font-size: 17px;
    font-weight: bold;
}

.conteudo .categoria:nth-child(odd) .linha strong,
.conteudo .categoria:nth-child(odd) .linha h3 {
    color: #1b1b1b;
}

.linha .preco {
    color: #647a34;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.codigo {
    color: #b5b5b5;
    margin-top: 5px;
    font-size: 13px;
}

.conteudo .categoria:nth-child(odd) .codigo {
    color: #777;
}

/* ============================= */
/* BOTÃO TOPO */
/* ============================= */

.btn-topo {
    position: fixed;
    right: 25px;
    bottom: 115px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #647a34;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
}

.btn-topo:hover {
    background: #7b9440;
    transform: translateY(-3px);
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer-cardapio {
    background: #1b1b1b;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 4px solid #647a34;
    box-sizing: border-box;
}

.footer-cardapio .central {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cardapio p {
    margin: 5px 0;
}


.topo-cardapio {
    width: 100%;
    height: 180px;
    position: relative;
    text-align: center;
}

.topo-cardapio:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background: #1b1b1b;
}

.topo-cardapio:after {
    content: '';
    position: absolute;
    left: 0;
    top: 66px;
    width: 100%;
    height: 4px;
    background: #647a34;
}

.logo-topo {
    position: relative;
    z-index: 2;
    width: 220px;
    height: auto;
    margin: 0 auto;
}

.logo-topo img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
}

.cardapio-indisponivel {
    background: #f5f1f2;
    padding: 40px 0 80px;
}

.cardapio-box {
    width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.cardapio-box h1 {
    color: #647a34;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.cardapio-box p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.botoes-cardapio {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-whatsapp {
    display: inline-block;
    background: #647a34;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: .3s;
}

.btn-whatsapp:hover {
    background: #758d3d;
}

.btn-site {
    display: inline-block;
    background: #1b1b1b;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #647a34;
    border-radius: 4px;
    font-weight: bold;
    transition: .3s;
}

.btn-site:hover {
    background: #647a34;
    border-color: #647a34;
}