
/* catalogo-inline */
html { scroll-padding-top: 0; }
        #mobileMenu {
            transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }
        #mobileMenu.active {
            max-height: 600px;
            opacity: 1;
        }
        .scrollbar-hide::-webkit-scrollbar { display: none; }
        .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
        
        @keyframes fadeIn { 
            from { opacity: 0; transform: translateY(10px); } 
            to { opacity: 1; transform: translateY(0); } 
        }

        .animate-fade-in {
            animation: fadeIn 0.4s ease-out forwards;
        }

        .course-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.95) 5%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
        }
        
        .nav-scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }
        .dark .nav-scrolled {
            background: rgba(5, 5, 5, 0.9);
            border-bottom: 1px solid #1a1a1a;
        }

        .course-block-header {
            transition: background-color 0.2s, color 0.2s;
            padding: 0.5rem 0.75rem;
            font-size: 0.8125rem;
            font-weight: 700;
        }
        .course-block-panel .flex.items-center {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
        .course-block-panel .text-sm {
            font-size: 0.75rem;
        }
        .course-block-item.is-open .course-block-header {
            background: rgba(59, 130, 246, 0.12);
            color: #2563eb;
        }
        .dark .course-block-item.is-open .course-block-header {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
        }
        .course-block-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out;
        }
        .course-block-item.is-open .course-block-panel {
            max-height: min(70vh, 4800px);
            overflow-y: auto;
        }

        /* Guard: evita CSS de 404 (Firebase) injetado via fetch esmagar o layout */
        html body.pp-catalog-page {
            max-width: none !important;
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        /* Catálogo: navbar do site visível (PP Questões / Notícias / Cursos / Aprovados) */
        body.pp-catalog-page #courseThemeFloat {
            display: none;
        }

        /* Grade de cursos: largura mínima legível em qualquer viewport */
        #courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
            gap: 1.5rem;
            width: 100%;
            align-items: stretch;
        }
        #courses-grid > .group {
            min-width: 0;
            width: 100%;
            height: 100%;
        }

        /* Filtros do catálogo — chips pretos/dourados */
        .course-tabs-bar {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }
        #tabs-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.35rem;
            border-radius: 9999px;
            background: #fff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 20px -8px rgb(0 0 0 / 0.12);
        }
        .dark #tabs-container {
            background: #0a0a0a;
            border-color: #262626;
        }
        .course-tab {
            border: 0 !important;
            border-radius: 9999px;
            padding: 0.65rem 1.1rem !important;
            font-size: 0.6875rem !important;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #9ca3af;
            background: transparent;
            white-space: nowrap;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color .2s, color .2s, box-shadow .2s;
        }
        .course-tab:hover {
            color: #EAB308;
            background: rgba(234, 179, 8, 0.08);
        }
        .course-tab.active {
            color: #000 !important;
            background: #EAB308 !important;
            box-shadow: 0 6px 16px -6px rgba(234, 179, 8, 0.7);
        }
        .dark .course-tab.active {
            color: #000 !important;
        }
        .course-hero__grid {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
            align-items: stretch;
        }
        @media (min-width: 1024px) {
            .course-hero__grid {
                display: grid;
                grid-template-columns: 450px 1fr;
                gap: 2.5rem;
            }
        }
        .course-hero__access-value {
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 600;
            line-height: 1.45;
            letter-spacing: normal;
            text-transform: none;
        }
        @media (max-width: 1023px) {
            .course-hero__content-col {
                display: flex;
                flex-direction: column;
                gap: 0;
            }
            .course-hero__cta-main {
                order: 1;
                margin-top: -0.5rem;
                margin-bottom: 0.75rem;
            }
            .course-hero__trust {
                order: 2;
                margin-bottom: 1.25rem;
            }
            .course-hero__subtitle { order: 3; }
            .course-hero__title { order: 4; }
            .course-hero__role { order: 5; }
            .course-hero__stats { order: 6; }
            .course-hero__desc { order: 7; }
        }
        .course-hero__media-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgb(229 231 235);
            box-shadow: 0 12px 40px -16px rgb(0 0 0 / 0.45);
        }
        .dark .course-hero__media-card {
            border-color: rgb(38 38 38);
        }
        .course-hero__media-card > .pp-cover-photo,
        .course-hero__media-card > img {
            flex-shrink: 0;
        }
        .course-hero__media-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            padding: 1.25rem;
            background: #fff;
        }
        .dark .course-hero__media-info {
            background: #111;
        }

        /* Capas — preenche o card sem barras pretas laterais */
        .pp-cover-photo {
            position: relative;
            width: 100%;
            aspect-ratio: 2 / 1;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .dark .pp-cover-photo {
            background: #18181b;
        }
        .pp-cover-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
        .course-hero__media-card .pp-cover-photo {
            aspect-ratio: auto;
            min-height: 0;
        }
        .course-hero__media-card .pp-cover-photo img {
            width: 100%;
            height: 100%;
            max-height: none;
            object-fit: cover;
            object-position: center top;
        }
        .pp-instructor-card {
            display: flex;
            flex-direction: column;
        }
        .pp-instructor-photo {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            background: #f4f4f5;
            overflow: hidden;
            flex-shrink: 0;
        }
        .dark .pp-instructor-photo {
            background: #18181b;
        }
        .pp-instructor-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 15%;
        }
        .pp-instructor-info {
            flex-shrink: 0;
            padding: 0.75rem 0.5rem;
            text-align: center;
            border-top: 1px solid rgb(229 231 235);
            background: #fff;
        }
        .dark .pp-instructor-info {
            border-top-color: rgb(38 38 38);
            background: #111;
        }
        .pp-instructor-info h3,
        .pp-instructor-info .pp-instructor-name {
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.25;
            color: rgb(17 24 39);
        }
        .dark .pp-instructor-info h3,
        .dark .pp-instructor-info .pp-instructor-name {
            color: #fff;
        }
        .pp-instructor-info p,
        .pp-instructor-info .pp-instructor-subtitle {
            margin-top: 0.25rem;
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #EAB308;
        }
        @media (min-width: 640px) {
            .pp-instructor-info h3,
            .pp-instructor-info .pp-instructor-name {
                font-size: 0.8125rem;
            }
        }

        .pp-whatsapp-cta {
            position: relative;
            padding: 4rem 1.5rem;
            background: #fff;
            border-top: 1px solid #e5e7eb;
            overflow: hidden;
        }
        .dark .pp-whatsapp-cta {
            background: #000;
            border-top-color: #262626;
        }
        .pp-whatsapp-cta::before {
            content: none;
            display: none;
        }
        .pp-whatsapp-cta__inner {
            position: relative;
            z-index: 1;
            max-width: 42rem;
            margin: 0 auto;
            text-align: center;
        }
        .pp-whatsapp-cta__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.85rem;
            border-radius: 9999px;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #374151;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 14px rgba(0,0,0,0.06);
        }
        .dark .pp-whatsapp-cta__badge {
            background: #111;
            border-color: #333;
            color: #d1d5db;
        }
        .pp-whatsapp-cta__badge i { color: #25D366; font-size: 1rem; }
        .pp-whatsapp-cta__title {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            color: #EAB308;
            margin-bottom: 1rem;
        }
        .pp-whatsapp-cta__text {
            font-size: 0.82rem;
            line-height: 1.6;
            color: #4b5563;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-weight: 600;
            margin-bottom: 1.75rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .dark .pp-whatsapp-cta__text { color: #9ca3af; border-bottom-color: #333; }
        .pp-whatsapp-cta__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            padding: 1rem 1.75rem;
            border-radius: 0.65rem;
            background: #25D366;
            color: #fff;
            font-weight: 900;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }
        .pp-whatsapp-cta__btn:hover {
            transform: scale(1.03);
            color: #fff;
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
        }
        .pp-whatsapp-cta__hint {
            margin-top: 0.75rem;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #6b7280;
        }
/* index-plans-styles */
@media (min-width: 1920px) {
            .pp-section-inner { max-width: 1280px; }
        }
        .pp-section {
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
        }
        @media (min-width: 1024px) {
            .pp-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
        }
        .pp-section-title {
            font-size: clamp(1.5rem, 2.5vw, 2.25rem);
            line-height: 1.15;
        }
        .pp-plans-shell {
            width: 100%;
            max-width: 1160px;
            margin-left: auto;
            margin-right: auto;
        }
        /* Hostinger: faixa acima; topo do corpo branco alinhado; bases alinhadas (flex-end) */
        .plans-cards-row {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: stretch;
        }
        @media (min-width: 768px) {
            .plans-cards-row {
                flex-direction: row;
                align-items: flex-end;
                gap: 1rem;
            }
            .plan-card-wrap {
                flex: 1;
                min-width: 0;
            }
            .plan-card-spacer {
                display: block;
                flex-shrink: 0;
                height: 2.5rem;
                min-height: 2.5rem;
            }
        }
        @media (min-width: 1024px) {
            .plans-cards-row {
                gap: 1.25rem;
            }
        }
        .plan-card-wrap {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-width: 0;
        }
        @media (max-width: 767px) {
            .plan-card-spacer {
                display: none;
            }
        }
        .plan-card-outline {
            display: flex;
            flex-direction: column;
            width: 100%;
            border-radius: 1rem;
            overflow: hidden;
            box-sizing: border-box;
        }
        .plan-card-badge {
            flex-shrink: 0;
            min-height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0.75rem;
            border-radius: 1rem 1rem 0 0;
            font-size: 0.625rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.2;
        }
        .plan-card-badge.is-popular {
            background: #EAB308;
            color: #000;
        }
        .plan-card-badge.is-recommended {
            background: rgba(234, 179, 8, 0.18);
            color: #111827;
        }
        .dark .plan-card-badge.is-recommended {
            background: rgba(234, 179, 8, 0.2);
            color: #f9fafb;
        }
        .plan-card-frame {
            display: flex;
            flex-direction: column;
            flex: 1;
            width: 100%;
            border-radius: 1rem;
            overflow: hidden;
            background: #fff;
            box-sizing: border-box;
            transition: border-color .2s, box-shadow .2s;
        }
        .dark .plan-card-frame {
            background: #0f0f0f;
        }
        /* Single / Básico: borda cinza discreta, sem faixa */
        .plan-card-wrap.is-basic .plan-card-frame {
            border: 2px solid rgb(229 231 235);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .dark .plan-card-wrap.is-basic .plan-card-frame {
            border-color: rgb(64 64 64);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .plan-card-wrap.is-basic .plan-card-frame:hover {
            border-color: rgba(234, 179, 8, 0.35);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        /* Premium / Elite — borda envolve faixa + corpo */
        .plan-card-outline.is-featured {
            border: 2px solid #EAB308;
            box-shadow: 0 2px 12px rgba(234, 179, 8, 0.12);
        }
        .plan-card-outline.is-featured:hover {
            box-shadow: 0 4px 20px rgba(234, 179, 8, 0.18);
        }
        .plan-card-outline.is-featured .plan-card-frame {
            border: none;
            box-shadow: none;
            border-radius: 0;
        }
        .plan-card-outline.is-featured .plan-card-badge {
            border-radius: 0;
        }
        /* Business / Ilimitada */
        .plan-card-outline.is-recommended {
            border: 2px solid rgba(234, 179, 8, 0.42);
            box-shadow: 0 2px 10px rgba(234, 179, 8, 0.06);
        }
        .dark .plan-card-outline.is-recommended {
            border-color: rgba(234, 179, 8, 0.5);
        }
        .plan-card-outline.is-recommended:hover {
            border-color: rgba(234, 179, 8, 0.55);
            box-shadow: 0 8px 24px rgba(234, 179, 8, 0.1);
        }
        .plan-card-outline.is-recommended .plan-card-frame {
            border: none;
            box-shadow: none;
            border-radius: 0;
        }
        .plan-card-outline.is-recommended .plan-card-badge {
            border-radius: 0;
        }
        .plan-card-body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 1.25rem 1.25rem 1.5rem;
        }
        .plan-card-intro {
            min-height: 5.25rem;
            flex-shrink: 0;
        }
        .plan-card-price-zone {
            min-height: 6.75rem;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .plan-card-bonus-line {
            min-height: 1.25rem;
            margin-bottom: 1rem;
        }
        .plan-card-cta-zone {
            flex-shrink: 0;
            min-height: 5.75rem;
            display: flex;
            flex-direction: column;
        }
        .plan-card-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 3rem;
            box-sizing: border-box;
            flex-shrink: 0;
        }
        .plan-card-fine-print {
            min-height: 2.5rem;
            margin-top: 0.625rem;
            line-height: 1.4;
        }
        .plan-card-features-zone {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }
        @media (max-width: 767px) {
            .pp-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .pp-section-inner {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .pp-plans-shell {
                padding-left: 0;
                padding-right: 0;
            }
            #site-questoes-hero {
                min-height: auto;
                padding-top: 5.5rem;
                padding-bottom: 2.5rem;
            }
            .hero-inner {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .plans-cards-row {
                gap: 1.25rem;
                max-width: 21.5rem;
                margin-left: auto;
                margin-right: auto;
            }
            .plan-card-wrap {
                height: auto;
            }
            .plan-card-intro {
                min-height: 4.5rem;
            }
            .plan-card-price-zone {
                min-height: 6rem;
            }
            .plan-card-body {
                padding: 1.125rem 1.125rem 1.375rem;
            }
            .plans-compare-mobile {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                width: 100%;
                max-width: 21.5rem;
                margin-left: auto;
                margin-right: auto;
            }
            .plans-compare-mobile-wrap {
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .plans-compare-mobile-badge {
                min-height: 2.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                text-align: center;
                font-size: 0.625rem;
                font-weight: 800;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }
            .plans-compare-mobile-badge.is-popular {
                background: #EAB308;
                color: #000;
            }
            .plans-compare-mobile-badge.is-recommended {
                background: rgba(234, 179, 8, 0.14);
                color: #111827;
            }
            .dark .plans-compare-mobile-badge.is-recommended {
                background: rgba(234, 179, 8, 0.16);
                color: #f3f4f6;
            }
            .plans-compare-mobile-frame {
                display: flex;
                flex-direction: column;
                border-radius: 1rem;
                overflow: hidden;
                background: #fff;
                box-sizing: border-box;
            }
            .dark .plans-compare-mobile-frame {
                background: #0f0f0f;
            }
            .plans-compare-mobile-wrap.is-basic .plans-compare-mobile-frame {
                border: 2px solid rgb(229 231 235);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            }
            .dark .plans-compare-mobile-wrap.is-basic .plans-compare-mobile-frame {
                border-color: rgb(64 64 64);
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
            }
            .plans-compare-mobile-wrap.is-popular {
                border: 2px solid #EAB308;
                border-radius: 1rem;
                overflow: hidden;
                box-shadow: 0 2px 12px rgba(234, 179, 8, 0.12);
            }
            .plans-compare-mobile-wrap.is-popular .plans-compare-mobile-frame {
                border: none;
                border-radius: 0;
            }
            .plans-compare-mobile-wrap.is-recommended {
                border: 2px solid rgba(234, 179, 8, 0.38);
                border-radius: 1rem;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(234, 179, 8, 0.06);
            }
            .dark .plans-compare-mobile-wrap.is-recommended {
                border-color: rgba(234, 179, 8, 0.48);
            }
            .plans-compare-mobile-wrap.is-recommended .plans-compare-mobile-frame {
                border: none;
                border-radius: 0;
            }
            .plans-compare-mobile-head {
                padding: 1rem 1.125rem 1.125rem;
                background: rgb(249 250 251);
                border-bottom: 1px solid rgb(229 231 235);
            }
            .dark .plans-compare-mobile-head {
                background: #111;
                border-bottom-color: rgb(38 38 38);
            }
            .plans-compare-mobile-wrap.is-popular .plans-compare-mobile-head {
                background: linear-gradient(180deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.03) 100%);
            }
            .plans-compare-mobile-body {
                padding: 0.5rem 1.125rem 1rem;
            }
            .plans-compare-mobile-row {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 0.75rem;
                padding: 0.65rem 0;
                border-bottom: 1px solid rgb(243 244 246);
                font-size: 0.8125rem;
            }
            .plans-compare-mobile-row > span:first-child {
                flex: 1;
                min-width: 0;
                line-height: 1.35;
            }
            .plans-compare-mobile-row > span:last-child {
                flex-shrink: 0;
                text-align: right;
            }
            .dark .plans-compare-mobile-row {
                border-bottom-color: rgb(23 23 23);
            }
            .plans-compare-mobile-row:last-child {
                border-bottom: none;
            }
            .plans-compare-mobile-cat {
                font-size: 0.625rem;
                font-weight: 800;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: #EAB308;
                padding: 0.5rem 0 0.35rem;
                margin: 0;
                display: flex;
                align-items: center;
                gap: 0.35rem;
            }
            .plans-compare-mobile-cat:not(:first-child) {
                margin-top: 0.35rem;
                padding-top: 0.75rem;
                border-top: 1px solid rgb(243 244 246);
            }
            .dark .plans-compare-mobile-cat:not(:first-child) {
                border-top-color: rgb(38 38 38);
            }
            #planos-comparativo .compare-desc-desktop {
                display: none;
            }
            .marquee-container [class*="380px"],
            .marquee-container [class*="420px"] {
                width: min(88vw, 21.5rem) !important;
            }
            #aguia-ia .aguia-chat-wrap {
                min-height: 420px;
            }
            #aguia-ia .aguia-chat-card {
                min-height: 400px;
            }
            .pp-mock-desktop-panel {
                width: 100%;
                max-width: 21.5rem;
                height: min(58vw, 360px);
                margin-left: auto;
                margin-right: auto;
            }
            .pp-mock-phone {
                width: min(78vw, 280px) !important;
                height: min(148vw, 520px) !important;
            }
            #site-questoes-hero .hero-copy {
                padding-top: 0;
            }
            #site-questoes-hero h1 {
                font-size: clamp(1.75rem, 8vw, 2.5rem);
            }
            #cms-site-questoes-plans > .flex {
                width: 100%;
                max-width: 21.5rem;
                margin-left: auto;
                margin-right: auto;
            }
            #faq .container {
                padding-left: 0;
                padding-right: 0;
            }
        }
