  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        :root {
            --primary: #FF6B35;
            --secondary: #FFA726;
            --accent: #D84315;
            --light: #FFF8E1;
            --dark: #2E2E2E;
            --text: #333333;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--white);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 80px; /* Espaço para o menu fixo */
        }
        
        /* Tipografia Mobile */
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        /* Container Mobile */
        .container {
            width: 100%;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            padding: 3rem 1rem;
        }
        
        /* Botões Mobile */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            min-height: 50px;
            width: 100%;
            max-width: 280px;
            margin: 0.5rem auto;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        
        .btn-whatsapp:hover {
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), #FF9800);
        }
        
        /* Header Mobile */
      /* Header Mobile */
header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--primary);
}

.logo-text:last-child {
    color: var(--accent);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.mobile-menu {
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

nav.active {
    transform: translateY(0);
    opacity: 1;
}

nav ul {
    list-style: none;
    padding: 1rem;
}

nav ul li {
    margin-bottom: 1rem;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Media Queries para Desktop */
@media (min-width: 1024px) {
    .logo {
        font-size: 1.8rem;
        gap: 0.75rem;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    nav {
        position: static;
        transform: none;
        opacity: 1;
        background: transparent;
        box-shadow: none;
        width: auto;
    }
    
    nav ul {
        display: flex;
        gap: 2rem;
        padding: 0;
    }
    
    nav ul li {
        margin-bottom: 0;
    }
    
    .mobile-menu {
        display: none;
    }
}
        
        /* Hero Section Mobile */
        .hero {
           background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
            url('image/fotomarmitas.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 8rem 1rem 4rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        /* Destaques Mobile */
        .highlights {
            background: var(--light);
        }
        
        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .highlight-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--white);
            font-size: 1.5rem;
        }
        
        /* Cardápio Mobile */
        .menu {
            background: var(--white);
        }
        
        .menu-categories {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            -webkit-overflow-scrolling: touch;
        }
        
        .menu-categories::-webkit-scrollbar {
            display: none;
        }
        
        .category-btn {
            padding: 0.75rem 1.5rem;
            background: var(--light);
            border: 2px solid transparent;
            border-radius: 25px;
            color: var(--dark);
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .category-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            border-color: var(--primary);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .menu-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
        }
        
        .menu-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .menu-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-item:hover .menu-img img {
            transform: scale(1.05);
        }
        
        .menu-content {
            padding: 1.5rem;
        }
        
        .menu-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.25rem;
            margin: 0.5rem 0;
        }
        
        .menu-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        /* Sobre Mobile */
        .about {
            background: linear-gradient(135deg, var(--light), #FFECB3);
        }
        
        .about-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-content h2 {
            text-align: left;
        }
        
        .about-content h2:after {
            left: 0;
            transform: none;
        }
        
        /* Depoimentos Mobile */
        .testimonials {
            background: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .rating {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Contato Mobile */
        .contact {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
        }
        
        .contact h2 {
            color: var(--white);
        }
        
        .contact h2:after {
            background: var(--secondary);
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-info {
            text-align: center;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            gap: 1rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .contact-form textarea {
            height: 120px;
            resize: vertical;
        }
        
        /* Footer Mobile */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 1rem 1rem;
            text-align: center;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .footer-links h4,
        .footer-hours h4 {
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        
        .copyright {
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Botão WhatsApp Flutuante Mobile */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-float i {
            color: white;
            font-size: 1.5rem;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Menu Fixo Inferior Mobile */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            display: flex;
            justify-content: space-around;
            padding: 0.75rem 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #666;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .nav-item.active {
            color: var(--primary);
        }
        
        .nav-icon {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }
        
        /* Media Queries para Tablets */
        @media (min-width: 768px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
            
            .btn {
                width: auto;
                min-width: 200px;
            }
        }
        
        /* Media Queries para Desktop */
        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
            
            section {
                padding: 5rem 2rem;
            }
            
            .highlights-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .about-container {
                flex-direction: row;
                align-items: center;
            }
            
            .about-content {
                flex: 1;
            }
            
            .about-img {
                flex: 1;
            }
            
            .contact-container {
                flex-direction: row;
            }
            
            nav {
                position: static;
                transform: none;
                opacity: 1;
                background: transparent;
                box-shadow: none;
                width: auto;
            }
            
            nav ul {
                display: flex;
                gap: 2rem;
                padding: 0;
            }
            
            nav ul li {
                margin-bottom: 0;
            }
            
            .mobile-menu {
                display: none;
            }
            
            .bottom-nav {
                display: none;
            }
            
            body {
                padding-bottom: 0;
            }
        }