:root {
            --amarelo: #e5ac0a;
            --cinza-escuro: #2c2c2c;
            --marrom: #4a3a2b;
            --bege-claro: #fef7e9;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #faf6f0;
            color: #2e2e2e;
            padding-top: 130px; /* Espaço para navbar fixa + menu fixo */
        }

        h1, h2, h3, h4 {
            font-weight: 700;
        }

        /* HEADER FIXO NO TOPO */
        .navbar-custom {
            background-color: #fff;
            box-shadow: 0 6px 12px rgba(0,0,0,0.03);
            padding-top: 6px;
            padding-bottom: 6px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
        }

        .navbar-brand img {
            max-height: 50px;
            width: auto;
        }

        .nav-link.bt-download {
            background: var(--amarelo);
            border-radius: 30px;
            padding: 8px 18px !important;
            font-weight: 600;
            color: #000 !important;
            font-size: 0.9rem;
            transition: 0.2s;
            white-space: nowrap;
        }

        .nav-link.bt-download:hover {
            background: #cf9a08;
            color: #fff !important;
        }

        /* MENU DE CATEGORIAS FIXO ABAIXO DO HEADER */
        .categoria-nav-container {
            position: fixed;
            top: 70px; /* Altura aproximada da navbar */
            left: 0;
            right: 0;
            background-color: #faf6f0;
            z-index: 1020;
            padding: 10px 0 5px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .categoria-nav-wrapper {
            position: relative;
        }

        .categoria-nav {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            gap: 10px;
            padding-bottom: 8px;
            margin-bottom: 0;
            scrollbar-width: thin;
            scroll-behavior: smooth;
            -ms-overflow-style: -ms-autohiding-scrollbar;
        }

        .categoria-nav::-webkit-scrollbar {
            height: 4px;
        }

        .categoria-nav::-webkit-scrollbar-track {
            background: #e0d6c8;
            border-radius: 10px;
        }

        .categoria-nav::-webkit-scrollbar-thumb {
            background: var(--amarelo);
            border-radius: 10px;
        }

        .categoria-nav .btn {
            background: white;
            border-radius: 50px;
            padding: 10px 22px;
            font-weight: 600;
            border: 1px solid #e2dcd0;
            color: #444;
            white-space: nowrap;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .categoria-nav .btn.active {
            background: var(--amarelo);
            border-color: var(--amarelo);
            color: black;
            transform: scale(1.05);
        }

        .categoria-nav .btn i {
            margin-right: 6px;
        }

        /* Indicadores de rolagem */
        .scroll-indicator {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 40px;
            pointer-events: none;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .scroll-indicator.left {
            left: 0;
            background: linear-gradient(to right, #faf6f0, transparent);
        }

        .scroll-indicator.right {
            right: 0;
            background: linear-gradient(to left, #faf6f0, transparent);
        }

        .scroll-indicator.show {
            opacity: 1;
        }

        /* Setas de navegação (opcional) */
        .scroll-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: var(--amarelo);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            opacity: 0.8;
            transition: opacity 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .scroll-arrow:hover {
            opacity: 1;
        }

        .scroll-arrow.left {
            left: 5px;
        }

        .scroll-arrow.right {
            right: 5px;
        }

        .scroll-arrow i {
            color: black;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .scroll-arrow {
                display: none; /* Esconde as setas em mobile, usa scroll nativo */
            }
        }

        /* Scroll suave para toda a página */
        html {
            scroll-behavior: smooth;
        }

        .footer-unidades {
            background: #1e1e1e;
            color: #ddd;
            padding: 30px 15px;
            border-radius: 40px 40px 0 0;
            margin-top: 40px;
        }

        .footer-unidades h3 {
            color: var(--amarelo);
            font-size: 1.25rem;
            margin-top: 15px;
        }

        .foot-loc {
            display: flex;
            gap: 12px;
            align-items: center;
            background: rgba(255,255,255,0.05);
            padding: 12px;
            border-radius: 18px;
        }

        .prato-card {
            background: white;
            border-radius: 28px;
            padding: 1.25rem 1rem;
            margin-bottom: 16px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.02);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            transition: 0.15s;
            border: 1px solid rgba(0,0,0,0.02);
            height: 100%;
        }

        .prato-card:hover {
            border-color: var(--amarelo);
            box-shadow: 0 10px 22px rgba(229,172,10,0.1);
        }

        .img-prato {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border-radius: 20px;
            background: #eee;
            margin-right: 16px;
            border: 2px solid #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.02);
        }

        .info-prato {
            flex: 1;
            min-width: 160px;
        }

        .nome-prato {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: #1f1f1f;
        }

        .desc-prato {
            font-size: 0.8rem;
            color: #6c6c6c;
            margin-bottom: 6px;
            font-style: italic;
        }

        .preco-prato {
            font-weight: 700;
            color: #1f1f1f;
            background: #f3edd8;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid #e9dbb2;
            margin: 3px;
        }

        .categoria-titulo {
            display: flex;
            align-items: baseline;
            margin-top: 28px;
            margin-bottom: 18px;
            border-bottom: 3px solid var(--amarelo);
            padding-bottom: 8px;
            scroll-margin-top: 140px; /* Espaço para compensar header + menu fixos */
        }

        .categoria-titulo h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #3a2e23;
        }

        .categoria-titulo i {
            color: var(--amarelo);
            margin-right: 12px;
            font-size: 1.8rem;
        }

        .aviso-preco {
            background: #fff4df;
            border-radius: 60px;
            padding: 16px 22px;
            text-align: center;
            font-size: 0.9rem;
            margin: 30px 0 15px;
            border: 1px dashed var(--amarelo);
        }

        .badge-especial {
            background: var(--amarelo);
            color: #000;
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }

        .badge-video {
                font-weight: 700;
                color: #1f1f1f;
                background: #dfab96;
                display: inline-block;
                padding: 5px 16px;
                border-radius: 50px;
                font-size: 0.9rem;
                border: 1px solid #e9dbb2;
                margin: 3px;
        }

        .badge-disponibilidade {
            background: #28a745;
            color: white;
            border-radius: 20px;
            padding: 3px 10px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }

        .volume-bebida {
            font-size: 0.8rem;
            color: #6c6c6c;
            margin-left: 5px;
        }

        @media (max-width: 576px) {
            body {
                padding-top: 120px;
            }
            .categoria-nav-container {
                top: 65px;
            }
            .categoria-titulo {
                scroll-margin-top: 130px;
            }
            .prato-card {
                padding: 12px;
            }
            .img-prato {
                width: 75px;
                height: 75px;
                margin-right: 12px;
            }
            .nome-prato {
                font-size: 1rem;
            }
            .categoria-titulo h2 {
                font-size: 1.4rem;
            }
            .categoria-nav .btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        .scrollup {
            position: fixed;
            bottom: 30px;
            right: 20px;
            background: var(--amarelo);
            color: black;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 8px 18px rgba(0,0,0,0.1);
            opacity: 0.9;
            transition: 0.2s;
            z-index: 99;
        }

        .scrollup:hover {
            background: #c99a0b;
            color: white;
        }

        .precos-container {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .sabores {
            font-size: 0.75rem;
            color: #856404;
            background: #fff3cd;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 5px;
        }
        
        .observacao {
            font-size: 0.75rem;
            color: #721c24;
            background: #f8d7da;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 5px;
        }
        
        .subcategoria-titulo {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5a4a3a;
            margin-top: 15px;
            margin-bottom: 10px;
            padding-left: 10px;
            border-left: 4px solid var(--amarelo);
        }

        /* IDs das seções para scroll */
        .secao-cardapio {
            display: block !important; /* SEMPRE VISÍVEL - não ocultar */
        }

        /* Botão flutuante de voltar ao topo */
        .btn-voltar-todos {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: #fff;
            color: var(--amarelo);
            border: 2px solid var(--amarelo);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 8px 18px rgba(0,0,0,0.1);
            opacity: 0.9;
            transition: 0.2s;
            z-index: 98;
            text-decoration: none;
        }
        
        .btn-voltar-todos:hover {
            background: var(--amarelo);
            color: white;
        }