html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 50px; /* Altere 100px para a altura exata do seu menu fixo */
}

body{
    background-color:#fbf7f8 !important;
}

/* TOPO */
.topo{
    background:#1b1b1b;
    border-bottom:4px solid #a61c1c;
	position: relative;
}

.topo .centralizar{
    display:block;
    text-align:center;
    padding:10px 0;
}

.logo{
    width: 95px;
    height: auto;
    display: block;
	margin: 15px 0 20px 40px;
}

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

/* MENU CATEGORIAS */
.menu-categorias{
	background:#a61c1c;
	padding:12px;
	text-align:center;
	font-weight:bold;
	color:#fff;
	cursor:pointer;
	position:relative;
}

/* TEXTO DO BOTÃO */
.menu-categorias:before{
	content:"☰ CATEGORIAS";
	display:block;
}

/* LINKS ESCONDIDOS */
.menu-categorias a{
	display:none;
	padding:10px 0;
	border-top:1px solid rgba(255,255,255,0.2);
	color:#fff;
	text-decoration:none;
}

.menu-categorias a:first-child{border-top: none; margin-top: 25px;}


.home{
	width: 100px;
    height: auto;
    position: absolute;
    right: 35px;
    top: 50%;
    margin-top: -47px;
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    padding: 15px 10px;
    background-color: #a61c1c;
    border-radius: 10px;
    transition: 0.2s;
}
.home:hover{color: #a61c1c; background-color: #f3efd3;}

/* CONTEÚDO */
.conteudo{
    padding:15px;
}

.titulo{
    font-size:22px;
    margin:20px 0 15px;
    border-bottom:2px solid #ddd;
    padding-bottom:8px;
}

/* GRID VIRA LISTA (1 COLUNA) */
.grid-produtos{
    display:block;
}

.obs-ilustrativa {
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* CARD PRODUTO */
.produto-card{
    width:49%;
    margin: 0 0 18px;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

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

.produto-card h3{
    font-size:13px;
    padding:10px 12px 4px;
}

.produto-card .codigo{
    font-size:13px;
    color:#777;
    padding:0 12px 4px;
}

.produto-card .preco{
    font-size:13px;
    color:#a61c1c;
    font-weight:bold;
    padding:0 12px 12px;
}

/* LISTA SIMPLES */
.lista-produtos{display: flex; flex-wrap: wrap; justify-content: space-between;}
.lista-produtos .item{
    background:#fff;
    margin-bottom:20px;
    border-radius:5px;
}
.lista-produtos .item:last-child{margin-bottom: 0;}

.linha{
    display:block;
    font-size:16px;
    font-weight:bold;
}

.linha .preco{
    display:block;
    color:#a61c1c;
    margin-top:3px;
}

.codigo{
    font-size:13px;
    color:#777;
}

/* BOTÃO SUBIR */
.btn-topo{
    position:fixed;
    right:15px;
    bottom:15px;
    width:45px;
    height:45px;
    background:#a61c1c;
    color:#fff;
    font-size:18px;
    text-align:center;
    line-height:45px;
    border-radius:50%;
    text-decoration:none;
}

/* FOOTER */
.footer{
    background:#1b1b1b;
    color:#fff;
    padding:20px 10px;
    margin-top:25px;
    text-align:center;
    font-size:13px;
}

.footer .centralizar{
    display:block;
}
