
    /* ============================================
       Design System Tokens (from design_system1.html)
       ============================================ */
    :root {
        --primary-gov: #1351b4;
        --primary-gov-glow: rgba(19, 81, 180, 0.4);
        --green-gov: #00a300;
        --green-gov-glow: rgba(0, 163, 0, 0.4);
        --yellow-gov: #ffcd07;
        --yellow-gov-dark: #c9a300;
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: rgba(255, 255, 255, 0.3);
    }

    /* ============================================
       Base (design_system1.html body styles)
       ============================================ */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    #video-prevista {
        scroll-margin-top: 24px;
    }

    body {
        background: linear-gradient(-45deg, #f0f4f8, #e0e9f5, #f8f9fa, #e6ecf2);
        background-size: 400% 400%;
        animation: gradientBackground 15s ease infinite;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        overflow-x: hidden;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }

    /* Render-skipping em seções fora da viewport (browsers modernos) */
    .trust-bar,
    .headline-block,
    .identify-block,
    .cpf-alert-block,
    .guide-block,
    .simulator-block,
    .benefits-block,
    .problem-block,
    .offer-block {
        content-visibility: auto;
        contain-intrinsic-size: 1px 600px;
    }

    @keyframes gradientBackground {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes floatElement {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    .reveal-anim {
        opacity: 0;
        animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    .delay-4 { animation-delay: 0.8s; }

    .highlight-stat {
        background: linear-gradient(transparent 60%, rgba(255, 205, 7, 0.45) 60%);
        font-weight: 700;
        padding: 0 2px;
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary-gov) 0%, #00a300 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .shape {
        position: absolute;
        filter: blur(50px);
        z-index: 0;
        animation: floatElement 8s ease-in-out infinite;
    }
    .shape-1 { width: 300px; height: 300px; background: rgba(19,81,180,0.2); border-radius: 50%; top: -100px; right: -50px; }
    .shape-2 { width: 400px; height: 400px; background: rgba(0,163,0,0.15); border-radius: 50%; bottom: -150px; left: -100px; animation-delay: 2s; }
    .shape-3 { width: 220px; height: 220px; background: rgba(255,205,7,0.22); border-radius: 50%; top: 40%; left: 45%; animation-delay: 4s; }

    /* ============================================
       SEÇÃO 1 — Barra Superior + Hero
       ============================================ */

    /* Barra superior fina */
    .top-bar {
        background: var(--primary-gov);
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }

    /* Hero */
    .hero {
        position: relative;
        overflow: hidden;
        padding: 60px 20px 80px;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        z-index: 2;
    }

    /* Coluna de conteúdo */
    .hero-content {
        text-align: center;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        padding: 8px 18px;
        border-radius: 30px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-size: 0.8125rem;
        margin-bottom: 24px;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.4);
    }

    .hero-eyebrow::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d32f2f;
        animation: pulseDot 1.4s ease-in-out infinite;
    }

    @keyframes pulseDot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.4); opacity: 0.7; }
    }

    .hero-title {
        font-weight: 900;
        font-size: 2.25rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .hero-title mark {
        display: inline-block;
        padding: 0 10px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        border-radius: 6px;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.45);
        transform: rotate(-1.5deg);
    }

    .hero-text {
        font-weight: 500;
        font-size: 1.0625rem;
        line-height: 1.55;
        color: #444;
        margin-bottom: 28px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }

    .hero-cta {
        display: inline-block;
        width: 100%;
        max-width: 420px;
        padding: 18px 28px;
        background: var(--green-gov);
        color: #fff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 800;
        font-size: 1.0625rem;
        letter-spacing: 0.3px;
        text-decoration: none;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(0, 163, 0, 0.3);
        animation: pulse 2s infinite;
        transition: filter 0.3s ease;
    }

    .hero-cta:hover {
        filter: brightness(1.08);
    }

    .hero-trust {
        font-size: 0.8125rem;
        color: #666;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .hero-anchor {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-gov);
        text-decoration: none;
        font-weight: 700;
        font-size: 1.0625rem;
        margin-top: 8px;
        transition: all 0.3s ease;
    }

    @media (min-width: 1200px) {
        .hero-anchor {
            font-size: 1.125rem;
        }
    }

    .hero-anchor:hover {
        transform: translateY(3px);
    }

    .hero-anchor .arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--yellow-gov);
        color: var(--primary-gov);
        font-weight: 800;
        animation: floatElement 2s ease-in-out infinite;
    }

    /* Coluna visual */
    .hero-visual {
        width: 100%;
        max-width: 400px;
        overflow: hidden;
    }

    .hero-visual img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ============================================
       Responsivo — Desktop (≥ 1200px)
       ============================================ */
    @media (min-width: 1200px) {
        .hero {
            padding: 80px 40px 100px;
        }

        .hero-container {
            flex-direction: row;
            align-items: center;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
            text-align: left;
        }

        .hero-title {
            font-size: 3.25rem;
        }

        .hero-text {
            margin-left: 0;
            margin-right: 0;
            font-size: 1.125rem;
        }

        .hero-actions {
            align-items: flex-start;
        }

        .hero-visual {
            flex: 1;
            max-width: 500px;
        }
    }

    /* Tablet (>= 768px) */
    @media (min-width: 768px) and (max-width: 1199px) {
        .hero-title {
            font-size: 2.75rem;
        }

        .hero-text {
            font-size: 1.1rem;
        }

        .hero-visual {
            max-width: 450px;
        }
    }
    /* ============================================
       SEÇÃO 2 — Barra de Confiança
       ============================================ */
    .trust-bar {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        padding: 40px 20px;
    }

    .trust-bar-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .trust-bar-title {
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.5;
        color: #555;
        margin-bottom: 28px;
        letter-spacing: 0.3px;
    }

    .trust-bar-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-bottom: 28px;
    }

    .trust-bar-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--primary-gov);
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.4;
    }

    .trust-bar-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        color: var(--primary-gov);
    }

    /* Desktop — itens em linha */
    @media (min-width: 768px) {
        .trust-bar-items {
            flex-direction: row;
            justify-content: center;
            gap: 48px;
        }
    }

    /* ============================================
       SEÇÃO 3 — Bloco Manchete
       ============================================ */
    .headline-block {
        padding: 60px 20px;
    }

    .headline-card {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border: 1px solid #ddd;
        border-left: 4px solid var(--yellow-gov);
        border-radius: 4px;
        padding: 32px 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .headline-eyebrow {
        display: inline-block;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary-gov);
        margin-bottom: 16px;
    }

    .headline-title {
        font-weight: 800;
        font-size: 1.5rem;
        line-height: 1.3;
        color: #333;
        margin-bottom: 20px;
    }

    .headline-subtitle {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 20px;
    }

    .headline-source {
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.5;
        color: #888;
        font-style: italic;
    }

    @media (min-width: 768px) {
        .headline-card {
            padding: 40px 48px;
        }

        .headline-title {
            font-size: 2rem;
        }
    }

    /* ============================================
       SEÇÃO 4 — Bloco de Identificação
       ============================================ */
    .identify-block {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .identify-title {
        font-weight: 700;
        font-size: 2rem;
        line-height: 1.3;
        color: #333;
        text-align: center;
        margin-bottom: 32px;
    }

    .identify-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }

    .identify-card {
        background: white;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .identify-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(19, 81, 180, 0.1);
        border-color: var(--primary-gov);
    }

    .identify-icon {
        width: 48px;
        height: 48px;
        color: var(--primary-gov);
        flex-shrink: 0;
    }

    .identify-question {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.4;
        color: #333;
    }

    .identify-buttons {
        display: flex;
        gap: 12px;
    }

    .identify-btn {
        padding: 10px 28px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 0.875rem;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid #ddd;
        background: white;
        color: #555;
    }

    .identify-btn:hover {
        border-color: var(--primary-gov);
        color: var(--primary-gov);
    }

    .identify-btn.active-sim {
        background: var(--green-gov);
        border-color: var(--green-gov);
        color: white;
        box-shadow: 0 4px 12px var(--green-gov-glow);
    }

    .identify-btn.active-nao {
        background: #888;
        border-color: #888;
        color: white;
    }

    /* Cards / progresso — colapso suave para não deixar espaço vazio */
    .identify-cards {
        transition: opacity 0.4s ease, max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, margin 0.6s ease 0.2s;
        max-height: 3000px;
        overflow: hidden;
    }

    .identify-cards.fade-out {
        opacity: 0;
    }

    .identify-cards.hidden {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        margin: 0;
    }

    .identify-progress {
        transition: opacity 0.4s ease, max-height 0.5s ease 0.1s, margin-bottom 0.5s ease 0.1s;
        max-height: 80px;
        overflow: hidden;
    }

    .identify-progress.fade-out {
        opacity: 0;
    }

    .identify-progress.hidden {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        margin-bottom: 0;
    }

    /* Bloco de análise — colapsado quando oculto */
    .identify-analysis {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        padding: 0 0;
        text-align: center;
        transition: opacity 0.4s ease, max-height 0.5s ease, padding 0.5s ease;
    }

    .identify-analysis.visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 500px;
        padding: 40px 0;
    }

    .identify-analysis-title {
        font-weight: 700;
        font-size: 1.25rem;
        color: #333;
        margin-bottom: 20px;
    }

    .identify-analysis-bar {
        width: 100%;
        max-width: 500px;
        height: 16px;
        background: #eaeaea;
        border-radius: 8px;
        overflow: hidden;
        margin: 0 auto 12px;
    }

    .identify-analysis-fill {
        height: 100%;
        width: 0%;
        background: var(--primary-gov);
        border-radius: 8px;
        transition: width 0.03s linear;
    }

    .identify-analysis-status {
        font-weight: 400;
        font-size: 0.9375rem;
        color: #555;
        min-height: 1.5em;
    }

    /* Bloco de revelação — colapsado quando oculto */
    .identify-reveal {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        padding: 0 0;
        text-align: center;
        transition: opacity 0.5s ease, max-height 0.6s ease, padding 0.5s ease;
    }

    .identify-reveal.visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 800px;
        padding: 40px 0;
        animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .identify-reveal-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 96px;
        height: 96px;
        margin: 0 auto 16px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 205, 7, 0.35) 0%, rgba(255, 205, 7, 0) 70%);
        font-size: 3.5rem;
        line-height: 1;
    }

    .identify-reveal-title {
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 1.3;
        color: #333;
        margin-bottom: 20px;
    }

    .identify-anchor {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-gov);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .identify-anchor:hover {
        transform: translateY(3px);
    }

    /* CTA da revelação — chamativo, redireciona pro vídeo */
    .identify-reveal-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        max-width: 460px;
        margin: 8px auto 14px;
        padding: 18px 28px;
        background: linear-gradient(135deg, var(--green-gov) 0%, #008c00 100%);
        color: #fff;
        font-family: inherit;
        font-weight: 800;
        font-size: 1.0625rem;
        letter-spacing: 0.5px;
        text-decoration: none;
        text-align: center;
        border: 2px solid var(--yellow-gov);
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(0, 163, 0, 0.35), 0 0 0 4px rgba(255, 205, 7, 0.15);
        animation: pulse 2s infinite;
        transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    }

    .identify-reveal-cta:hover {
        transform: translateY(-2px) scale(1.02);
        filter: brightness(1.08);
        box-shadow: 0 14px 32px rgba(0, 163, 0, 0.45), 0 0 0 6px rgba(255, 205, 7, 0.25);
    }

    .identify-reveal-cta-icon {
        display: inline-block;
        font-size: 1.25rem;
        animation: nudgeRight 1.4s ease-in-out infinite;
    }

    @keyframes nudgeRight {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(6px); }
    }

    .identify-reveal-hint {
        font-weight: 500;
        font-size: 0.875rem;
        color: #666;
        margin: 0 auto 24px;
        max-width: 460px;
    }

    .identify-reveal-banner {
        display: block;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(19, 81, 180, 0.18);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .identify-reveal-banner:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(19, 81, 180, 0.25);
    }

    .identify-reveal-banner img {
        display: block;
        width: 100%;
        height: auto;
    }

    @media (min-width: 768px) {
        .identify-reveal-cta {
            font-size: 1.125rem;
            padding: 20px 36px;
        }
    }

    .seta-bounce {
        animation: bounce 1.5s infinite;
        color: var(--yellow-gov-dark);
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    @media (min-width: 768px) {
        .identify-reveal-title {
            font-size: 2rem;
        }
    }

    /* Barra de progresso */
    .identify-progress {
        margin-bottom: 32px;
    }

    .identify-progress-text {
        font-weight: 600;
        font-size: 0.875rem;
        color: #555;
        margin-bottom: 8px;
        text-align: center;
    }

    .identify-progress-bar {
        width: 100%;
        height: 8px;
        background: #eaeaea;
        border-radius: 4px;
        overflow: hidden;
    }

    .identify-progress-fill {
        height: 100%;
        width: 0%;
        background: var(--green-gov);
        border-radius: 4px;
        transition: width 0.4s ease;
    }

    @media (min-width: 768px) {
        .identify-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .identify-card:nth-child(4),
        .identify-card:nth-child(5) {
            grid-column: span 1;
        }
    }

    @media (min-width: 1200px) {
        .identify-cards {
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
        }

        .identify-block {
            max-width: 1200px;
        }
    }

    /* ============================================
       SEÇÃO 5 — Bloco de Problema Real
       ============================================ */
    .problem-block {
        padding: 60px 20px;
        text-align: center;
    }

    .problem-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .problem-eyebrow {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(255, 205, 7, 0.18);
        border-radius: 20px;
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--yellow-gov-dark);
        margin-bottom: 16px;
    }

    .problem-title {
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 1.3;
        color: #333;
        margin-bottom: 20px;
    }

    .problem-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 48px;
    }

    .problem-card {
        background: white;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 28px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(19, 81, 180, 0.1);
        border-color: var(--primary-gov);
    }

    .problem-card-icon {
        width: 56px;
        height: 56px;
        color: var(--primary-gov);
        margin: 0 auto 12px;
    }

    .problem-card-title {
        font-weight: 700;
        font-size: 0.9375rem;
        color: #333;
    }

    /* Bloco de virada */
    .problem-turnaround {
        background: linear-gradient(135deg, rgba(19, 81, 180, 0.12) 0%, rgba(19, 81, 180, 0.06) 100%);
        border: 1px solid rgba(19, 81, 180, 0.2);
        border-left: 6px solid var(--primary-gov);
        border-radius: 8px;
        padding: 36px 28px;
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .problem-turnaround::before {
        content: "\201C";
        position: absolute;
        top: -8px;
        left: 12px;
        font-size: 6rem;
        font-family: Georgia, serif;
        color: var(--primary-gov);
        opacity: 0.1;
        line-height: 1;
        pointer-events: none;
    }

    .problem-turnaround p {
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.5;
        color: #1a1a1a;
        position: relative;
        z-index: 1;
    }

    /* CTA da quinta dobra */
    .problem-cta-wrapper {
        text-align: center;
        margin-top: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .problem-cta {
        display: block;
        width: 100%;
        padding: 18px 32px;
        background: var(--green-gov);
        color: #fff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.0625rem;
        letter-spacing: 0.3px;
        text-decoration: none;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        animation: pulse 2s infinite;
    }

    .problem-cta:hover {
        filter: brightness(1.1);
    }

    @keyframes pulse {
        0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(0, 163, 0, 0.5); }
        50%  { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(0, 163, 0, 0); }
        100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(0, 163, 0, 0); }
    }

    .problem-microcopy {
        font-size: 0.8125rem;
        color: #888;
        margin-top: 12px;
    }

    @media (min-width: 768px) {
        .problem-cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .problem-card-icon {
            width: 64px;
            height: 64px;
        }

        .problem-card-title {
            font-size: 1.0625rem;
        }

        .problem-title {
            font-size: 2rem;
        }

        .problem-turnaround {
            padding: 40px 44px;
        }

        .problem-turnaround p {
            font-size: 1.375rem;
        }

        .problem-cta {
            display: inline-block;
            width: auto;
            min-width: 480px;
            font-size: 1.125rem;
            padding: 20px 48px;
        }
    }

    /* ============================================
       MINI-DOBRA — Alerta CPF / Banco Central
       ============================================ */
    .cpf-alert-block {
        position: relative;
        padding: 48px 20px;
        background:
            radial-gradient(circle at 15% 30%, rgba(255, 205, 7, 0.18) 0%, transparent 45%),
            radial-gradient(circle at 90% 80%, rgba(0, 163, 0, 0.12) 0%, transparent 45%),
            linear-gradient(135deg, #0e3f8c 0%, var(--primary-gov) 60%, #0a2d63 100%);
        color: #fff;
        overflow: hidden;
    }

    .cpf-alert-block::before,
    .cpf-alert-block::after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .cpf-alert-block::before {
        top: -40px; right: -40px;
        width: 180px; height: 180px;
        border: 2px dashed rgba(255, 205, 7, 0.3);
        border-radius: 50%;
        animation: floatElement 8s ease-in-out infinite;
    }

    .cpf-alert-block::after {
        bottom: -60px; left: -30px;
        width: 220px; height: 220px;
        border: 2px dashed rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        animation: floatElement 10s ease-in-out infinite reverse;
    }

    .cpf-alert-container {
        position: relative;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        z-index: 1;
    }

    .cpf-alert-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        background: rgba(255, 205, 7, 0.18);
        border: 1px solid rgba(255, 205, 7, 0.5);
        border-radius: 30px;
        margin-bottom: 18px;
    }

    .cpf-alert-badge-icon {
        width: 16px;
        height: 16px;
        color: var(--yellow-gov);
    }

    .cpf-alert-badge-text {
        font-weight: 800;
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--yellow-gov);
    }

    .cpf-alert-title {
        font-weight: 900;
        font-size: 1.625rem;
        line-height: 1.25;
        letter-spacing: -0.3px;
        color: #fff;
        margin-bottom: 16px;
    }

    .cpf-alert-title mark {
        display: inline-block;
        padding: 2px 10px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        border-radius: 6px;
        font-weight: 900;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.45);
        transform: rotate(-1.5deg);
    }

    .cpf-alert-text {
        font-weight: 500;
        font-size: 1.0625rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.88);
        max-width: 580px;
        margin: 0 auto 28px;
    }

    .cpf-alert-stats {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 28px;
    }

    .cpf-alert-stat {
        text-align: center;
    }

    .cpf-alert-stat-num {
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--yellow-gov);
        line-height: 1;
    }

    .cpf-alert-stat-label {
        font-weight: 500;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 4px;
    }

    .cpf-alert-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        max-width: 460px;
        padding: 18px 28px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        font-family: inherit;
        font-weight: 900;
        font-size: 1.0625rem;
        letter-spacing: 0.5px;
        text-decoration: none;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(255, 205, 7, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.12);
        animation: pulse 2s infinite;
        transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    }

    .cpf-alert-cta:hover {
        transform: translateY(-2px) scale(1.02);
        filter: brightness(1.05);
        box-shadow: 0 16px 40px rgba(255, 205, 7, 0.55), 0 0 0 6px rgba(255, 255, 255, 0.18);
    }

    .cpf-alert-cta-icon {
        font-size: 1.25rem;
        animation: nudgeRight 1.4s ease-in-out infinite;
    }

    .cpf-alert-fineprint {
        font-weight: 500;
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 14px;
    }

    @media (min-width: 768px) {
        .cpf-alert-block {
            padding: 64px 20px;
        }

        .cpf-alert-title {
            font-size: 2.25rem;
        }

        .cpf-alert-stat-num {
            font-size: 2rem;
        }

        .cpf-alert-cta {
            font-size: 1.125rem;
            padding: 20px 36px;
        }
    }

    /* ============================================
       SEÇÃO 6 — Apresentação do Guia
       ============================================ */
    .guide-block {
        padding: 60px 20px;
    }

    .guide-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .guide-eyebrow {
        display: block;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary-gov);
        text-align: center;
        margin-bottom: 16px;
    }

    .guide-title {
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 1.3;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
    }

    .guide-description {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        text-align: center;
        max-width: 650px;
        margin: 0 auto 48px;
    }

    .guide-columns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .guide-visual {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .img-capa-guia {
        display: block;
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .guide-features {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .guide-feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .guide-feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        color: var(--primary-gov);
    }

    .guide-feature-content {
        flex: 1;
    }

    .guide-feature-title {
        font-weight: 800;
        font-size: 1.0625rem;
        line-height: 1.4;
        color: #1a1a1a;
        margin: 0;
    }

    .guide-feature-text {
        font-weight: 400;
        font-size: 0.9375rem;
        line-height: 1.5;
        color: #555;
    }

    @media (min-width: 768px) {
        .guide-title {
            font-size: 2rem;
        }

        .guide-columns {
            flex-direction: row;
            align-items: center;
            gap: 48px;
        }

        .guide-visual {
            flex: 0 0 40%;
            max-width: 360px;
        }

        .img-capa-guia {
            max-width: 100%;
        }

        .guide-features {
            flex: 1;
        }
    }

    @media (min-width: 1200px) {
        .guide-columns {
            gap: 60px;
        }

        .guide-visual {
            flex: 0 0 400px;
            max-width: 400px;
        }
    }

    /* Prévia em vídeo */
    .guide-preview {
        margin-top: 64px;
        text-align: center;
    }

    .guide-preview-eyebrow {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(255, 205, 7, 0.18);
        border-radius: 20px;
        font-weight: 800;
        font-size: 0.8125rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--yellow-gov-dark);
        margin-bottom: 16px;
    }

    .guide-preview-title {
        font-weight: 900;
        font-size: 1.5rem;
        line-height: 1.4;
        color: #1a1a1a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .guide-preview-title mark {
        display: inline-block;
        padding: 2px 10px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        border-radius: 6px;
        font-weight: 900;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.45);
        transform: rotate(-1.5deg);
    }

    .guide-preview-subtitle {
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 1.55;
        color: #333;
        max-width: 560px;
        margin: 0 auto 32px;
    }

    @media (min-width: 768px) {
        .guide-preview-subtitle {
            font-size: 1.1875rem;
        }
    }

    .guide-preview-frame {
        position: relative;
        display: inline-block;
        max-width: 280px;
        width: 100%;
        padding: 12px;
        background: #1a1a1a;
        border-radius: 32px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    }

    .guide-preview-frame::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 6px;
        background: #2a2a2a;
        border-radius: 4px;
        z-index: 2;
    }

    .guide-preview-video {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 22px;
        background: #000;
    }

    @media (min-width: 768px) {
        .guide-preview-title {
            font-size: 1.75rem;
        }

        .guide-preview-frame {
            max-width: 320px;
        }
    }

    /* ============================================
       SEÇÃO 7 — Simulador de Nome
       ============================================ */
    .simulator-block {
        padding: 60px 20px;
    }

    .simulator-container {
        max-width: 560px;
        margin: 0 auto;
        background: white;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 40px 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Etapa 1 — Input */
    /* Stepper / Funil dentro do simulador */
    .sim-funnel-stepper {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        margin-bottom: 24px;
    }

    .sim-funnel-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        width: 76px;
    }

    .sim-funnel-step-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        font-weight: 900;
        font-size: 0.9375rem;
        border: 2px solid;
    }

    .sim-funnel-step-done .sim-funnel-step-circle {
        background: var(--green-gov);
        border-color: var(--green-gov);
        color: #fff;
        box-shadow: 0 0 0 4px rgba(0, 163, 0, 0.18);
    }

    .sim-funnel-step-active .sim-funnel-step-circle {
        background: var(--yellow-gov);
        border-color: var(--yellow-gov-dark);
        color: #1a1a1a;
        box-shadow: 0 0 0 4px rgba(255, 205, 7, 0.3), 0 0 18px rgba(255, 205, 7, 0.45);
        animation: simStepPulse 1.6s ease-in-out infinite;
    }

    .sim-funnel-step-locked .sim-funnel-step-circle {
        background: #f0f0f0;
        border-color: #ddd;
        color: #999;
    }

    @keyframes simStepPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.08); }
    }

    .sim-funnel-step-label {
        font-weight: 700;
        font-size: 0.6875rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #555;
    }

    .sim-funnel-step-locked .sim-funnel-step-label {
        color: #999;
    }

    .sim-funnel-step-line {
        flex: 1;
        max-width: 50px;
        height: 3px;
        margin-top: 18px;
        background: #eee;
        border-radius: 2px;
        overflow: hidden;
    }

    .sim-funnel-step-line-fill {
        height: 100%;
        width: 100%;
        background: linear-gradient(90deg, var(--green-gov) 0%, var(--yellow-gov) 100%);
        transform-origin: left;
        animation: simLineFill 1s ease-out forwards;
    }

    .sim-funnel-step-line-empty {
        background: transparent;
    }

    @keyframes simLineFill {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }

    /* Achievement Unlocked */
    .sim-achievement {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        margin: 0 auto 18px;
        background: linear-gradient(135deg, rgba(255, 205, 7, 0.15) 0%, rgba(255, 205, 7, 0.04) 100%);
        border: 1px solid rgba(255, 205, 7, 0.5);
        border-radius: 12px;
        text-align: left;
        animation: simAchievementIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    }

    @keyframes simAchievementIn {
        0% { opacity: 0; transform: scale(0.5); }
        100% { opacity: 1; transform: scale(1); }
    }

    .sim-achievement-icon {
        font-size: 1.5rem;
        line-height: 1;
        filter: drop-shadow(0 0 8px rgba(255, 205, 7, 0.7));
        animation: simTrophyShine 2.2s ease-in-out infinite;
    }

    @keyframes simTrophyShine {
        0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 205, 7, 0.7)); }
        50% { filter: drop-shadow(0 0 16px rgba(255, 205, 7, 1)); }
    }

    .sim-achievement-eyebrow {
        font-weight: 700;
        font-size: 0.625rem;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--yellow-gov-dark);
        line-height: 1;
        margin-bottom: 3px;
    }

    .sim-achievement-title {
        font-weight: 900;
        font-size: 0.9375rem;
        color: #1a1a1a;
        line-height: 1.1;
    }

    /* Live counter */
    .sim-live {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 14px;
        margin: 0 auto 20px;
        background: rgba(0, 163, 0, 0.1);
        border: 1px solid rgba(0, 163, 0, 0.3);
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.8125rem;
        color: #333;
    }

    .sim-live-dot {
        width: 9px;
        height: 9px;
        background: var(--green-gov);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(0, 163, 0, 0.6);
        animation: simLivePulse 1.6s ease-out infinite;
    }

    @keyframes simLivePulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 163, 0, 0.6); }
        70% { box-shadow: 0 0 0 10px rgba(0, 163, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 163, 0, 0); }
    }

    .sim-live-num {
        font-weight: 800;
        color: var(--green-gov);
    }

    .sim-header-icon {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 auto 20px;
        color: var(--primary-gov);
    }

    .sim-title {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.3;
        color: #333;
        text-align: center;
        margin-bottom: 8px;
    }

    .sim-subtitle {
        font-weight: 400;
        font-size: 0.9375rem;
        color: #888;
        text-align: center;
        margin-bottom: 24px;
    }

    .sim-input-wrapper {
        position: relative;
        margin-bottom: 16px;
    }

    .sim-input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: #aaa;
        pointer-events: none;
    }

    .sim-input {
        width: 100%;
        padding: 14px 16px 14px 44px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-size: 1rem;
        color: #333;
        background: #fafafa;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sim-input:focus {
        outline: none;
        border-color: var(--primary-gov);
        box-shadow: 0 0 0 3px var(--primary-gov-glow);
        background: white;
    }

    .sim-btn-verificar {
        display: block;
        width: 100%;
        padding: 16px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: 0.3px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.4);
        opacity: 0.5;
    }

    .sim-btn-verificar:hover:not(:disabled) {
        filter: brightness(0.9);
        transform: scale(1.02);
    }

    .sim-btn-verificar:disabled {
        cursor: not-allowed;
    }

    /* Etapa 2 — Verificação */
    .sim-barra-geral-track {
        width: 100%;
        height: 8px;
        background: #eaeaea;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .sim-barra-geral-fill {
        height: 100%;
        width: 0%;
        background: var(--primary-gov);
        border-radius: 4px;
        transition: width 0.4s ease;
    }

    .sim-label-barra {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--primary-gov);
        text-align: center;
        margin-bottom: 24px;
    }

    .sim-subetapa {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        opacity: 0.4;
        transition: opacity 0.3s ease;
    }

    .sim-subetapa.ativa {
        opacity: 1;
    }

    .sim-subetapa.concluida {
        opacity: 0.6;
    }

    .sim-subetapa-icone {
        font-size: 1.25rem;
        width: 28px;
        text-align: center;
        flex-shrink: 0;
    }

    .sim-icone-check {
        display: none;
    }

    .sim-subetapa-content {
        flex: 1;
    }

    .sim-subetapa-texto {
        font-weight: 400;
        font-size: 0.9375rem;
        color: #333;
        margin-bottom: 6px;
    }

    .sim-barra-sub-track {
        width: 100%;
        height: 4px;
        background: #eaeaea;
        border-radius: 2px;
        overflow: hidden;
    }

    .sim-barra-sub {
        height: 100%;
        width: 0%;
        background: var(--green-gov);
        border-radius: 2px;
        transition: width 0.85s ease;
    }

    @keyframes pop {
        0% { transform: scale(0.5); }
        70% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    .pop {
        animation: pop 0.3s ease forwards;
    }

    /* Etapa 3 — Score */
    .sim-score-wrapper {
        text-align: center;
        padding: 12px 0 8px;
    }

    .sim-score-eyebrow {
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary-gov);
        margin-bottom: 18px;
    }

    .sim-score-ring {
        position: relative;
        display: inline-block;
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .sim-score-ring::before {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 205, 7, 0.25) 0%, transparent 70%);
        animation: ringHalo 2.4s ease-in-out infinite;
        z-index: 0;
    }

    @keyframes ringHalo {
        0%, 100% { transform: scale(1); opacity: 0.6; }
        50% { transform: scale(1.08); opacity: 1; }
    }

    .sim-score-ring-svg {
        position: relative;
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        z-index: 1;
    }

    .sim-score-ring-bg {
        stroke: #eef0f3;
    }

    .sim-score-ring-fill {
        stroke: url(#scoreGradient);
        stroke-dasharray: 326.7;
        stroke-dashoffset: 326.7;
        transition: stroke-dashoffset 0.04s linear;
        filter: drop-shadow(0 0 6px rgba(255, 205, 7, 0.5));
    }

    .sim-score-ring-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 2;
    }

    .sim-score-numero {
        font-weight: 900;
        font-size: 3.5rem;
        line-height: 1;
        background: linear-gradient(135deg, var(--yellow-gov-dark) 0%, var(--yellow-gov) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: scoreCountPulse 0.6s ease-out;
    }

    @keyframes scoreCountPulse {
        0% { transform: scale(0.8); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }

    .sim-score-suffix {
        font-weight: 700;
        font-size: 0.875rem;
        color: #999;
        letter-spacing: 1px;
        margin-top: -2px;
    }

    .sim-barra-score-track {
        width: 100%;
        height: 12px;
        background: #eaeaea;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .sim-barra-score-fill {
        height: 100%;
        width: 0%;
        background: var(--green-gov);
        border-radius: 6px;
        transition: width 0.02s linear;
    }

    .sim-score-badge {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.875rem;
        background: rgba(0, 163, 0, 0.1);
        color: var(--green-gov);
        margin-bottom: 16px;
    }

    .sim-score-disclaimer {
        font-weight: 400;
        font-size: 0.8125rem;
        color: #888;
    }

    /* Etapa 4 — Resultado */
    .sim-resultado-icon {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 16px;
        line-height: 1;
    }

    .sim-resultado-title {
        font-weight: 900;
        font-size: 1.5rem;
        line-height: 1.3;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 16px;
    }

    .sim-resultado-title mark {
        display: inline-block;
        padding: 0 8px;
        background: var(--yellow-gov);
        color: #1a1a1a;
        border-radius: 6px;
        font-weight: 900;
        box-shadow: 0 4px 14px rgba(255, 205, 7, 0.45);
        transform: rotate(-1.5deg);
    }

    .sim-resultado-text {
        font-weight: 600;
        font-size: 1.0625rem;
        line-height: 1.55;
        color: #333;
        text-align: center;
        margin-bottom: 16px;
    }

    .sim-resultado-disclaimer {
        font-weight: 400;
        font-size: 0.8125rem;
        line-height: 1.5;
        color: #888;
        font-style: italic;
        text-align: center;
        margin-bottom: 24px;
    }

    .sim-resultado-divider {
        border: none;
        border-top: 1px solid #eaeaea;
        max-width: 200px;
        margin: 0 auto 24px;
    }

    .sim-resultado-transition {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        text-align: center;
        margin-bottom: 28px;
    }

    .sim-cta {
        display: block;
        width: 100%;
        padding: 18px 32px;
        background: var(--green-gov);
        color: #fff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.0625rem;
        letter-spacing: 0.3px;
        text-decoration: none;
        text-align: center;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        animation: pulse 2s infinite;
    }

    .sim-cta:hover {
        filter: brightness(1.1);
    }

    .sim-microcopy {
        font-size: 0.8125rem;
        color: #888;
        text-align: center;
        margin-top: 12px;
    }

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        20% { transform: translateX(-8px); }
        40% { transform: translateX(8px); }
        60% { transform: translateX(-6px); }
        80% { transform: translateX(6px); }
    }

    .shake {
        animation: shake 0.5s ease;
    }

    .sim-msg-erro {
        display: none;
        color: #d32f2f;
        font-size: 0.85rem;
        margin-top: 6px;
        text-align: center;
    }

    .fade-slide-up {
        animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    @media (min-width: 768px) {
        .simulator-container {
            padding: 48px 40px;
        }

        .sim-resultado-title {
            font-size: 1.75rem;
        }
    }

    /* ============================================
       SEÇÃO 8 — Benefícios (Accordion)
       ============================================ */
    .benefits-block {
        padding: 60px 20px;
    }

    .benefits-container {
        max-width: 720px;
        margin: 0 auto;
    }

    .benefits-eyebrow {
        display: block;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary-gov);
        text-align: center;
        margin-bottom: 16px;
    }

    .benefits-title {
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 1.3;
        color: #333;
        text-align: center;
        margin-bottom: 12px;
    }

    .benefits-subtitle {
        font-weight: 400;
        font-size: 0.9375rem;
        color: #888;
        text-align: center;
        margin-bottom: 32px;
    }

    .benefits-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .beneficio-card {
        position: relative;
        background:
            radial-gradient(circle at 100% 0%, rgba(255, 205, 7, 0.06) 0%, transparent 40%),
            linear-gradient(135deg, #eaf1fb 0%, #d6e2f3 100%);
        border: 1px solid #c1d0e7;
        border-left: 4px solid var(--primary-gov);
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .beneficio-card::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 50%);
    }

    .beneficio-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(19, 81, 180, 0.14);
        border-color: var(--primary-gov);
    }

    .beneficio-card.aberto {
        background: linear-gradient(135deg, #fffdf3 0%, #fff8e0 100%);
        border-color: var(--yellow-gov-dark);
        border-left-color: var(--yellow-gov);
        box-shadow: 0 8px 24px rgba(255, 205, 7, 0.18);
    }

    .beneficio-header {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 24px;
        user-select: none;
    }

    .beneficio-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        color: var(--primary-gov);
    }

    .beneficio-titulo {
        flex: 1;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.4;
        color: #333;
    }

    .beneficio-seta {
        flex-shrink: 0;
        font-size: 0.75rem;
        color: #888;
        transition: transform 0.3s ease;
    }

    .beneficio-conteudo {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .beneficio-conteudo-inner {
        padding: 0 24px 24px;
    }

    .beneficio-texto {
        font-weight: 400;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 12px;
    }

    .beneficio-badge {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.8125rem;
        background: rgba(0, 163, 0, 0.1);
        color: var(--green-gov);
    }

    @media (min-width: 768px) {
        .benefits-title {
            font-size: 2rem;
        }

        .beneficio-header {
            padding: 24px 28px;
        }

        .beneficio-conteudo-inner {
            padding: 0 28px 28px;
        }
    }

    /* ============================================
       SEÇÃO 10 — Oferta + Timer
       ============================================ */
    .offer-block {
        padding: 60px 20px;
        background: var(--primary-gov);
        color: #fff;
    }

    .offer-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .offer-eyebrow {
        display: inline-block;
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--yellow-gov);
        margin-bottom: 16px;
    }

    .offer-title {
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    /* Timer */
    .timer-intro {
        font-weight: 400;
        font-size: 0.9375rem;
        opacity: 0.8;
        margin-bottom: 16px;
    }

    .timer-display {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .timer-bloco {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .timer-bloco span:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 72px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        font-family: 'Courier New', Courier, monospace;
        font-weight: 800;
        font-size: 2.5rem;
    }

    .timer-label {
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--yellow-gov);
    }

    .timer-separador {
        font-family: 'Courier New', Courier, monospace;
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .timer-expirado {
        font-weight: 700;
        font-size: 1.125rem;
        margin-bottom: 40px;
    }

    @keyframes piscar {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    .piscar {
        animation: piscar 0.8s infinite;
    }

    /* Lista de benefícios */
    .offer-includes {
        list-style: none;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 36px;
    }

    .offer-includes li {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.6;
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .offer-includes li::before {
        content: "\2713";
        color: var(--green-gov);
        font-weight: 700;
        font-size: 1.125rem;
        flex-shrink: 0;
    }

    /* Precificação */
    .offer-pricing {
        margin-bottom: 32px;
    }

    .offer-price-old {
        font-weight: 400;
        font-size: 1rem;
        opacity: 0.6;
        text-decoration: line-through;
        margin-bottom: 4px;
    }

    .offer-price-current {
        font-weight: 800;
        font-size: 2.25rem;
        color: #90ee90;
        margin-bottom: 8px;
    }

    .offer-discount-badge {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 20px;
        font-weight: 800;
        font-size: 0.8125rem;
        background: var(--yellow-gov);
        color: #1a1a1a;
        box-shadow: 0 4px 12px rgba(255, 205, 7, 0.4);
    }

    /* CTA */
    .offer-cta {
        display: block;
        width: 100%;
        padding: 20px 32px;
        background: var(--green-gov);
        color: #fff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.125rem;
        letter-spacing: 0.3px;
        text-decoration: none;
        text-align: center;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        animation: pulse 2s infinite;
        margin-bottom: 16px;
    }

    .offer-cta:hover {
        filter: brightness(1.1);
    }

    .offer-microcopy {
        font-size: 0.8125rem;
        opacity: 0.7;
        line-height: 1.6;
    }

    @media (min-width: 768px) {
        .offer-title {
            font-size: 2.25rem;
        }

        .offer-cta {
            display: inline-block;
            width: auto;
            min-width: 480px;
            font-size: 1.25rem;
            padding: 22px 48px;
        }

        .timer-bloco span:first-child {
            width: 100px;
            height: 84px;
            font-size: 3rem;
        }

        .timer-separador {
            font-size: 3rem;
        }
    }

    