
        /* ===== ESTILOS ESPECÍFICOS PARA A PÁGINA "WHY YELLOW TOKENS" ===== */

        /* Estilos gerais da página */
        main {
            max-width: var(--max);
            margin: 0 auto;
            padding: 40px 20px;
            font-family: "DM Sans", system-ui, sans-serif;
            color: var(--ink-700);
            line-height: 1.7;
        }

        /* Hero/Header da página */
        main>header {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 2px solid rgba(50, 58, 204, 0.1);
        }

        main>header h1 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--brand-blue);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .subtitle {
            font-family: "DM Sans", system-ui, sans-serif;
            font-size: clamp(1.125rem, 2vw, 1.4rem);
            color: var(--ink-900);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .subtitle a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid var(--brand-yellow);
            transition: all 0.2s ease;
        }

        .subtitle a:hover {
            color: var(--brand-blue-hero);
            border-bottom-color: var(--brand-blue);
        }

        /* Seções de conteúdo */
        section {
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        section:last-of-type {
            border-bottom: none;
        }

        section h2 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--brand-blue);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        section h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--brand-yellow);
            border-radius: 2px;
        }

        section p {
            font-size: clamp(1rem, 1.8vw, 1.125rem);
            margin-bottom: 20px;
            color: var(--ink-700);
            line-height: 1.7;
        }

        section strong {
            color: var(--brand-blue);
            font-weight: 700;
        }

        /* Lista de design principles */
        #design-principles ul {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        #design-principles li {
            background: var(--bg-light);
            border-left: 4px solid var(--brand-yellow);
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        #design-principles li:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow);
        }

        #design-principles strong {
            display: block;
            font-family: "Dosis", sans-serif;
            font-size: 1.2rem;
            color: var(--brand-blue);
            margin-bottom: 8px;
        }

        #design-principles br {
            display: none;
        }

        /* Links dentro do conteúdo */
        section a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
            padding-bottom: 2px;
        }

        section a:hover {
            color: var(--brand-blue-hero);
            border-bottom-color: var(--brand-yellow);
        }

        /* Seção de next steps */
        #next-steps {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 40px;
            margin-top: 60px;
            border: 1px solid rgba(50, 58, 204, 0.1);
        }

        #next-steps p {
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .pricing-reassurance {
            background: white;
            border: 2px dashed var(--brand-yellow);
            border-radius: var(--radius);
            padding: 20px;
            margin-top: 30px;
            font-style: italic;
            color: var(--ink-900);
        }

        /* Secondary CTA */
        .secondary-cta {
            background: linear-gradient(135deg, var(--brand-blue) 0%, #4048e0 100%);
            color: white;
            padding: 60px 20px;
            border-radius: var(--radius);
            text-align: center;
            margin-top: 60px;
        }

        .secondary-cta .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .secondary-cta p {
            font-size: clamp(1.125rem, 2vw, 1.4rem);
            margin-bottom: 0;
            color: white;
            line-height: 1.6;
        }

        .secondary-cta .text-link {
            color: var(--brand-yellow);
            text-decoration: underline;
            font-weight: 700;
            font-family: "DM Sans", system-ui, sans-serif;
            background: none;
            border: none;
            padding: 0;
            display: inline;
            border-radius: 0;
            font-size: inherit;
            transition: all 0.2s ease;
        }

        .secondary-cta .text-link:hover {
            color: white;
            text-decoration-color: white;
            background: none;
            transform: none;
            box-shadow: none;
        }

        .secondary-cta .text-link:focus {
            outline: 2px solid var(--brand-yellow);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            main {
                padding: 30px 15px;
            }

            main>header {
                margin-bottom: 40px;
                padding-bottom: 30px;
            }

            section {
                margin-bottom: 40px;
                padding-bottom: 30px;
            }

            #next-steps {
                padding: 30px 20px;
            }

            #design-principles li {
                padding: 16px;
            }

            .secondary-cta {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            main {
                padding: 20px 10px;
            }

            main>header h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1.125rem;
            }

            section h2 {
                font-size: 1.6rem;
            }

            #next-steps {
                padding: 20px 15px;
            }

            #design-principles li {
                padding: 12px;
            }

            .secondary-cta a {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .secondary-cta p {
                font-size: 1.125rem;
            }
        }

        /* Animações suaves para scroll */
        section {
            scroll-margin-top: 100px;
        }

        /* Melhorias de acessibilidade */
        section a:focus {
            outline: 3px solid var(--brand-yellow);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .secondary-cta a:focus {
            outline: 3px solid white;
            outline-offset: 2px;
        }

        /* Destaque para o primeiro parágrafo da intro */
        #intro p:first-of-type {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--ink-900);
            border-left: 4px solid var(--brand-yellow);
            padding-left: 20px;
            margin-left: -20px;
        }

        /* Classe reutilizável para links de texto */
        .text-link {
            color: var(--brand-yellow);
            text-decoration: underline;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .text-link:hover {
            color: var(--brand-yellow);
            text-decoration-thickness: 2px;
        }
   