/* pp-compare-hostinger */
/* Tabela comparativa — estrutura Hostinger + cabeçalho fixo ao rolar */
#planos-comparativo {
    --pp-compare-sticky-top: 4.5rem;
    --pp-compare-cols: minmax(12rem, 1.35fr) repeat(3, minmax(0, 1fr));
    position: relative;
}

.pp-compare-grid {
    width: 100%;
}

.pp-compare-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.pp-compare-table {
    width: 100%;
    min-width: 52rem;
    background: #fff;
    color: #111827;
}

.pp-compare-table-header-placeholder {
    display: none;
    grid-column: 1 / -1;
}

/* Cabeçalho: gruda abaixo da navbar até o fim da seção (via JS is-pinned) */
.pp-compare-table-header {
    display: grid;
    grid-template-columns: var(--pp-compare-cols);
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
    will-change: transform;
}

.pp-compare-table-header.is-pinned {
    position: fixed;
    z-index: 45;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

.pp-compare-table.is-stuck .pp-compare-table-header:not(.is-pinned) {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pp-compare-table-header > div:first-child {
    min-height: 10.5rem;
    background: #fff;
}

.pp-compare-table-header__product-card {
    padding: 1.25rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    min-height: 10.5rem;
    background: #fff;
}

.pp-compare-table-header__product-card.is-popular {
    background: rgba(234, 179, 8, 0.08);
    box-shadow: inset 1px 0 0 rgba(234, 179, 8, 0.3), inset -1px 0 0 rgba(234, 179, 8, 0.3);
}

.pp-compare-table-header__product-card-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pp-compare-table-header__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 0.25rem;
    margin-bottom: 0.4rem;
    background: #EAB308;
    color: #000;
    line-height: 1.2;
}

.pp-compare-table-header__badge--hidden {
    visibility: hidden;
    pointer-events: none;
}

.pp-compare-table-header__badge--outline {
    visibility: visible;
    background: transparent;
    color: #a16207;
    border: 2px solid #EAB308;
}

.pp-compare-table-header__product-card-title-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.pp-compare-table-header__price {
    display: block;
    margin-top: 0.35rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.pp-price__wrapper {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    line-height: 1.2;
}

.pp-price__currency,
.pp-price__number,
.pp-price__suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #1f2937;
}

.pp-price__number {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pp-price__suffix {
    font-size: 1rem;
    color: #6b7280;
}

.pp-compare-table-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 11.5rem;
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.pp-compare-table-header__button--primary {
    background: #EAB308;
    color: #000;
}

.pp-compare-table-header__button--primary:hover {
    background: #FDE047;
}

.pp-compare-table-header__button--neutral {
    background: #171717;
    color: #fff;
}

.pp-compare-table-header__button--neutral:hover {
    opacity: 0.88;
}

.pp-compare-table__end-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

.pp-compare-table-data {
    background: #fff;
}

.pp-compare-table-data__feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
}

.pp-compare-table-data__group:first-child .pp-compare-table-data__feature {
    border-top: none;
}

.pp-compare-table-data__feature > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pp-compare-table-data__feature-icon {
    flex-shrink: 0;
    color: #111827;
    font-size: 1rem;
}

.pp-compare-table-data__feature--cols {
    display: grid;
    grid-template-columns: var(--pp-compare-cols);
    border-top: 1px solid #f3f4f6;
    padding: 0;
    font-weight: 400;
}

.pp-compare-feature,
.pp-plan-feature {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    min-height: 3.25rem;
}

.pp-compare-feature {
    justify-content: flex-start;
}

.pp-compare-feature__content,
.pp-plan-feature__content {
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #374151;
}

.pp-plan-feature {
    justify-content: center;
    text-align: center;
}

.pp-plan-feature__content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #111827;
}

