/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #e0e0ff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header futurista */
.header {
    background: rgba(25, 20, 50, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(128, 0, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 128, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}

.header .subtitle {
    font-size: 1.3rem;
    opacity: 0.85;
}

/* Grid de conteúdo */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

/* Navegação futurista */
.main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-item {
    background: rgba(30, 25, 60, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #e0e0ff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(100, 80, 200, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(128, 0, 128, 0.5);
    border: 1px solid rgba(180, 100, 255, 0.6);
}

.nav-item i {
    font-size: 2.5rem;
    color: #b46eff;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-item:hover i {
    transform: scale(1.2);
}

.nav-item span {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e0e0ff;
}

/* Seção de promoção futurista */
.promo-section {
    background: rgba(50, 30, 100, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 100, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(180, 100, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.promo-section > * {
    position: relative;
    z-index: 1;
}

.promo-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}

.promo-section p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Botões de ação */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-garcom, .btn-pedido {
    padding: 22px;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-garcom {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
}

.btn-pedido {
    background: linear-gradient(135deg, #2979ff, #2962ff);
    color: white;
}

.btn-garcom:hover, .btn-pedido:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4), 0 0 20px rgba(0, 200, 83, 0.6);
}

.btn-pedido:hover {
    box-shadow: 0 10px 25px rgba(41, 121, 255, 0.4), 0 0 20px rgba(41, 121, 255, 0.6);
}

.cart-count {
    background: #ff4081;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

/* Slideshow futurista */
.slide-section {
    position: relative;
}

.slideshow {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #b46eff;
    box-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}

/* Media Queries */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-nav {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .slideshow {
        height: 300px;
    }

    .header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .nav-item {
        padding: 20px;
    }

    .promo-section {
        padding: 25px;
    }

    .promo-section h2 {
        font-size: 1.7rem;
    }
}

/* Restante do CSS mantido com estilo futurista aplicado */
/* Cardápio, carrinho, garçom, etc. (veja abaixo) */

/* Categorias */
.categorias {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.categoria-btn {
    padding: 12px 25px;
    border: 2px solid #b46eff;
    background: rgba(50, 30, 100, 0.5);
    color: #e0e0ff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.categoria-btn:hover, .categoria-btn.active {
    background: #b46eff;
    color: #0f0c29;
    box-shadow: 0 0 15px rgba(180, 100, 255, 0.8);
}

/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.produto-card {
    background: rgba(30, 25, 60, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
    border: 1px solid rgba(180, 100, 255, 0.2);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(180, 100, 255, 0.5);
}

.produto-imagem {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destaque-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4081;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.6);
}

.produto-info {
    padding: 25px;
}

.produto-info h3 {
    margin-bottom: 12px;
    color: #e0e0ff;
}

.produto-descricao {
    color: #aaa;
    margin-bottom: 18px;
    font-size: 1rem;
}

.produto-detalhes {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.produto-preco {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b46eff;
}

.btn-adicionar {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.btn-adicionar:hover {
    background: linear-gradient(135deg, #009624, #007e1f);
    transform: scale(1.05);
}

/* Carrinho */
.carrinho-vazio {
    text-align: center;
    padding: 80px 20px;
    color: #aaa;
}

.carrinho-vazio i {
    font-size: 5rem;
    color: #444;
    margin-bottom: 25px;
}

.item-carrinho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: rgba(30, 25, 60, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(180, 100, 255, 0.2);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.item-info img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.item-detalhes h4 {
    margin-bottom: 8px;
    color: #e0e0ff;
}

.item-preco {
    color: #b46eff;
    font-weight: bold;
}

.item-controles {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-quantidade {
    background: rgba(100, 80, 200, 0.3);
    border: 1px solid rgba(180, 100, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.btn-remover {
    background: #ff5252;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 12px;
}

.item-subtotal {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e0e0ff;
    min-width: 120px;
    text-align: right;
}

.carrinho-resumo {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 35px;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.resumo-total h3 {
    color: #b46eff;
    font-size: 1.8rem;
}

.btn-finalizar {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

.btn-finalizar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.6);
}

.btn-continuar {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #2979ff, #2962ff);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(41, 121, 255, 0.4);
}

.btn-continuar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41, 121, 255, 0.6);
}

/* Garçom */
.painel-garcom {
    background: rgba(20, 15, 40, 0.8);
}

.lista-chamados {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.chamado-card {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-left: 6px solid #ff9800;
    animation: pulseGlow 3s infinite;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 8px 25px rgba(255,152,0,0.3); }
    50% { box-shadow: 0 8px 30px rgba(255,152,0,0.6); }
    100% { box-shadow: 0 8px 25px rgba(255,152,0,0.3); }
}

.chamado-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mesa-numero {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9800;
}

.tempo {
    background: #ffeb3b;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.chamado-body p {
    margin: 6px 0;
    color: #aaa;
}

.btn-atender {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

.btn-atender:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.6);
}

/* Notificação */
.notificacao {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(30, 25, 60, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: slideIn 0.6s ease;
    border: 1px solid rgba(180, 100, 255, 0.4);
}

@keyframes slideIn {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

.notificacao-content {
    display: flex;
    align-items: center;
    padding: 25px;
    gap: 20px;
}

.notificacao-content i {
    font-size: 2.5rem;
    color: #b46eff;
}

.notificacao-info h3 {
    margin: 0 0 8px 0;
    color: #e0e0ff;
}

.notificacao-fechar {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #aaa;
}

/* Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(180, 100, 255, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: #b46eff;
    margin-bottom: 12px;
}

.stat-numero {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #e0e0ff;
}

.stat-label {
    color: #aaa;
    font-size: 1rem;
}

/* QR Code */
.qrcode-page {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.qrcode-content {
    max-width: 800px;
    margin: 0 auto;
}

.steps {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.step-number {
    background: #b46eff;
    color: #0f0c29;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
}

.qrcode-scanner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    color: #e0e0ff;
    text-align: center;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

/* Minha Conta */
.conta-content {
    display: grid;
    gap: 35px;
}

.comanda-card {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.comanda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.comanda-status {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
}

.comanda-status.aberta {
    background: #00c853;
    color: white;
}

.comanda-status.fechada {
    background: #ff9800;
    color: white;
}

.comanda-detalhes {
    display: grid;
    gap: 12px;
}

.comanda-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(180, 100, 255, 0.2);
}

.comanda-item .total {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b46eff;
}

.btn-trocar-comanda {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

.btn-trocar-comanda:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.6);
}

/* Mural */
.mural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.mural-item {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.mural-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(180, 100, 255, 0.6);
}

.mural-imagem {
    height: 220px;
    overflow: hidden;
}

.mural-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.mural-imagem img:hover {
    transform: scale(1.1);
}

.mural-info {
    padding: 25px;
}

.mural-data {
    color: #aaa;
    font-size: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(30, 25, 60, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    position: relative;
    border: 1px solid rgba(180, 100, 255, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.modal-content img {
    width: 100%;
    height: auto;
}

.modal-info {
    padding: 25px;
}

/* Avaliação */
.avaliacao-estrelas {
    text-align: center;
    margin: 40px 0;
}

.estrelas {
    direction: rtl;
    display: inline-block;
}

.estrelas input[type="radio"] {
    display: none;
}

.estrelas label {
    font-size: 3.5rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.estrelas label:hover,
.estrelas label:hover ~ label {
    color: #ffd700;
}

.estrelas input[type="radio"]:checked ~ label {
    color: #ffd700;
}

.categorias-avaliacao {
    margin: 40px 0;
}

.categoria-item {
    margin-bottom: 30px;
}

.rating-bars {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-bars input[type="range"] {
    flex: 1;
    height: 12px;
    border-radius: 6px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.rating-bars input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #b46eff;
    cursor: pointer;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #4285F4;
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    margin: 25px 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
}

.btn-google-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.6);
}

/* Header melhorado */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.comanda-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(180, 100, 255, 0.2);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.btn-conta-rapida {
    background: rgba(180, 100, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

/* Alert comanda */
.comanda-alert {
    background: rgba(255, 152, 0, 0.2);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid rgba(255, 152, 0, 0.4);
}

.btn-vincular-comanda {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.4);
}

/* Nav items com lock */
.nav-item.disabled {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.nav-lock {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff9800;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #00c853;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Promo section melhorada */
.promo-badge {
    background: #ff4081;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.6);
}

.promo-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.promo-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(180, 100, 255, 0.2);
}

.promo-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
    color: #b46eff;
}

.promo-item span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e0e0ff;
}

/* Botões com lock */
.btn-lock {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.4);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-garcom:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Status do pedido */
.pedido-status {
    margin-top: 40px;
}

.status-card {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
}

.status-badge.pendente { background: #ff9800; color: white; }
.status-badge.preparando { background: #2196F3; color: white; }
.status-badge.pronto { background: #4CAF50; color: white; }
.status-badge.entregue { background: #9E9E9E; color: white; }

.status-progress {
    margin: 25px 0;
}

.progress-bar {
    height: 12px;
    background: rgba(100, 80, 200, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
}

.progress-fill.pendente { background: linear-gradient(90deg, #ff9800, #ffca28); }
.progress-fill.preparando { background: linear-gradient(90deg, #2196F3, #64b5f6); }
.progress-fill.pronto { background: linear-gradient(90deg, #4CAF50, #81c784); }
.progress-fill.entregue { background: linear-gradient(90deg, #9E9E9E, #bdbdbd); }

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #aaa;
}

.progress-labels span.active {
    color: #b46eff;
    font-weight: bold;
}

.status-time {
    text-align: center;
    color: #aaa;
    font-size: 1rem;
}

.sem-pedido {
    text-align: center;
    padding: 40px;
    color: #aaa;
}

.sem-pedido i {
    font-size: 4rem;
    color: #444;
    margin-bottom: 20px;
    display: block;
}

.btn-fazer-pedido {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
}

.btn-fazer-pedido:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.6);
}

/* Slide com conteúdo */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 40px 25px 25px;
}

.slide-content h3 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}

/* Widget de avaliação */
.avaliacao-widget {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.avaliacao-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.avaliacao-header i {
    color: #ffd700;
    font-size: 2rem;
}

.avaliacao-stars {
    margin-bottom: 20px;
}

.avaliacao-stars i {
    color: #ffd700;
    margin: 0 3px;
    font-size: 1.5rem;
}

.avaliacao-stars span {
    display: block;
    margin-top: 8px;
    color: #aaa;
    font-size: 1rem;
}

.btn-avaliar {
    background: linear-gradient(135deg, #4285F4, #1976D2);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
}

.btn-avaliar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.6);
}

/* Banner destaque */
.banner-destaque {
    background: rgba(30, 25, 60, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-text h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #e0e0ff;
}

.banner-preco {
    display: inline-block;
    background: #ff4081;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.6);
}

.banner-image img {
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
}

/* Footer */
.footer {
    background: rgba(15, 10, 40, 0.9);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(180, 100, 255, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #b46eff;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e0e0ff;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .promo-highlights {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-content {
        padding: 25px 20px 20px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }
}

/* Botão Voltar */
.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180, 100, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(180, 100, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-voltar:hover {
    background: rgba(180, 100, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(180, 100, 255, 0.4);
}