        /* ── Classificação Indicativa ── */

        .classif-badge-wrapper {
            display: flex;
            align-items: stretch;
            gap: 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
            margin: 20px auto;
            font-family: inherit;
            width: 100%;
            max-width: 100%;
        }

        .classif-badge-square {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 90px;
            padding: 12px 10px;
            color: #fff;
            font-weight: 900;
            font-size: 13px;
            text-transform: uppercase;
            line-height: 1.2;
            text-align: center;
            letter-spacing: .5px;
            flex-shrink: 0;
        }

        .classif-badge-square .classif-age {
            font-size: 22px;
            font-weight: 900;
            line-height: 1;
            display: block;
        }

        .classif-badge-body {
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .classif-badge-body .classif-title {
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .classif-badge-wrapper.dual {
            flex-direction: column;
        }

        .classif-badge-wrapper.dual .classif-row {
            display: flex;
            align-items: stretch;
        }

        .classif-badge-wrapper.dual .classif-row+.classif-row {
            border-top: 2px solid rgba(0, 0, 0, .08);
        }

        /* Responsividade para telas pequenas */
        @media screen and (max-width: 640px) {
            .classif-badge-wrapper.dual .classif-row {
                display: grid;
                grid-template-columns: auto 1fr;
                width: 100%;
            }

            .classif-badge-square {
                min-width: 70px;
                padding: 10px 8px;
                font-size: 11px;
            }

            .classif-badge-square .classif-age {
                font-size: 18px;
            }

            .classif-badge-body {
                padding: 10px 12px;
                font-size: 12px;
            }

            .classif-badge-body .classif-title {
                font-size: 13px;
            }
        }

        @media screen and (max-width: 480px) {
            .classif-badge-wrapper.dual .classif-row {
                grid-template-columns: 1fr;
            }

            .classif-badge-square {
                flex-direction: row;
                justify-content: center;
                gap: 5px;
                min-width: auto;
                padding: 8px;
            }

            .classif-badge-square .classif-age {
                font-size: 16px;
                display: inline;
            }

            .classif-badge-square span:not(.classif-age) {
                font-size: 12px;
            }

            .classif-badge-body {
                padding: 12px;
                text-align: center;
            }
        }

        .ci-livre {
            background: #008000;
        }

        .ci-10 {
            background: #0057b8;
        }

        .ci-12 {
            background: #f0a500;
        }

        .ci-14 {
            background: #e07000;
        }

        .ci-1316 {
            background: linear-gradient(135deg, #e07000 0%, #cc0000 100%);
        }

        .ci-16 {
            background: #cc0000;
        }

        .ci-18 {
            background: #1a1a1a;
        }

        .ci-body-livre {
            background: #e8f5e9;
            color: #1b5e20;
        }

        .ci-body-10 {
            background: #e3f0ff;
            color: #003380;
        }

        .ci-body-12 {
            background: #fff8e1;
            color: #7a5200;
        }

        .ci-body-14 {
            background: #fff0e0;
            color: #6b3500;
        }

        .ci-body-1316 {
            background: #fdecea;
            color: #7f0000;
        }

        .ci-body-16 {
            background: #fdecea;
            color: #7f0000;
        }

        .ci-body-18 {
            background: #f0f0f0;
            color: #111;
        }