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


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

        * {
            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;
        }

        /* ========== PARTICLES BACKGROUND — IGUAL AO INDEX ========== */
        #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;
            min-height: 100vh;
        }

        /* ========== NAVEGAÇÃO — PADRÃO 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(--print-white) !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-size: 1.3rem;
            font-weight: 800 !important;
            letter-spacing: 0.16em !important;
            text-transform: uppercase !important;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.22);
            line-height: 1.1;
        }

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

        .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) !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-weight: 500 !important;
            letter-spacing: 0.17em !important;
            text-transform: uppercase !important;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

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

        @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;
            }
        }

        /* ========== PADRÃO DE SEÇÕES DO INDEX ========== */
        section {
            padding: 80px 20px;
        }

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

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

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin: 0 0 1rem;
            line-height: 1.2;
            color: var(--print-white) !important;
            text-shadow: 0 0 18px rgba(139, 92, 246, 0.16);
        }

        .section-title em {
            font-style: italic;
            background: var(--print-gradient-text) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
            -webkit-text-fill-color: transparent !important;
        }

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

        .btn {
            display: inline-block;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

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

        .btn-primary:hover {
            background: #7c3aed !important;
            transform: scale(1.05);
        }

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

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

        /* ========== HERO FAQ — FIEL AO INDEX ========== */
        .faq-hero {
            min-height: 78vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 130px 20px 80px;
        }

        .eyebrow {
            color: var(--print-muted) !important;
            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 !important;
            font-family: 'Inter', 'DM Sans', sans-serif !important;
            font-size: 0.72rem !important;
            font-weight: 600;
            margin-bottom: 10px;
            display: inline-block;
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: clamp(4rem, 13vw, 8rem);
            margin: 0;
            line-height: 1;
            color: var(--print-white) !important;
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
            -webkit-text-fill-color: var(--print-white) !important;
            text-shadow: 0 0 34px rgba(139, 92, 246, 0.22), 0 4px 28px rgba(0, 0, 0, 0.60);
        }

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

        .hero-desc {
            max-width: 640px;
            font-size: 1.1rem;
            color: rgba(169, 157, 184, 0.96) !important;
            margin-top: 20px;
            font-family: var(--font-serif);
            font-style: italic;
            line-height: 1.6;
        }

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

        /* ========== FAQ — CORES/CARDS ALINHADOS AO INDEX ========== */
        #faq {
            position: relative;
            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, #07030d 0%, #0b0612 100%);
        }

        .faq-container {
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-category {
            margin-top: 2rem;
        }

        .category-title {
            text-align: center;
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 0.78rem;
            line-height: 1.2;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--print-amber);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            text-shadow: 0 0 18px rgba(246, 163, 26, 0.24);
        }

        .category-title::before,
        .category-title::after {
            content: "";
            height: 1px;
            flex-grow: 1;
            background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.32));
        }

        .category-title::after {
            background: linear-gradient(to left, transparent, rgba(139, 92, 246, 0.32));
        }

        .faq-item {
            background:
                radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 46%),
                linear-gradient(180deg, #17101f 0%, #0b0612 100%);
            border: 1px solid rgba(139, 92, 246, 0.22);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow:
                0 22px 45px rgba(0, 0, 0, 0.34),
                0 0 0 1px rgba(255, 255, 255, 0.025),
                0 0 28px rgba(139, 92, 246, 0.10);
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .faq-item:hover,
        .faq-item.active {
            border-color: rgba(246, 163, 26, 0.62);
            transform: translateY(-2px);
            box-shadow:
                0 25px 52px rgba(0, 0, 0, 0.42),
                0 0 32px rgba(246, 163, 26, 0.12),
                0 0 28px rgba(139, 92, 246, 0.12);
        }

        .faq-question {
            width: 100%;
            padding: 1.45rem 1.65rem;
            background: transparent;
            border: none;
            color: var(--print-white);
            text-align: left;
            font-family: 'Inter', 'DM Sans', sans-serif;
            font-size: 1rem;
            line-height: 1.35;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            letter-spacing: -0.01em;
        }

        .faq-icon {
            min-width: 34px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--print-amber);
            border: 1px solid rgba(246, 163, 26, 0.55);
            background: rgba(246, 163, 26, 0.05);
            font-size: 1.35rem;
            line-height: 1;
            transition: transform 0.3s ease, background 0.3s ease;
            box-shadow: 0 0 18px rgba(246, 163, 26, 0.12);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: rgba(246, 163, 26, 0.12);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background: rgba(255, 255, 255, 0.025);
        }

        .faq-answer-inner {
            padding: 0 1.65rem 1.55rem;
            color: var(--print-muted);
            font-size: 1rem;
            line-height: 1.72;
        }

        .faq-answer-inner strong {
            color: var(--print-amber);
        }

        /* ========== CTA ========== */
        .faq-cta {
            background: #0f0915;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            text-align: center;
        }

        .cta-card {
            max-width: 860px;
            margin: 0 auto;
            background: #1a1221;
            border: 1px solid rgba(245, 158, 11, 0.30);
            border-radius: 18px;
            padding: clamp(2rem, 5vw, 3.5rem);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 48px rgba(153, 82, 224, 0.12);
        }

        .faq-cta h2 {
            font-family: var(--font-serif);
            font-size: clamp(2.2rem, 6vw, 3.4rem);
            font-weight: 400;
            color: var(--print-white);
            margin-bottom: 1rem;
        }

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

        .faq-cta p {
            color: var(--print-muted);
            margin-bottom: 2.2rem;
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.5;
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }

        /* ========== FOOTER — PADRÃO INDEX ========== */
        footer {
            background: var(--deep);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--print-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(--print-white) !important;
            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(--print-muted) !important;
        }

        .footer-copy {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: var(--print-muted) !important;
        }

        .footer-heart {
            font-family: var(--font-serif);
            font-style: italic;
            color: var(--print-amber);
            margin-bottom: 1rem;
        }

        .footer-legal {
            font-size: 0.75rem;
            color: var(--print-muted-2);
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 20px;
            }

            .faq-hero {
                min-height: 72vh;
                padding-top: 115px;
            }

            .hero-title {
                font-size: clamp(3.6rem, 17vw, 5.2rem);
            }

            .eyebrow {
                letter-spacing: 0.24em !important;
                font-size: 0.65rem !important;
            }

            .faq-question {
                padding: 1.25rem;
                font-size: 0.95rem;
            }

            .faq-answer-inner {
                padding: 0 1.25rem 1.35rem;
                font-size: 0.95rem;
            }
        }
