        /* ============================================================
           PACOTES — sales page
           ============================================================ */
        .pacotes-hero {
            background: linear-gradient(135deg, #0C1B33 0%, #122541 100%);
            color: var(--text-white);
            padding: calc(clamp(3rem, 6vw, 5rem) + 60px) 8% clamp(2.5rem, 4vw, 3.5rem);
            text-align: center;
        }
        .pacotes-hero .eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.65rem;
        }
        .pacotes-hero h1 {
            font-family: 'Spectral', serif;
            font-weight: 400;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            line-height: 1.15;
            color: var(--text-white);
            margin-bottom: 1rem;
        }
        .pacotes-hero h1 .accent { color: var(--accent); }
        .pacotes-hero p {
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pacotes-trust {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .pacotes-trust span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .pacotes-trust .stars { color: var(--gold); letter-spacing: 1px; }

        /* ============================================================
           PACOTES GRID
           ============================================================ */
        .pacotes-section {
            padding: clamp(3rem, 5vw, 4.5rem) 8%;
            background: #ffffff;
        }
        .pacotes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .pacote-card {
            background: #ffffff;
            border: 1px solid rgba(30, 143, 224, 0.22);
            border-radius: 18px;
            padding: 2.2rem 1.8rem;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
            box-shadow:
                0 4px 12px -4px rgba(30, 40, 45, 0.06),
                0 16px 32px -16px rgba(30, 40, 45, 0.10);
        }
        .pacote-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow:
                0 12px 24px -8px rgba(30, 40, 45, 0.18),
                0 28px 56px -16px rgba(30, 40, 45, 0.20);
        }

        /* Pacote 2 destacado como "mais procurado" */
        .pacote-card.featured {
            border-color: var(--accent);
            background: linear-gradient(180deg, #ffffff 0%, #f5fafa 100%);
        }

        .pacote-badge {
            position: absolute;
            top: -12px;
            right: 1.5rem;
            background: var(--accent);
            color: #ffffff;
            padding: 0.35rem 0.85rem;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 6px 12px -4px rgba(30, 143, 224, 0.4);
        }
        .pacote-badge.gold { background: var(--gold); }

        .pacote-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 1.2rem;
            color: var(--accent);
        }
        .pacote-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            stroke-width: 1.6;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pacote-card h2 {
            font-family: 'Spectral', serif;
            font-weight: 500;
            font-size: 1.55rem;
            color: var(--ink);
            line-height: 1.2;
            margin-bottom: 0.4rem;
        }
        .pacote-persona {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 1.2rem;
        }
        .pacote-card > p.pacote-pitch {
            color: var(--ink-soft);
            font-size: 0.96rem;
            line-height: 1.55;
            margin-bottom: 1.5rem;
        }

        .pacote-includes {
            list-style: none;
            padding: 0;
            margin-bottom: 1.8rem;
            border-top: 1px solid #e2e6e9;
            padding-top: 1.2rem;
        }
        .pacote-includes li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.92rem;
            color: var(--ink-soft);
            line-height: 1.5;
            padding: 0.3rem 0;
        }
        .pacote-includes li::before {
            content: '✓';
            color: #1ea355;
            font-weight: 700;
            font-size: 1.05rem;
            flex-shrink: 0;
            line-height: 1.3;
        }

        .pacote-price-block {
            border-top: 1px solid #e2e6e9;
            padding-top: 1.2rem;
            margin-bottom: 1.5rem;
            margin-top: auto; /* empurra pra base */
        }
        .pacote-price-prefix {
            font-size: 0.75rem;
            color: var(--ink-soft);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.2rem;
        }
        .pacote-price {
            font-family: 'Spectral', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: #1ea355;
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .pacote-price-installment {
            font-size: 0.85rem;
            color: var(--ink-soft);
        }
        .pacote-price-equivalent {
            font-size: 0.8rem;
            color: #5a6670;
            margin-top: 0.3rem;
            font-style: normal;
        }

        .pacote-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(180deg, #2EE06E 0%, #1EA355 100%);
            color: #ffffff;
            padding: 0.95rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow:
                0 6px 12px -3px rgba(30, 163, 85, 0.4),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.3);
        }
        .pacote-cta:hover {
            transform: translateY(-2px);
            box-shadow:
                0 10px 20px -3px rgba(30, 163, 85, 0.5),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.3);
        }
        .pacote-cta svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        /* ============================================================
           PACOTES FAQ + TRUST
           ============================================================ */
        .pacotes-extras {
            background: var(--cream);
            padding: clamp(2.5rem, 4vw, 4rem) 8%;
        }
        .pacotes-extras-inner {
            max-width: 880px;
            margin: 0 auto;
        }
        .pacotes-extras h2 {
            font-family: 'Spectral', serif;
            font-weight: 400;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            color: var(--ink);
            text-align: center;
            margin-bottom: 1.8rem;
        }
        .pacotes-faq details {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 0.8rem;
            border: 1px solid #e2e6e9;
        }
        .pacotes-faq summary {
            cursor: pointer;
            font-weight: 600;
            color: var(--ink);
            font-size: 1rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pacotes-faq summary::-webkit-details-marker { display: none; }
        .pacotes-faq summary::after {
            content: '+';
            color: var(--accent);
            font-size: 1.4rem;
            font-weight: 400;
            transition: transform 0.2s ease;
        }
        .pacotes-faq details[open] summary::after { transform: rotate(45deg); }
        .pacotes-faq details p {
            margin-top: 0.8rem;
            color: var(--ink-soft);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ============================================================
           Responsive
           ============================================================ */
        @media (max-width: 960px) {
            .pacotes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 480px;
            }
            .pacote-card {
                padding: 1.8rem 1.5rem;
            }
        }
        @media (max-width: 600px) {
            .pacotes-hero,
            .pacotes-section,
            .pacotes-extras {
                padding-left: 6%;
                padding-right: 6%;
            }
            .pacotes-trust {
                gap: 0.9rem;
                font-size: 0.78rem;
            }
        }