@font-face {
    font-family:'AhsingRegular';
    src:        
        url(../../fonts/Ahsing.woff2) format('woff2'),        
        
        url(../../fonts/AhsingRegular.woff) format('woff'),        
       
        url(../../fonts/AhsingRegular.otf) format('opentype');

    font-weight: normal;
    font-style: normal;

}

/* Estilos da seção principal do cardápio */
main.menu-section {
    background-image: url("../../images/ARCO\ IRIS\ FUNDO\ DA\ PAGINA.png");
    background-color: var(--cor-fundo);
    text-shadow: var(--text-shadoow);
    background-size: cover;     
    background-position: center center;
    background-attachment: scroll;
    justify-content: flex-end; 
    color: var(--texto-cor);
    padding: 60px 40px;
    font-family: 'Roboto', sans-serif;
}

/* Título principal da página "Cardápio" */
.page-title {
    font-family: 'ahsingRegular' , Impact, sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title .star-icon {
    width: 45px;
    height: auto;
}


.menu-grid {
    display: grid;   
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 50px; 
    max-width: 1200px;
    margin: 0 auto;
}

.menu-column h2 {
    font-family: 'ahsingRegular', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
}


.menu-item {
    margin-bottom: 20px;
}

.menu-item h3 {
    font-family: 'Cinzel Decorative', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.menu-item p {
    font-size: 1rem;
    color: var(--texto-cor);
    margin: 0;
}

/* Estilo das linhas divisórias */
hr.brown-divider, hr.grey-divider {
    border: none;
    margin: 15px 0;
}
hr.brown-divider {
    height: 10px;
    background-color: #3E2F23; /* Marrom escuro */
}
hr.grey-divider {
    height: 10px;
    background-color: #444; /* Cinza escuro */
}


/* Estilo da caixa de preços */
.prices-box {
    background-color: #9b0511; /* Vermelho escuro */
    text-shadow: var(--text-shadoow);
    border: 2px solid #fff;
    padding: 25px;
    
}

.prices-box h2 {
    font-family: 'ahsingRegular', ahsing;
    color:var(--texto-cor);
    text-shadow: var(--text-shadow);
    font-size: 3rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.prices-box ul {
    color: #000000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.prices-box li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.prices-box li:last-child {
    border-bottom: none; /* Remove a borda do último item */
}

.prices-box li h3 {
    font-family: 'ahsingRegular', sans-serif;
    font-size: 1.6rem;
    margin: 0 0 5px 0;
}
/* Adicione esta NOVA REGRA no seu CSS */

.prices-box li h3 .price-value {
    text-shadow: var(--text-shadoow);
    font-family: 'Roboto', sans-serif;
     font-weight: 600;
}

.prices-box li small {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: var(--texto-cor);
}



@media (max-width: 900px) {
    .menu-grid {
        
        grid-template-columns: 1fr;
    }

    main.menu-section {
        padding: 40px 20px;
    }
}