
        /* ===== ESTILOS PARA PÁGINA DE CATEGORIA DO BLOG ===== */
        /* Seguindo a identidade visual do site */

        /* Container principal */
        main {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            padding: 60px 20px 100px;
        }

        /* Cabeçalho da Categoria */
        .blog-category-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
            background: linear-gradient(135deg, rgba(50, 58, 204, 0.08) 0%, rgba(50, 58, 204, 0.02) 100%);
            border-radius: var(--radius);
            border: 1px solid rgba(50, 58, 204, 0.1);
        }

        .blog-category-header h1 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--brand-blue);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .category-description {
            font-family: "DM Sans", system-ui, sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--ink-700);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Introdução da Categoria */
        .category-intro {
            margin-bottom: 60px;
            padding: 30px;
            background: var(--bg-light);
            border-radius: var(--radius);
            border-left: 4px solid var(--brand-yellow);
        }

        .category-intro p {
            font-family: "DM Sans", system-ui, sans-serif;
            font-size: 1.1rem;
            color: var(--ink-700);
            line-height: 1.7;
            margin: 0;
        }

        /* Lista de Posts */
        .blog-post-list {
            margin-top: 60px;
        }

        #posts-heading {
            font-family: "Dosis", sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            color: var(--brand-blue);
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--brand-yellow);
            display: inline-block;
        }

        /* Estado Vazio (quando não há posts) */
        .empty-state {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            border: 2px dashed rgba(50, 58, 204, 0.2);
            text-align: center;
            margin: 40px 0;
        }

        .empty-state strong {
            color: var(--brand-blue);
            font-weight: 700;
        }

        /* Cards de Post */
        .blog-post-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid #EEF0FF;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .blog-post-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--brand-yellow);
            transition: width 0.3s ease;
        }

        .blog-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
            border-color: #D0D4FF;
        }

        .blog-post-card:hover::before {
            width: 8px;
        }

        .blog-post-card h3 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(1.3rem, 2.2vw, 1.6rem);
            color: var(--brand-blue);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-post-card h3 a {
            color: inherit;
            text-decoration: none;
            display: block;
            transition: color 0.2s ease;
        }

        .blog-post-card h3 a:hover {
            color: var(--brand-blue-hero);
            text-decoration: none;
        }

        .blog-post-card p {
            font-family: "DM Sans", system-ui, sans-serif;
            font-size: 1rem;
            color: var(--ink-700);
            line-height: 1.6;
            margin-bottom: 0;
            opacity: 0.9;
        }

        /* Meta info do post (se quiser adicionar no futuro) */
        .post-meta {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            font-family: "DM Sans", system-ui, sans-serif;
            font-size: 0.9rem;
            color: var(--ink-700);
            opacity: 0.7;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            main {
                padding: 40px 15px 80px;
            }

            .blog-category-header {
                padding: 30px 15px;
                margin-bottom: 40px;
            }

            .category-intro {
                padding: 20px;
            }

            .blog-post-card {
                padding: 25px 20px;
            }

            .blog-post-list {
                margin-top: 40px;
            }
        }

        @media (max-width: 480px) {
            main {
                padding: 30px 10px 60px;
            }

            .blog-category-header h1 {
                font-size: clamp(2rem, 4vw, 2.5rem);
            }

            .category-description {
                font-size: 1rem;
            }

            .blog-post-card {
                padding: 20px 15px;
            }

            #posts-heading {
                font-size: clamp(1.5rem, 2.5vw, 1.8rem);
            }
        }

        /* Estilo para quando houver posts */
        .blog-post-list:not(:has(.empty-state)) {
            display: grid;
            gap: 30px;
        }

        /* Paginação (se quiser adicionar no futuro) */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 15px;
            border-radius: var(--radius);
            font-family: "DM Sans", sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .pagination a {
            background: white;
            color: var(--brand-blue);
            border: 1px solid #D0D4FF;
        }

        .pagination a:hover {
            background: var(--brand-blue);
            color: white;
            border-color: var(--brand-blue);
        }

        .pagination .current {
            background: var(--brand-yellow);
            color: var(--brand-blue);
            border: 1px solid var(--brand-yellow);
            font-weight: 700;
        }
