
        /* ESTILOS ESPECÍFICOS PARA A PÁGINA DE MANIFESTO */
        .category-manifesto {
            font-family: "DM Sans", system-ui, sans-serif;
            color: var(--ink-700);
            line-height: 1.7;
        }

        /* HERO SECTION */
        .manifesto-hero {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hero) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .manifesto-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,0,0.05)"/></svg>');
            background-size: cover;
        }

        .manifesto-hero .container {
            position: relative;
            z-index: 2;
        }

        .manifesto-hero .wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-family: "Dosis", sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--brand-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 500;
            line-height: 1.5;
        }

        /* MANIFESTO SECTIONS */
        .manifesto-section {
            padding: 80px 0;
            position: relative;
        }

        .manifesto-section:nth-child(even) {
            background-color: var(--bg-light);
        }

        .manifesto-section .container {
            max-width: 800px;
        }

        .manifesto-section h2 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--brand-blue);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .manifesto-section h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--brand-yellow);
            border-radius: 2px;
        }

        .manifesto-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .manifesto-section ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .manifesto-section li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 1rem;
        }

        .manifesto-section li::before {
            content: "•";
            color: var(--brand-yellow);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .manifesto-section strong {
            color: var(--brand-blue);
            font-weight: 700;
        }

        /* INTRO SECTION ESPECIAL */
        .manifesto-section.intro {
            padding-top: 100px;
        }

        /* DIAGRAM 2 SECTION */
        .manifesto-section.diagram-2 h2 {
            margin-bottom: 3rem;
        }

        /* GAP SECTION */
        .manifesto-section.gap h2::after {
            background: linear-gradient(to right, var(--brand-yellow), var(--brand-blue));
        }

        /* WHAT-IT-IS SECTION */
        .manifesto-section.what-it-is ul {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-top: 1.5rem;
        }

        .manifesto-section.what-it-is li {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .manifesto-section.what-it-is li::before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--brand-blue);
            border-radius: 50%;
            left: 0;
            top: 0.5rem;
        }

        /* WHY-MATTERS SECTION */
        .manifesto-section.why-matters ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .manifesto-section.why-matters li {
            background: white;
            padding: 1rem 1rem 1rem 2rem;
            border-radius: var(--radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--brand-yellow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .manifesto-section.why-matters li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .manifesto-section.why-matters li::before {
            content: "✓";
            color: var(--brand-blue);
            font-weight: bold;
            left: 0.5rem;
        }

        /* ROLE SECTION */
        .manifesto-section.role {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hero) 100%);
            color: white;
        }

        .manifesto-section.role h2 {
            color: var(--brand-yellow);
        }

        .manifesto-section.role h2::after {
            background: var(--brand-yellow);
        }

        .manifesto-section.role p {
            color: rgba(255, 255, 255, 0.9);
        }

        .manifesto-section.role strong {
            color: var(--brand-yellow);
        }

        /* CTA SECTION */
        .manifesto-section.cta {
            text-align: center;
            padding: 100px 0;
            background: var(--brand-yellow);
        }

        .manifesto-section.cta h2 {
            color: var(--brand-blue);
            margin-bottom: 1rem;
        }

        .manifesto-section.cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .manifesto-section.cta .btn {
            background: var(--brand-blue);
            color: white;
            border: 2px solid var(--brand-blue);
            font-weight: 700;
            padding: 12px 32px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .manifesto-section.cta .btn:hover {
            background: transparent;
            color: var(--brand-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* FULL MANIFESTO SECTION */
        .manifesto-section.full-manifesto {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .manifesto-section.full-manifesto h3 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--brand-blue);
            margin: 2.5rem 0 1.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .manifesto-section.full-manifesto h3::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 70%;
            background: var(--brand-yellow);
            border-radius: 4px;
        }

        .manifesto-section.full-manifesto ul {
            margin: 1.5rem 0;
        }

        .manifesto-section.full-manifesto li {
            margin-bottom: 0.75rem;
        }


        /* MOCKUP IMAGES */
        .manifesto-section.mockup-1 .mockup-figure img,
        .manifesto-section.mockup-2 .mockup-figure img {
            max-width: 600px;
            width: 100%;
            height: auto;
        }

        .manifesto-section.mockup-2 .mockup-figure img {
            max-width: 450px;
        }

        /* RESPONSIVE ADJUSTMENTS */
        @media (max-width: 768px) {
            .manifesto-hero {
                padding: 80px 0;
            }

            .manifesto-section {
                padding: 60px 0;
            }

            .manifesto-section.cta {
                padding: 80px 0;
            }

            .manifesto-section.full-manifesto {
                padding: 80px 0;
            }

            .manifesto-section.why-matters ul {
                grid-template-columns: 1fr;
            }

            .manifesto-section.what-it-is ul {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .manifesto-hero {
                padding: 60px 0;
            }

            .manifesto-section {
                padding: 40px 0;
            }

            .manifesto-section.cta {
                padding: 60px 0;
            }

            .manifesto-section.full-manifesto {
                padding: 60px 0;
            }

            .manifesto-section p {
                font-size: 1rem;
            }
        }

        /* ESTILO PARA LISTA ESPECÍFICA COM BOLINHAS PERSONALIZADAS */
        .lista-destaque {
            margin: 1.5rem 0;
        }

        .lista-destaque li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            list-style: none;
        }

        .lista-destaque li::before {
            content: "•";
            color: #FFAA00;
            /* Cor das bolinhas */
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -0.2rem;
        }


        /* Estilos para o título principal da seção FAQ */
        #faq-heading.section-title.center {
            color: var(--brand-blue);
            /* Azul padrão do site */
            font-size: clamp(2rem, 4vw, 3rem);
            /* Tamanho responsivo */
            margin-bottom: 1rem;
            /* Espaçamento abaixo do título */
            text-align: center;
            font-family: "Dosis", sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Estilos para a descrição/lead da seção */
        .section-lead.center {
            color: var(--ink-700);
            /* Cor do texto padrão */
            font-size: clamp(1.125rem, 1.8vw, 1.375rem);
            /* Tamanho maior que o texto normal */
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            /* Centraliza e adiciona espaçamento inferior */
            text-align: center;
            font-family: "DM Sans", system-ui, sans-serif;
            font-weight: 400;
            padding: 0 20px;
        }

        /* Ajuste adicional para melhor espaçamento geral da seção FAQ */
        .faq-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        /* Ajuste de espaçamento entre os itens do FAQ (se quiser mais espaço) */
        .faq-grid {
            gap: 1.5rem;
            /* Aumenta o espaçamento entre os cards */
        }

        /* Responsividade para telas menores */
        @media (max-width: 768px) {
            #faq-heading.section-title.center {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
                margin-bottom: 0.75rem;
            }

            .section-lead.center {
                font-size: 1.125rem;
                margin-bottom: 2.5rem;
                padding: 0 15px;
            }

            .faq-section {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            #faq-heading.section-title.center {
                font-size: 1.625rem;
            }

            .section-lead.center {
                font-size: 1.063rem;
                margin-bottom: 2rem;
            }
        }
