body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--cor-fundo, #111);
    color: var(--cor-texto, #fff);
}

.back-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #f63f3f;
    font-weight: bold;
}

.content {
    padding: 20px;
}

h2, h3 {
    margin: 10px 0;
    color: #f63f3f;
}

.filtro-categorias {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filtro-categorias button {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background-color: #f63f3f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filtro-categorias button:hover {
    background-color: #d93131;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    max-width: 300px;
    margin: 10px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: #1E1E1E;
}

.highlight-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.highlight-card div {
    text-align: center;
}

.preco {
    color: #f63f3f;
    font-weight: bold;
}

.btn-cardapio {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #f63f3f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-cardapio:hover {
    background-color: #d93131;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 16px;
    color: #888;
}