﻿/* PP Questões shared — catálogo */
        /* Animações para a Seção de Aprovados (Rolagem Contínua) */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        .animate-scroll-left {
            animation: scroll-left 90s linear infinite;
        }
        .animate-scroll-right {
            animation: scroll-right 90s linear infinite;
        }
        .marquee-container:hover .animate-scroll-left,
        .marquee-container:hover .animate-scroll-right {
            animation-play-state: paused;
        }
        .mask-fade-edges {
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        /* Hero e layout em telas grandes (TV / ultra-wide) */
        #site-questoes-hero {
            width: 100%;
            max-width: 100vw;
        }
        #hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 35%;
        }
        .hero-inner {
            width: 100%;
            max-width: 1300px;
        }
        @media (min-width: 1280px) {
            .hero-inner { max-width: 1420px; }
        }
        @media (min-width: 1536px) {
            .hero-inner { max-width: 1620px; }
            #hero-video { object-position: center 32%; }
        }
        @media (min-width: 1920px) {
            .hero-inner { max-width: min(94vw, 1880px); }
            #hero-video {
                transform: scale(1.12);
                transform-origin: center center;
            }
        }
        @media (min-width: 2560px) {
            .hero-inner { max-width: min(90vw, 2200px); }
            #hero-video { transform: scale(1.2); }
        }
        .pp-section-inner {
            width: 100%;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 1536px) {
            .pp-section-inner { max-width: 1200px; }
        }
        @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;
        }
        .plans-compare-panel {
            border-radius: 1.25rem;
            border: 1px solid rgb(229 231 235);
            background: #fff;
            box-shadow: 0 4px 24px rgba(0,0,0,.06);
            overflow: hidden;
        }
        .dark .plans-compare-panel {
            border-color: rgb(38 38 38);
            background: #0a0a0a;
            box-shadow: 0 4px 28px rgba(0,0,0,.35);
        }
        .plans-compare-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .plans-compare-grid {
            display: grid;
            grid-template-columns: minmax(11.5rem, 1.35fr) repeat(3, minmax(7.5rem, 1fr));
            min-width: 100%;
        }
        @media (min-width: 768px) {
            .plans-compare-grid {
                grid-template-columns: minmax(12rem, 1.35fr) repeat(3, minmax(0, 1fr));
            }
        }
        .plans-compare-cell {
            padding: 0.875rem 1rem;
            border-bottom: 1px solid rgb(243 244 246);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 3.25rem;
            font-size: 0.8125rem;
        }
        .dark .plans-compare-cell {
            border-bottom-color: rgb(23 23 23);
        }
        .plans-compare-cell.is-label {
            justify-content: flex-start;
            text-align: left;
            font-weight: 600;
            color: rgb(75 85 99);
            padding-left: 1.25rem;
            padding-right: 1rem;
        }
        .dark .plans-compare-cell.is-label {
            color: rgb(156 163 175);
        }
        .plans-compare-cell.is-popular {
            background: rgba(234, 179, 8, 0.07);
            box-shadow: inset 1px 0 0 rgba(234, 179, 8, 0.22), inset -1px 0 0 rgba(234, 179, 8, 0.22);
        }
        .dark .plans-compare-cell.is-popular {
            background: rgba(234, 179, 8, 0.09);
        }
        #planos-comparativo {
            --pp-compare-sticky-top: 4.5rem;
        }
        .plans-compare-cell.is-head {
            position: sticky;
            top: var(--pp-compare-sticky-top);
            z-index: 30;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 1.25rem 1rem 1.5rem;
            min-height: 10.5rem;
            border-bottom-width: 2px;
            border-bottom-color: rgb(229 231 235);
            background: rgb(249 250 251);
            transition: box-shadow 0.2s ease;
        }
        .plans-compare-panel.is-stuck .plans-compare-cell.is-head {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .dark .plans-compare-panel.is-stuck .plans-compare-cell.is-head {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
        }
        .dark .plans-compare-cell.is-head {
            background: #111;
            border-bottom-color: rgb(38 38 38);
        }
        .plans-compare-sticky-sentinel {
            grid-column: 1 / -1;
            height: 0;
            margin: 0;
            padding: 0;
            border: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .plans-compare-cell.is-head.is-popular {
            background: linear-gradient(180deg, rgba(234,179,8,.14) 0%, rgba(234,179,8,.04) 100%);
        }
        .dark .plans-compare-cell.is-head.is-popular {
            background: linear-gradient(180deg, rgba(234,179,8,.18) 0%, rgba(234,179,8,.06) 100%);
        }
        .plans-compare-cell.is-category {
            grid-column: 1 / -1;
            width: 100%;
            justify-content: flex-start;
            min-height: auto;
            padding: 1.25rem 1.25rem 0.65rem;
            border-bottom: none;
            background: transparent;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgb(17 24 39);
        }
        .dark .plans-compare-cell.is-category {
            color: #fff;
        }
        .plans-compare-cell.is-category + .plans-compare-cell,
        .plans-compare-row-first .plans-compare-cell {
            border-top: 1px solid rgb(243 244 246);
        }
        .dark .plans-compare-cell.is-category + .plans-compare-cell,
        .dark .plans-compare-row-first .plans-compare-cell {
            border-top-color: rgb(38 38 38);
        }
        .plans-compare-row-last .plans-compare-cell {
            border-bottom: none;
        }
        /* Comparativo mobile — layout em coluna (evita botão sobre o preço) */
        .plans-compare-mobile-head {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
            text-align: center;
        }
        .plans-compare-mobile-title {
            font-size: 1.125rem;
            font-weight: 800;
            line-height: 1.25;
            color: rgb(17 24 39);
        }
        .dark .plans-compare-mobile-title {
            color: #fff;
        }
        .plans-compare-mobile-price {
            display: block;
            margin: 0;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: rgb(17 24 39);
        }
        .dark .plans-compare-mobile-price {
            color: #fff;
        }
        .plans-compare-mobile-price-main {
            display: inline-block;
            margin-right: 0.15rem;
        }
        .plans-compare-mobile-price-suffix {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 700;
            color: rgb(107 114 128);
            vertical-align: baseline;
        }
        .plans-compare-mobile-cta {
            display: flex !important;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 0 !important;
            position: static !important;
            flex-shrink: 0;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
        }
        .plans-compare-mobile-cta.is-solid {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            font-weight: 700;
            background: #EAB308;
            color: #000;
            border: 2px solid transparent;
            min-height: 3rem;
        }
        .plans-compare-mobile-cta.is-outline {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            font-weight: 700;
            border: 2px solid #EAB308;
            color: #EAB308;
            background: transparent;
            min-height: 3rem;
        }
        @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;
            }

        /* Botão flutuante WhatsApp */
        .pp-whatsapp-float {
            position: fixed;
            bottom: 1.25rem;
            right: 1.25rem;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 9999px;
            background: #25D366;
            color: #fff;
            font-size: 1.75rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .pp-whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
            color: #fff;
        }
        .pp-whatsapp-float:focus-visible {
            outline: 2px solid #EAB308;
            outline-offset: 3px;
        }
        @media (min-width: 640px) {
            .pp-whatsapp-float {
                bottom: 1.75rem;
                right: 1.75rem;
                width: 3.75rem;
                height: 3.75rem;
                font-size: 2rem;
            }
        }
