body {
    font-family: 'Montserrat Alternates', sans-serif;
    background-color: #BE3F1D; /* Cinza claro */
    color: #2C2E35; /* Cinza escuro */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body.cardapio {
    background-color: #BE3F1D;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: inline-block;
    padding: 15px 20px;
    background-color: #DD892B
; /* Laranja */
    color: #F5F6F6; /* Branco */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #F5F6F6;
    color: #DD892B;
; /* Vermelho escuro */
}

h1 {
    font-family: 'Montserrat', sans-serif;
    color: #F5F6F6; /* Marrom */
    margin-bottom: 20px;
}

body.cardapio h1 {
    color: #F5F6F6;
}

body.cardapio h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #F5F6F6;
    font-size: 16px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #F5F6F6;
    margin-top: 20px;
    padding: 10px;
}

footer a {
    color: #F5F6F6;
    text-decoration: none;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.menu a {
    color: #F5F6F6;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #DD892B;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #F5F6F6;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #DD892B;
    padding-bottom: 5px;
}

.itens {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 16px;
}

.item span:first-child {
    flex: 1;
    color: #F5F6F6;
    text-align: left;
}

.item span:last-child {
    font-weight: bold;
    color: #DD892B;
}

.tabela-espetos {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.tabela-espetos th,
.tabela-espetos td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabela-espetos th {
    background-color: #DD892B;
    color: #F5F6F6;
    font-weight: bold;
}

.tabela-espetos td {
    color: #F5F6F6;
}

.tabela-espetos td:nth-child(2),
.tabela-espetos td:nth-child(3) {
    font-weight: bold;
    color: #DD892B;
}

.link-voltar {
    display: inline-block;
    margin-top: 15px;
    color: #DD892B;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #DD892B;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.link-voltar:hover {
    background-color: #DD892B;
    color: #F5F6F6;
}

/* Mobile first adjustments */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        width: 100%;
        text-align: center;
    }

    .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .tabela-espetos {
        font-size: 14px;
    }

    .tabela-espetos th,
    .tabela-espetos td {
        padding: 8px;
    }
}
