

/* === Institutional Help Inline Styles (migrated) === */
:root {
            /* Paleta de Cores baseada na Identidade da Marca */
            --brand-50: #f0fdfa;
            --brand-100: #ccfbf1;
            --brand-200: #99f6e4;
            --brand-300: #5eead4;
            --brand-400: #2dd4bf;
            --brand-500: #14b8a6;
            --brand-600: #0d9488;
            --brand-700: #0f766e;
            --brand-800: #115e59;
            --brand-900: #134e4a;
            
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            
            --sky-50: #f0f9ff;
            --sky-100: #e0f2fe;
            --sky-200: #bae6fd;
            --sky-500: #0ea5e9;
            --sky-600: #0284c7;
            --sky-700: #0369a1;
            --sky-800: #075985;
            --sky-900: #0c4a6e;

            --purple-50: #faf5ff;
            --purple-100: #f3e8ff;
            --purple-500: #a855f7;
            --purple-600: #9333ea;
            --purple-700: #7e22ce;

            --amber-50: #fffbeb;
            --amber-100: #fef3c7;
            --amber-500: #f59e0b;
            --amber-600: #d97706;
            --amber-700: #b45309;

            --red-50: #fef2f2;
            --red-600: #e11d48;

            /* Tipografia e Estrutura */
            --font-sans: 'Plus Jakarta Sans', sans-serif;
            --font-display: 'Sora', sans-serif;
            --transition: all 0.3s ease;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        /* Resets Básicos */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--slate-800);
            background-color: var(--slate-50);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        button { border: none; background: none; font-family: inherit; cursor: pointer; }

        a:focus-visible,
        button:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--brand-500);
            outline-offset: 2px;
            border-radius: 0.5rem;
        }

        /* Animações e Background */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes blob {
            0% { transform: translate(0px, 0px) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        .animated-bg {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            overflow: hidden; pointer-events: none; z-index: -1;
        }

        .blob {
            position: absolute; border-radius: 50%; filter: blur(128px); mix-blend-mode: multiply;
            animation: blob 7s infinite; opacity: 0.4;
        }

        .blob-1 { top: 0; left: 25%; width: 24rem; height: 24rem; background: var(--brand-300); }
        .blob-2 { top: 0; right: 25%; width: 24rem; height: 24rem; background: var(--sky-200); animation-delay: 2s; }
        .blob-3 { bottom: -8rem; left: 33%; width: 24rem; height: 24rem; background: var(--brand-400); animation-delay: 4s; opacity: 0.3; }

        /* Componentes Comuns */
        .container {
            width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10;
        }

        .progress-container {
            position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: var(--slate-200); z-index: 100;
        }

        .progress-bar {
            height: 100%; background: var(--brand-600); width: 100%; transform: scaleX(0);
            transform-origin: 0% 50%; transition: transform 0.1s ease-out;
        }

        /* Header */
        .header {
            display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0;
            animation: fadeInUp 0.5s ease-out forwards;
        }

        .logo { display: flex; align-items: center; gap: 0.25rem; }
        .logo-icon {
            width: 5rem; height: 5rem; border-radius: var(--radius-md);
            background: transparent;
            display: flex; align-items: center; justify-content: center; color: white;
            box-shadow: none; transition: var(--transition);
        }
        .logo:hover .logo-icon { transform: scale(1.05); }
        .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--slate-900); }
        .logo-text span { font-weight: 400; color: var(--slate-500); }

        .btn-header {
            display: none; padding: 0.6rem 1.25rem; background: var(--slate-900); color: white;
            font-size: 0.875rem; font-weight: 600; border-radius: 9999px; transition: var(--transition);
            align-items: center; gap: 0.5rem; box-shadow: var(--shadow-md);
        }
        @media(min-width: 640px) { .btn-header { display: flex; } }
        .btn-header:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

        /* Hero Section */
        .hero {
            margin-top: 3rem; text-align: center; max-width: 56rem; margin-inline: auto;
            animation: fadeInUp 0.5s ease-out 0.1s forwards; opacity: 0;
        }
        @media(min-width: 768px) { .hero { margin-top: 5rem; } }

        .badge {
            display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem;
            background: white; border: 1px solid var(--slate-200); border-radius: 9999px;
            color: var(--brand-700); font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
        }

        .hero h1 {
            font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 1.5rem;
        }
        .hero h1 span {
            background-image: linear-gradient(to right, var(--brand-600), var(--sky-600));
            -webkit-background-clip: text; color: transparent;
        }
        .hero p { font-size: clamp(1.125rem, 2vw, 1.25rem); color: var(--slate-600); margin-bottom: 2.5rem; }

        /* Filter Menu (Sticky) */
        .filter-nav {
            position: sticky; top: 0; z-index: 40; margin-top: 3rem; padding: 1rem 0;
            background: rgba(248, 250, 252, 0.9); backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        }
        .filter-scroll {
            display: flex; align-items: center; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem;
            -ms-overflow-style: none; scrollbar-width: none; /* Hide scrollbar */
        }
        .filter-scroll::-webkit-scrollbar { display: none; }
        
        .topic-btn {
            white-space: nowrap; padding: 0.6rem 1.25rem; border-radius: 9999px; font-size: 0.875rem;
            font-weight: 500; transition: var(--transition); border: 1px solid var(--slate-200);
            background: white; color: var(--slate-600);
        }
        .topic-btn:hover { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-300); }
        .topic-btn.active { background: var(--slate-900); color: white; border-color: transparent; box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2); }

        /* Content Area */
        .content-area { margin-top: 2rem; padding-bottom: 5rem; min-height: 50vh; display: flex; flex-direction: column; gap: 3rem; }

        /* Topic Cards */
        .topic-card {
            background: white; border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 2.5rem);
            box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .topic-card.hidden-animate {
            opacity: 0; transform: scale(0.98); position: absolute; visibility: hidden; pointer-events: none;
        }

        .card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
        .icon-box {
            width: 3rem; height: 3rem; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
        }
        .icon-box.brand { background: var(--brand-50); color: var(--brand-600); }
        .icon-box.purple { background: var(--purple-50); color: var(--purple-600); }
        .icon-box.white { background: rgba(255,255,255,0.1); color: var(--brand-300); border: 1px solid rgba(255,255,255,0.05); }
        .icon-box.sky { background: var(--sky-50); color: var(--sky-600); }
        .icon-box.slate { background: var(--slate-100); color: var(--slate-600); }
        
        .card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--slate-900); }
        .card-desc { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 2rem; }

        /* Grids */
        .grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
        @media(min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

        /* Inner Articles/Boxes */
        .inner-box {
            background: var(--slate-50); padding: 2rem; border-radius: var(--radius-lg);
            border: 1px solid var(--slate-200); transition: var(--transition);
        }
        .inner-box:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-4px); }
        
        .inner-box h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; color: var(--slate-900); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .inner-box h3 svg { color: var(--slate-400); width: 1.25rem; height: 1.25rem; }
        .inner-box:hover h3 { color: var(--brand-700); }
        .inner-box:hover h3 svg { color: var(--brand-500); }

        /* Lists */
        .step-list { display: flex; flex-direction: column; gap: 1.5rem; }
        .step-item { display: flex; align-items: flex-start; gap: 1rem; }
        .step-num {
            flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; background: white;
            border: 1px solid var(--slate-200); color: var(--slate-600); display: flex; align-items: center;
            justify-content: center; font-weight: 700; font-size: 0.875rem; box-shadow: var(--shadow-sm); transition: var(--transition);
        }
        .step-text { color: var(--slate-600); font-size: 0.875rem; line-height: 1.5; padding-top: 0.25rem; }
        .step-text strong { color: var(--slate-800); }
        .inner-box:hover .step-num { border-color: var(--brand-200); color: var(--brand-600); }

        /* Feature Items (Icons instead of numbers) */
        .feature-icon {
            width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem; transition: var(--transition); box-shadow: var(--shadow-sm);
        }
        .feature-icon.indigo { background: var(--purple-50); color: var(--purple-600); }
        .feature-icon.emerald { background: var(--brand-50); color: var(--brand-600); }
        .feature-icon.rose { background: var(--red-50); color: var(--red-600); }
        .feature-icon.amber { background: var(--amber-50); color: var(--amber-600); }
        .inner-box:hover .feature-icon { color: white; }
        .inner-box:hover .feature-icon.indigo { background: var(--purple-600); }
        .inner-box:hover .feature-icon.emerald { background: var(--brand-600); }
        .inner-box:hover .feature-icon.rose { background: var(--red-600); }
        .inner-box:hover .feature-icon.amber { background: var(--amber-500); }

        /* Alert Boxes */
        .alert-box {
            border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; box-shadow: var(--shadow-sm);
        }
        .alert-box.sky { background: var(--sky-50); border: 1px solid var(--sky-200); }
        .alert-box.sky .icon-wrapper { background: white; padding: 0.5rem; border-radius: 50%; color: var(--sky-600); box-shadow: var(--shadow-sm); }
        .alert-box.sky strong { display: block; color: var(--sky-900); font-weight: 700; margin-bottom: 0.25rem; }
        .alert-box.sky p { font-size: 0.875rem; color: var(--sky-800); }

        /* Dark Card (AI Section) */
        .dark-card { background: var(--slate-900); border-color: var(--slate-800); position: relative; overflow: hidden; }
        .dark-card .card-title, .dark-card .card-desc { color: white; }
        .dark-card .card-desc { color: var(--slate-300); }
        .dark-glow { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: var(--brand-500); opacity: 0.2; filter: blur(100px); border-radius: 50%; pointer-events: none; }
        
        .dark-inner-box {
            background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(51, 65, 85, 0.5); border-radius: var(--radius-lg);
            padding: 2rem; backdrop-filter: blur(12px); transition: var(--transition);
        }
        .dark-inner-box:hover { background: var(--slate-800); box-shadow: 0 0 25px rgba(59, 130, 246, 0.15); }
        .dark-inner-box h3 { color: white; font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
        .dark-inner-box .icon-wrap { background: rgba(59, 130, 246, 0.2); padding: 0.75rem; border-radius: var(--radius-md); color: var(--sky-500); transition: var(--transition); }
        .dark-inner-box:hover .icon-wrap { background: var(--sky-500); color: white; transform: scale(1.1); }
        .dark-inner-box p { color: var(--slate-400); font-size: 0.875rem; margin-bottom: 1.5rem; }
        
        .dark-tip { background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255,255,255,0.05); padding: 1rem; border-radius: var(--radius-md); transition: var(--transition); }
        .dark-inner-box:hover .dark-tip { border-color: rgba(59, 130, 246, 0.2); }
        .dark-tip span.title { display: flex; align-items: center; gap: 0.5rem; color: var(--sky-500); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }
        .dark-tip span.text { color: var(--slate-300); font-size: 0.875rem; }
        .dark-tip i { color: white; font-style: normal; }

        .dark-alert { background: rgba(15, 118, 110, 0.2); border: 1px solid rgba(20, 184, 166, 0.3); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; }
        .dark-alert svg { color: var(--brand-300); flex-shrink: 0; margin-top: 0.25rem; }
        .dark-alert strong { color: var(--brand-200); display: block; font-size: 1.125rem; margin-bottom: 0.5rem; }
        .dark-alert p { color: var(--slate-300); font-size: 0.875rem; }

        /* List simple with icons */
        .icon-list { display: flex; flex-direction: column; gap: 1.25rem; }
        .icon-list li { display: flex; align-items: flex-start; gap: 1rem; background: var(--slate-50); padding: 1rem; border-radius: var(--radius-md); border: 1px solid transparent; transition: var(--transition); }
        .inner-box:hover .icon-list li { background: white; border-color: var(--slate-100); }
        .icon-list .icon-bg { background: white; padding: 0.25rem; border-radius: 50%; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; }
        .icon-list strong { display: block; font-size: 0.875rem; color: var(--slate-800); margin-bottom: 0.25rem; }
        .icon-list p { font-size: 0.875rem; color: var(--slate-600); }

        /* Small Cards in grids */
        .small-card { background: var(--slate-50); padding: 1.25rem; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); transition: var(--transition); }
        .small-card:hover { background: white; border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .small-card .card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
        .small-card strong { font-size: 0.875rem; color: var(--slate-900); }
        .small-card p { font-size: 0.875rem; color: var(--slate-600); }

        /* FAQ Accordion */
        .faq-list { display: flex; flex-direction: column; gap: 1rem; }
        .faq-item {
            background: white; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm); transition: var(--transition);
        }
        .faq-item:hover { border-color: var(--brand-300); box-shadow: var(--shadow-md); }
        
        .faq-item summary {
            display: flex; justify-content: space-between; align-items: center; padding: 1.5rem;
            cursor: pointer; font-weight: 600; color: var(--slate-800); transition: var(--transition);
        }
        .faq-item:hover summary { color: var(--brand-700); }
        .faq-item summary::-webkit-details-marker { display: none; }
        
        .faq-icon {
            background: var(--slate-50); padding: 0.375rem; border-radius: 50%; transition: transform 0.3s ease, background 0.3s ease;
        }
        .faq-item:hover .faq-icon { background: var(--brand-50); color: var(--brand-500); }
        .faq-item[open] .faq-icon { transform: rotate(180deg); }
        
        .faq-content {
            padding: 0 1.5rem 1.5rem 1.5rem; color: var(--slate-600); font-size: 0.875rem;
            border-top: 1px solid var(--slate-100); margin-top: 0.25rem; padding-top: 1rem;
            background: rgba(248, 250, 252, 0.5); border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg);
        }

        /* Footer */
        .footer {
            margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--slate-200);
            display: flex; flex-direction: column; justify-content: space-between; align-items: center;
            font-size: 0.875rem; color: var(--slate-500); gap: 1rem;
        }
        @media(min-width: 768px) { .footer { flex-direction: row; } }
        .footer span { font-weight: 600; color: var(--slate-700); }
