:root {
    --gold: #FFD700;
    --gold-light: #F8E9A1;
    --gold-dark: #D4AF37;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --light-gray: #333333;
    --red: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--black);
    color: var(--gold);
    line-height: 1.4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-section {
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--gold-dark);
    padding-bottom: 0.5rem;
}

.menu-item {
    position: relative;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2); /* Linha sutil dourada */
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 20px; /* Adicionando margem superior para dar espaço ao preço */
}

.menu-item h3::before {
    content: attr(data-number);
    color: var(--gold);
    margin-right: 0.5rem;
}

.menu-item .price {
    position: relative; /* Alterado de absolute para relative */
    color: var(--gold);
    font-weight: bold;
    text-align: right; /* Alinhando à direita */
    margin-bottom: 5px; /* Espaço entre o preço e o nome do item */
    display: block; /* Garantindo que seja um elemento de bloco */
}

.menu-item .description {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-left: 2.5rem;
    opacity: 0.8;
}

.quick-nav {
    background-color: #222;
    border-radius: 8px;
    margin: 10px 0 20px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.quick-nav-title {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
}

.quick-nav-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.quick-nav-item {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-nav-item:hover {
    background-color: #FFD700;
    color: #000;
}

#backToTopBtn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #D4AF37;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTopBtn:hover {
    background-color: #B8860B;
}

.header {
    margin-bottom: 2rem;
}

.header .logo {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold-light);
}
