    /* Conformidade: Aplicação de Idempotência e Prioridade [CA v1.0, 2.1; Pol. Qualidade, I] */
    /* Este bloco utiliza seletores ID para a máxima especificidade, garantindo que o alinhamento
    e o design sejam consistentes, sobrepondo estilos de classes globais conflitantes. */

    /* 1. Estilo do Overlay (Container fixo de tela cheia) */
    #conversion-modal.th-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: rgba(0, 0, 0, .65);
        /* O JS deve setar display: block para mostrar o modal */
        display: none;
        overflow-y: auto;
    }

    /* 2. Centralização Perfeita e Aparência do Conteúdo (IDEMPOTENTE) */
    #conversion-modal .th-modal-content {
        /* POSICIONAMENTO: Centralização vertical e horizontal garantida com Position e Transform */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Centralização perfeita, zera margens conflitantes */

        /* DESIGN: Estilos de caixa (Replicando o Modal de Avaliação) */
        background: white;
        padding: 25px;
        /* Replica o padding do modal de avaliação */
        border-radius: 8px;
        max-width: 400px;
        /* Replica a largura máxima do modal de avaliação */
        width: 90%;
        box-sizing: border-box;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

        /* Zera margens e define limites de tela */
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;

        /* Animação ajustada para o transform de centralização */
        animation: scaleInConversion .25s ease;
    }

    /* 3. Re-definição da Animação para usar o Transform correto */
    @keyframes scaleInConversion {
        from {
            /* Garante que a animação comece no ponto de centralização (-50%, -50%) */
            transform: translate(-50%, -50%) scale(.8);
            opacity: .6;
        }

        to {
            /* Termina na posição centralizada (100% de escala) */
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
    }

    /* 4. Estilos de Consistência (Replica o design interno do modal de Avaliação) */

    #conversion-modal .th-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    #conversion-modal .th-close-btn {
        cursor: pointer;
        font-size: 1.5em;
    }

    #conversion-modal .th-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    /* Garante que o input tenha a mesma aparência do input do modal de avaliação */
    #conversion-modal .th-form-group input,
    #conversion-modal .th-form-group select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    #conversion-modal .th-modal-footer {
        display: flex;
        justify-content: center;
        /* Alinha botões à direita */
        gap: 10px;
        margin-top: 20px;
    }

    /* Estilos de Animação de Overlay (Mantidos do código original) */
    .fade-in {
        animation: fadeIn .3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* ── Preferência de Atendimento: Toggle Cards ── */

    #conversion-modal .th-pref-group {
        margin-bottom: 0;
    }

    #conversion-modal .th-pref-group__title {
        display: block;
        margin-bottom: 10px !important;
        font-weight: 600;
        font-size: .85rem;
        color: var(--th-muted, #64748b);
        letter-spacing: .3px;
        text-transform: uppercase;
    }

    #conversion-modal .th-pref-toggle {
        display: flex;
        gap: 10px;
    }

    #conversion-modal .th-pref-toggle__input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    #conversion-modal .th-pref-toggle__card {
        flex: 1;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 8px 14px;
        border: 2px solid var(--th-border, #e5e7eb);
        border-radius: 12px;
        background: var(--th-surface, #f8fafc);
        cursor: pointer;
        transition: all .3s cubic-bezier(.4, 0, .2, 1);
        font-size: .82rem;
        font-weight: 600;
        color: var(--th-muted, #94a3b8);
        text-align: center;
        position: relative;
        overflow: hidden;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        width: auto !important;
        margin-bottom: 0 !important;
    }

    #conversion-modal .th-pref-toggle__card::after {
        content: '';
        position: absolute;
        top: 6px;
        right: 6px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid var(--th-border, #d1d5db);
        background: #fff;
        transition: all .3s cubic-bezier(.4, 0, .2, 1);
    }

    #conversion-modal .th-pref-toggle__card:hover {
        border-color: color-mix(in srgb, var(--th-accent-2, #f43f5e) 45%, transparent);
        background: color-mix(in srgb, var(--th-accent-2, #f43f5e) 3%, #fff);
        transform: translateY(-1px);
    }

    #conversion-modal .th-pref-toggle__card svg {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        transition: all .35s cubic-bezier(.4, 0, .2, 1);
        stroke: currentColor;
    }

    #conversion-modal .th-pref-toggle__card span {
        transition: color .3s ease;
        line-height: 1.2;
    }

    /* ── Selected State ── */
    #conversion-modal .th-pref-toggle__input:checked+.th-pref-toggle__card {
        border-color: var(--th-accent-2, #f43f5e);
        background: linear-gradient(160deg,
                color-mix(in srgb, var(--th-accent-2, #f43f5e) 8%, #fff),
                color-mix(in srgb, var(--th-accent-2, #f43f5e) 2%, #fff));
        color: var(--th-accent-2, #f43f5e);
        box-shadow: 0 4px 18px -2px color-mix(in srgb, var(--th-accent-2, #f43f5e) 20%, transparent);
        transform: translateY(-2px);
    }

    #conversion-modal .th-pref-toggle__input:checked+.th-pref-toggle__card::after {
        border-color: var(--th-accent-2, #f43f5e);
        background: var(--th-accent-2, #f43f5e);
        box-shadow: inset 0 0 0 2px #fff;
    }

    #conversion-modal .th-pref-toggle__input:checked+.th-pref-toggle__card svg {
        transform: scale(1.12);
        filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--th-accent-2, #f43f5e) 30%, transparent));
    }

    /* ── Focus for accessibility ── */
    #conversion-modal .th-pref-toggle__input:focus-visible+.th-pref-toggle__card {
        outline: 2px solid var(--th-accent-2, #f43f5e);
        outline-offset: 2px;
    }

    /* ── Pulse animation on check ── */
    @keyframes prefPulse {
        0% {
            box-shadow: 0 0 0 0 color-mix(in srgb, var(--th-accent-2, #f43f5e) 35%, transparent);
        }

        70% {
            box-shadow: 0 0 0 10px transparent;
        }

        100% {
            box-shadow: 0 0 0 0 transparent;
        }
    }

    #conversion-modal .th-pref-toggle__input:checked+.th-pref-toggle__card {
        animation: prefPulse .5s ease-out;
    }

    .btn-conversion {
        background-color: var(--th-accent-2);
        color: white;
        padding: 20px 15px;
        border-radius: var(--th-border-radius);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        border: none;
        cursor: pointer;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        transition: all 0.2s ease-in-out;
    }

    .btn-conversion:hover {
        transform: scale(0.95);
    }

    .th-buy-button-module .btn-conversion {
        padding: 12px 16px;
        font-size: 0.9rem;
        letter-spacing: 0.2px;
        max-width: 420px;
        margin-inline: 0;
        text-decoration: none;
        color: #fff;
        transition: background-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    /* Coluna do produto: sem escala no hover (evita “efeito” no texto) e cor fixa */
    .th-buy-button-module .btn-conversion:hover,
    .th-buy-button-module .btn-conversion:focus-visible {
        transform: none;
        color: #fff;
        text-decoration: none;
        filter: brightness(0.96);
    }

    .th-buy-button-module .btn-conversion svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }