        /* ===== VARIÁVEIS E SISTEMA DE DESIGN ===== */
        :root {
            --primary-bg: #050505;
            --secondary-bg: #0e0e0e;
            --accent-gold: #ff9d00;
            --accent-orange: #ff6b00;
            --accent-gradient: linear-gradient(135deg, #ff9d00 0%, #ff6b00 100%);
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-blur: blur(12px);
            --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.2);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== ESTILOS GERAIS ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        section {
            padding: 100px 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .highlight {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ===== BOTÕES ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: #000;
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-main);
            backdrop-filter: var(--glass-blur);
        }

        .btn-outline:hover {
            background: var(--glass-bg);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        header.scrolled {
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            padding: 10px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--text-main);
        }

        .logo h1 span {
            color: var(--accent-gold);
        }

        .nav-menu {
            display: flex;
            gap: 35px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* ===== HERO ===== */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
                url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1600&q=80') center/cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #050505 30%, transparent 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
        }

        .hero h2 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            line-height: 1;
            margin-bottom: 25px;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        /* ===== PROMOÇÃO ===== */
        .promocao {
            background-color: var(--secondary-bg);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .promo-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .promo-info h3 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .promo-price {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            font-family: 'Oswald';
        }

        .promo-price small {
            font-size: 1.5rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .promo-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .promo-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .promo-list li i {
            color: var(--accent-gold);
        }

        .promo-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* ===== CARDÁPIO ===== */
        .produtos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .produto-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: var(--glass-blur);
            border-radius: 20px;
            padding: 20px;
            transition: var(--transition);
            position: relative;
        }

        .produto-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--shadow-glow);
        }

        .produto-img-wrapper {
            width: 100%;
            height: 220px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .produto-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .produto-card:hover .produto-img-wrapper img {
            transform: scale(1.1);
        }

        .produto-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .produto-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            height: 45px;
            overflow: hidden;
        }

        .produto-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--glass-border);
        }

        .produto-price {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            font-family: 'Oswald';
        }

        .btn-add {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: var(--accent-gradient);
            border: none;
            color: #000;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .btn-add:hover {
            transform: scale(1.1) rotate(90deg);
        }

        /* ===== MODAL CARRINHO ===== */
        .carrinho-modal {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background: #0a0a0a;
            z-index: 2000;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 40px;
            border-left: 1px solid var(--glass-border);
        }

        .carrinho-modal.active {
            right: 0;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

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

        .carrinho-header h3 {
            font-size: 2rem;
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--accent-gold);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 30px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--glass-border);
        }

        .item-details h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .item-details p {
            color: var(--accent-gold);
            font-weight: 700;
        }

        .item-qty {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--glass-bg);
            padding: 5px 15px;
            border-radius: 10px;
        }

        .item-qty button {
            background: none;
            border: none;
            color: var(--text-main);
            cursor: pointer;
            font-size: 1.2rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #030303;
            padding: 80px 0 40px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-col p {
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--accent-gold);
            color: #000;
            transform: translateY(-5px);
        }

        /* ===== WHATSAPP FLOAT ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 65px;
            height: 65px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 992px) {
            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero::before {
                background: rgba(0, 0, 0, 0.6);
            }

            .promo-card {
                grid-template-columns: 1fr;
                padding: 40px 25px;
            }

            .promo-img {
                order: -1;
                height: 300px;
            }
        }

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

            .nav-menu {
                display: none;
            }

            .carrinho-modal {
                width: 100%;
                right: -100%;
            }

            .hero h2 {
                font-size: 3rem;
            }

            .promo-card {
                padding: 30px 20px;
            }
        }

        /* ===== ESTILOS ADICIONAIS DO CARRINHO ===== */
        .carrinho-flutuante {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 900;
        }

        .header-cart {
            position: relative;
            cursor: pointer;
            font-size: 1.4rem;
            color: var(--text-main);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-cart:hover {
            color: var(--accent-gold);
        }

        .cart-count {
            background: var(--accent-gold);
            color: #000;
            font-size: 0.75rem;
            font-weight: 800;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -8px;
            right: -10px;
        }
