* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    padding-bottom: 30px;
}

/* HEADER */
.header {
    background-color: #111827;
    color: #ffffff;
    text-align: center;
    padding: 25px 15px 20px 15px;
    border-bottom: 4px solid #d32f2f;
}

.brand-logo {
    max-width: 110px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 600;
    font-style: italic;
    margin-top: 2px;
}

/* NAVEGAÇÃO DE CATEGORIAS */
.categories-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #ffffff;
    padding: 12px 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.categories-nav::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    background-color: #f1f3f5;
    border: none;
    padding: 8px 16px;
    margin-right: 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn.active, .nav-btn:hover {
    background-color: #d32f2f;
    color: #ffffff;
}

/* CONTAINER PRINCIPAL */
.menu-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
}

.menu-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* ITEM DA EMENTA */
.menu-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-left: 3px solid transparent;
}

.menu-item.highlight {
    border-left: 3px solid #d32f2f;
    background-color: #fff9f9;
}

.item-info {
    flex: 1;
    padding-right: 15px;
}

.badge-star {
    font-size: 0.7rem;
    color: #d32f2f;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.item-desc {
    font-size: 0.82rem;
    color: #6c757d;
    margin-top: 4px;
    line-height: 1.3;
}

.item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #d32f2f;
    white-space: nowrap;
}

/* RODAPÉ */
.footer {
    text-align: center;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 40px;
    padding: 0 15px;
}

.powered-by {
    margin-top: 6px;
    font-weight: 500;
}

.powered-by span {
    color: #111827;
    font-weight: 700;
}

.contact-info {
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
}