/* =========================================================
   CSS separado de cardapio.html
   Arquivo gerado a partir do HTML original.
   ========================================================= */


/* ===== Bloco <style> 1 extraído do HTML ===== */
:root {
            --bg-dark: #0a050f;
            --deep: #1a0f25;
            --card: #15101d;
            --card-2: #1a1424;
            --text-white: #f7f3ff;
            --muted: #a99db8;
            --muted-2: #8f849d;
            --accent-purple: #8b5cf6;
            --accent-purple-2: #7c3aed;
            --amber: #f6a31a;
            --gold: #f4bf57;
            --border: rgba(139, 92, 246, 0.24);
            --print-gradient-text: linear-gradient(90deg, #e8a7bc 0%, #f4bf57 48%, #c58ade 100%);
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'DM Sans', sans-serif;
        }

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

        html, body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: var(--font-sans);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body { min-height: 100vh; }

        a { color: inherit; }

        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-color: var(--bg-dark);
        }

        .content-wrapper { position: relative; z-index: 1; }

        /* ========== NAV IGUAL AO INDEX ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 5, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-white);
        }

        .wolf-mark { width: 52px; height: 52px; }
        .wolf-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

        .brand-name {
            color: var(--text-white);
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.22);
        }

        .brand-sub {
            font-size: 0.7rem;
            color: var(--muted);
            letter-spacing: 0.19em;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-white);
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: rgba(169, 157, 184, 0.92);
            text-decoration: none;
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.17em;
            text-transform: uppercase;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--amber);
            text-shadow: 0 0 18px rgba(246, 163, 26, 0.35);
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(232, 167, 188, 0), #f4bf57, rgba(197, 138, 222, 0));
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 115px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.20), transparent 36%),
                radial-gradient(circle at 12% 80%, rgba(245, 158, 11, 0.10), transparent 28%),
                radial-gradient(circle at 86% 18%, rgba(197, 138, 222, 0.12), transparent 32%),
                linear-gradient(180deg, rgba(10, 5, 15, 0.10), rgba(10, 5, 15, 0.74));
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            padding: 9px 18px;
            text-transform: uppercase;
            letter-spacing: 0.42em;
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: clamp(4rem, 15vw, 8rem);
            margin: 0;
            line-height: 1;
            color: var(--text-white);
            text-shadow: 0 0 34px rgba(139, 92, 246, 0.22), 0 4px 28px rgba(0, 0, 0, 0.60);
        }

        .hero-title em {
            display: block;
            margin-top: -10px;
            font-style: italic;
            background: var(--print-gradient-text);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }

        .hero-desc {
            max-width: 720px;
            font-size: clamp(1rem, 2.4vw, 1.25rem);
            line-height: 1.75;
            color: rgba(169, 157, 184, 0.96);
            margin: 24px auto 0;
            font-family: var(--font-serif);
            font-style: italic;
        }

        .hero-line,
        .section-rule {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, rgba(232, 167, 188, 0), #f4bf57, rgba(197, 138, 222, 0));
            margin: 2rem auto;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            color: var(--text-white);
            background: linear-gradient(90deg, #9b4af4 0%, #7f2bd8 100%);
            box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
        }

        .btn-primary:hover { transform: scale(1.05); }

        .btn-secondary {
            color: var(--amber);
            border: 2px solid rgba(246, 163, 26, 0.75);
            background: rgba(246, 163, 26, 0.02);
        }

        .btn-secondary:hover {
            background: rgba(246, 163, 26, 0.12);
            color: #ffc15a;
            box-shadow: 0 0 22px rgba(246, 163, 26, 0.18);
            transform: translateY(-2px);
        }

        /* ========== CARDÁPIO ========== */
        .cardapio-section {
            position: relative;
            padding: 90px 20px;
            background:
                radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.10) 0%, rgba(249, 115, 22, 0.04) 18%, transparent 38%),
                radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 20%, transparent 42%),
                linear-gradient(180deg, rgba(7, 3, 13, 0.92) 0%, rgba(11, 6, 18, 0.96) 100%);
        }

        .cardapio-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cardapio-header {
            text-align: center;
            margin-bottom: 4.5rem;
        }

        .section-label {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--amber);
            display: block;
            margin-bottom: 1rem;
        }

        .cardapio-header h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--text-white);
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.16);
        }

        .cardapio-header h1 em,
        .cardapio-content h2 em {
            font-style: italic;
            background: var(--print-gradient-text);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        .cardapio-intro {
            max-width: 680px;
            margin: 0 auto;
            color: var(--muted);
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.22rem;
            line-height: 1.6;
        }

        .cardapio-main {
            display: grid;
            grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
            gap: clamp(2rem, 5vw, 4rem);
            align-items: start;
            margin-bottom: 5.5rem;
        }

        .cardapio-main.reverse {
            grid-template-columns: minmax(420px, 1.05fr) minmax(340px, 0.95fr);
        }

        .cardapio-main.reverse .cardapio-image { order: 2; }
        .cardapio-main.reverse .cardapio-content { order: 1; }

        .cardapio-image {
            position: sticky;
            top: 105px;
            overflow: hidden;
            border-radius: 24px;
            background: #100916;
            border: 1px solid rgba(139, 92, 246, 0.25);
            box-shadow:
                0 24px 70px rgba(0, 0, 0, 0.45),
                0 0 48px rgba(139, 92, 246, 0.16);
            min-height: 520px;
        }

        .cardapio-image::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(180deg, rgba(5, 2, 9, 0.03) 0%, rgba(5, 2, 9, 0.00) 48%, rgba(5, 2, 9, 0.78) 100%),
                linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, transparent 38%, transparent 62%, rgba(0, 0, 0, 0.24) 100%);
        }

        .cardapio-image img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            display: block;
            object-fit: cover;
            object-position: center;
            transition: transform 0.9s ease;
            filter: contrast(1.04) saturate(1.04);
        }

        .cardapio-image:hover img { transform: scale(1.055); }

        .cardapio-content {
            background:
                radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.13) 0%, transparent 46%),
                linear-gradient(180deg, rgba(23, 16, 31, 0.94) 0%, rgba(11, 6, 18, 0.94) 100%);
            border: 1px solid rgba(139, 92, 246, 0.24);
            border-radius: 24px;
            padding: clamp(24px, 4vw, 34px);
            box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35), 0 0 28px rgba(139, 92, 246, 0.10);
        }

        .cardapio-content h2 {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-white);
            line-height: 1.05;
            margin-bottom: 0.4rem;
            font-weight: 700;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.16);
        }

        .cardapio-content .subtitle {
            color: var(--amber);
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-style: italic;
            letter-spacing: 0.05em;
            margin-bottom: 1.7rem;
        }

        .cardapio-content p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.96rem;
        }

        .drinks-section { margin-top: 2.2rem; }

        .drinks-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.35rem;
            color: var(--gold);
            letter-spacing: 0.12em;
            margin-bottom: 1rem;
            text-transform: uppercase;
            border-left: 3px solid var(--gold);
            padding-left: 1rem;
            text-shadow: 0 0 18px rgba(246, 163, 26, 0.18);
        }

        .drinks-section > p {
            color: var(--gold) !important;
            font-size: 0.8rem !important;
            margin: -0.3rem 0 1rem 1.25rem !important;
            text-transform: uppercase !important;
            letter-spacing: 0.12em !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-weight: 700 !important;
        }

        .drink-item {
            position: relative;
            margin-bottom: 1rem;
            padding: 1rem 1rem 1.05rem;
            border: 1px solid rgba(255, 255, 255, 0.055);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.028);
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .drink-item:hover {
            transform: translateX(8px);
            border-color: rgba(246, 163, 26, 0.35);
            background: rgba(246, 163, 26, 0.035);
        }

        .drink-name {
            font-family: var(--font-serif);
            font-size: 1.16rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.35rem;
            letter-spacing: 0.01em;
        }

        .drink-description {
            color: rgba(169, 157, 184, 0.94);
            font-size: 0.93rem;
            line-height: 1.65;
        }

        .cardapio-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-orcamento {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.95rem 1.5rem;
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            border-radius: 999px;
            transition: all 0.3s ease;
        }

        .btn-orcamento::before { content: "💬"; }

        .btn-orcamento-whatsapp,
        .btn-orcamento-site {
            color: var(--text-white);
            background: linear-gradient(90deg, #9b4af4 0%, #7f2bd8 100%);
            box-shadow: 0 0 28px rgba(139, 92, 246, 0.30);
        }

        .btn-orcamento:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 34px rgba(139, 92, 246, 0.45);
        }

        .cardapio-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(246, 163, 26, 0.78), rgba(139, 92, 246, 0.72), transparent);
            margin: 0 0 5.5rem;
            opacity: 0.8;
        }

        .final-cta {
            padding: 90px 20px;
            background: rgba(10, 5, 15, 0.62);
        }

        .final-cta-box {
            max-width: 1120px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 30px;
            border: 1px solid rgba(139, 92, 246, 0.25);
            background:
                radial-gradient(circle at 0% 0%, rgba(246, 163, 26, 0.12), transparent 34%),
                linear-gradient(135deg, rgba(21, 16, 29, 0.96), rgba(26, 15, 37, 0.86));
            box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
            padding: clamp(34px, 6vw, 64px);
            text-align: center;
        }

        .final-cta h2 {
            font-family: var(--font-serif);
            font-size: clamp(2.1rem, 5vw, 4rem);
            line-height: 1.05;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta h2 em {
            font-style: italic;
            background: var(--print-gradient-text);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        .final-cta p {
            max-width: 720px;
            margin: 0 auto 2rem;
            color: var(--muted);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        footer {
            background: rgba(26, 15, 37, 0.92);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--muted);
        }

        .footer-wolf { width: 82px; height: 82px; margin: 0 auto 1rem; }
        .footer-wolf img { width: 100%; height: 100%; object-fit: contain; display: block; }

        .footer-brand {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--text-white);
            margin-bottom: 0.25rem;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.16);
        }

        .footer-sub { font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--muted); }
        .footer-copy { font-size: 0.9rem; margin-bottom: 1rem; color: var(--muted); }
        .footer-heart { margin-top: 1rem; font-style: italic; font-family: var(--font-serif); color: var(--gold); font-size: 1rem; }
        .footer-legal { font-size: 0.75rem; color: var(--muted-2); margin-top: 1rem; }

        /* Animações de Revelação */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active { opacity: 1; transform: translateY(0); }

        @media (max-width: 960px) {
            .cardapio-main,
            .cardapio-main.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 4rem;
            }

            .cardapio-main.reverse .cardapio-image,
            .cardapio-main.reverse .cardapio-content { order: initial; }

            .cardapio-image {
                position: relative;
                top: auto;
                min-height: 380px;
            }

            .cardapio-image img { min-height: 380px; }
        }

        @media (max-width: 768px) {
            .nav-toggle { display: flex; }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(10, 5, 15, 0.98);
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active { display: flex; }
            .nav-links a.active::after { display: none; }
            .nav-inner { padding: 1rem 1.25rem; }
            .hero { padding-top: 115px; }
            .btn { width: 100%; max-width: 320px; }
            .eyebrow { letter-spacing: 0.24em; font-size: 0.66rem; }
            .cardapio-section { padding: 70px 20px; }
            .cardapio-content { padding: 24px 18px; }
            .cardapio-buttons { flex-direction: column; }
            .btn-orcamento { width: 100%; }
            .drink-item:hover { transform: none; }
        }

        @media (max-width: 520px) {
            .brand-name { font-size: 1rem; }
            .brand-sub { font-size: 0.6rem; }
            .wolf-mark { width: 42px; height: 42px; }
            .cardapio-image,
            .cardapio-image img { min-height: 300px; }
        }


/* ===== Estilos inline extraídos do HTML ===== */

.cardapio-inline-1 {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
