#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
#pratos {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}
.prato {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 18px;
    width: 25%;
    padding: 20px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.prato-heart {
    position: absolute;
    background-color: #ddceaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.563rem;
    color: #fff9ea;
    width: 70px;
    height: 70px;
    right: -10px;
    top: -10px;
    border-radius: 0px 37.5px 0px 42.5px;
}
.prato-img{
    width: 200px;
    height: 200px;
}
.prato-descricao {
    color: #434343;
    text-align: center;
}
.prato-nota i {
    color: #6e5c41;
}
.prato-preco {
    display: flex;
    align-items: center;
    gap: 20px;
}
.prato-preco i{
    background-color: #baa88d;
}
@media screen and (max-width: 1170px) {
    #pratos {
        flex-wrap: wrap;
        justify-content: center;
    }
    .prato {
        width: calc(50% - 12px);
    }
}
@media screen and (max-width: 600px) {
    .prato {
        width: 100%;
    }
    #menu .section-subtitulo {
        text-align: center;
    }
} 