.pp-plan-feature.is-popular {
    background: rgba(234, 179, 8, 0.05);
}

.pp-compare-icon-check {
    display: inline-flex;
    color: #22c55e;
    width: 1.5rem;
    height: 1.5rem;
}

.pp-compare-icon-check svg {
    width: 100%;
    height: 100%;
}

.pp-compare-icon-line {
    display: inline-flex;
    color: #6b7280;
    width: 1.5rem;
    height: 1.5rem;
}

.pp-compare-icon-line svg {
    width: 100%;
    height: 100%;
}

.dark .pp-compare-table,
.dark .pp-compare-table-header,
.dark .pp-compare-table-header > div:first-child,
.dark .pp-compare-table-header__product-card,
.dark .pp-compare-table-data {
    background: #0a0a0a;
    color: #f9fafb;
}

.dark .pp-compare-table-header {
    border-bottom-color: #262626;
}

.dark .pp-compare-table-header__product-card-title-text,
.dark .pp-price__currency,
.dark .pp-price__number,
.dark .pp-plan-feature__content {
    color: #fff;
}

.dark .pp-price__suffix {
    color: #9ca3af;
}

.dark .pp-compare-table-data__feature {
    color: #e5e7eb;
    border-top-color: #262626;
}

.dark .pp-compare-table-data__feature--cols {
    border-top-color: #1f1f1f;
}

.dark .pp-compare-feature__content {
    color: #d1d5db;
}

.dark .pp-compare-icon-line {
    color: #4b5563;
}

@media (max-width: 767px) {
    #planos-comparativo .compare-desc-desktop {
        display: none;
    }
}
/* mobile perf: below-fold */
#planos,footer,#course-detail-body,.pp-whatsapp-cta{content-visibility:auto;contain-intrinsic-size:1px 800px;}
    