/* Jean Adicionou */

body {
    background-image: url("../img/buteco.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -100px;
    background-attachment: fixed;
    /* Faz o fundo ficar fixo ao rolar a página */
    overflow-x: hidden;
    margin: 0;
    padding: 1rem;
    font-family: "Libre Baskerville", serif;
}



/* ESSA PARTE AQUI CRIA UM FUNDO MAIS ESCUTO EM CIMA DA IMAGEM E FAZ COM QUE PARECA OPACIDADE  */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(90, 81, 81, 0.5); */
    /* Cor de fundo com opacidade */
    z-index: -1;
    /* Coloca o pseudo-elemento atrás do conteúdo */
}

/* ================================== */

h1,
h2 {
    text-align: center;
    color: #b53b1d;
}

.categoria {
    margin-bottom: 2rem;
    color: white;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.preco {
    font-weight: bold;
}

#carrinho-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #b53b1d;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#carrinho-icon:hover {
    background: #922f15;
}