 /* CSS Integrado e Padronizado */
        :root {
            --primary: #f8e4e4;
            --primary-dark: #e9cfcf;
            --secondary: #f4f1ea;
            --accent: #e67e22;
            --text: #333;
            --text-light: #7f8c8d;
            --white: #ffffff;
            --card-bg: #ffffff;
            --primary-color: #e67e22; /* Definido para alinhar com o menu */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            text-decoration: none;
        }

        body {
            background-color: var(--secondary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utilitários de Alinhamento */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        section {
            width: 100%;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent);
            margin-top: 5px;
        }

        /* Header e Navbar */
/* Garante que o conteúdo do header use todo o espaço e alinhe os itens */
.header-content {
    display: flex;
    justify-content: space-between; /* Joga a logo para um lado e o menu para o outro */
    align-items: center;           /* Alinha verticalmente ao centro */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Remove o display: none do header que estava no seu código original */
.header {
    display: block; 
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Garante que a navbar também seja um flex container para os links ficarem lado a lado */
.navbar {
    display: flex;
    gap: 20px; /* Espaçamento entre os links */
    list-style: none;
}

/* Ajuste para o celular: manter na mesma linha ou empilhar apenas se for muito pequeno */
@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
    
    .navbar {
        gap: 10px;
        font-size: 0.8rem; /* Diminui um pouco a fonte no celular para caber tudo */
    }

    .logo img {
        height: 40px; /* Diminui o logo no celular para sobrar espaço para o menu */
    }
}
        /* Ajuste no Header */
.header {
    background: var(--white);
    display: block; /* Alterado de none para block */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Botão Hamburger (Escondido por padrão) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

/* Responsividade do Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostra o botão no celular */
    }

    .navbar {
        display: none; /* Esconde o menu padrão */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
        text-align: center;
    }

    .navbar.active {
        display: flex; /* Mostra quando clicado */
    }
/* Ajuste no Header */
.header {
    background: var(--white);
    display: block; /* Alterado de none para block */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Botão Hamburger (Escondido por padrão) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

/* Responsividade do Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostra o botão no celular */
    }

    .navbar {
        display: none; /* Esconde o menu padrão */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
        text-align: center;
    }

    .navbar.active {
        display: flex; /* Mostra quando clicado */
    }
}
        }

        /* Seção Hero (Slider + Texto) */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .slider-wrapper {
            flex: 1;
            min-width: 320px;
            max-width: 650px;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            background: #eee;
        }

        .galeria {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .galeria img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .nav-btn:hover { background: var(--white); }
        .prev { left: 15px; }
        .next { right: 15px; }

        .dots-container {
            position: absolute;
            bottom: 15px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background: var(--white);
            transform: scale(1.2);
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        /* Sobre Nós */
        .about-section {
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 280px;
        }

        .about-image img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid var(--primary);
        }

        .about-text {
            flex: 1.5;
            min-width: 300px;
        }

        /* Menu de Ícones Dietas */
        .diet-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .diet-icons img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }

        /* Cardápio Grid */
        .cardapio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .categoria-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 5px solid var(--accent);
            transition: transform 0.3s;
        }

        .categoria-card:hover {
            transform: translateY(-5px);
        }

        .titulo-categoria {
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            font-size: 1.1rem;
        }

        .itens p {
            margin: 10px 0;
            font-size: 0.95rem;
            color: var(--text);
            display: flex;
            align-items: center;
        }

        .itens p::before {
            content: '•';
            color: var(--accent);
            margin-right: 8px;
            font-weight: bold;
        }

        .observacao {
            font-size: 0.75rem;
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 12px !important;
            display: block;
        }

        /* Contato */
        .contact-section {
            text-align: center;
            background: var(--primary);
        }

        .cta-button {
            display: inline-block;
            margin-top: 25px;
            padding: 15px 35px;
            background-color: var(--accent);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }

        .cta-button:hover {
            background-color: #d35400;
            transform: scale(1.05);
        }

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* importante para mobile */
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 280px;
}

.contact-map h2 {
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

        /* Footer */
        footer {
            background: #2c3e50;
            color: var(--white);
            padding: 50px 5% 20px;
            text-align: center;
        }

        .social-media {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }

        .social-media img {
            width: 40px;
            transition: 0.3s;
        }

        .social-media img:hover {
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.85rem;
            color: #bdc3c7;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .navbar { display: none; }
            .header-content { justify-content: center; gap: 20px; }
            .galeria img { height: 300px; }
            .hero-section, .about-content { flex-direction: column; text-align: center; }
            .about-image { order: -1; }
            .container { padding: 40px 20px; }
        }