/* ============================================================
   PRO.CSS — Melhorias visuais gov.br (classes prefixadas pro-)
   Não conflita com Bootstrap nem Tailwind
   ============================================================ */

:root {
    --pro-blue: #1351B4;
    --pro-blue-dark: #0c326f;
    --pro-blue-navy: #071D41;
    --pro-green: #168821;
    --pro-gray: #555555;
    --pro-gray-light: #f4f6f9;
    --pro-border: #e3e8ef;
    --pro-shadow: 0 4px 24px rgba(7, 29, 65, 0.08);
    --pro-shadow-lg: 0 12px 40px rgba(7, 29, 65, 0.12);
    --pro-radius: 12px;
    --pro-radius-lg: 20px;
}

/* ── Barra de confiança ── */
.pro-trust-bar {
    background: var(--pro-blue-navy);
    color: #fff;
    font-size: 13px;
    padding: 8px 16px;
    text-align: center;
}
.pro-trust-bar i {
    margin-right: 6px;
    color: #FFCD07;
}

/* ── Hero serviços ── */
.pro-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pro-blue-navy) 0%, var(--pro-blue-dark) 45%, var(--pro-blue) 100%);
    color: #fff;
    padding: 48px 0 52px;
    margin-bottom: 0;
}
.pro-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.pro-hero-inner {
    position: relative;
    z-index: 1;
}
.pro-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: -0.02em;
}
.pro-hero-lead {
    font-size: 1.05rem;
    opacity: 0.92;
    margin: 0 0 18px;
    max-width: 520px;
    line-height: 1.6;
}
.pro-hero-greeting {
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFCD07;
    margin: 0 0 8px;
    max-width: 520px;
    line-height: 1.5;
}
.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pro-hero-badge i {
    color: #FFCD07;
    font-size: 0.9rem;
}
.pro-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pro-hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 6px 14px;
}
.pro-hero-features i {
    color: #FFCD07;
    font-size: 0.85rem;
}
.pro-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pro-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.pro-stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 205, 7, 0.35);
}
.pro-stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 205, 7, 0.15);
    border: 1px solid rgba(255, 205, 7, 0.3);
    border-radius: 12px;
    color: #FFCD07;
    font-size: 1.15rem;
}
.pro-stat-body strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2px;
}
.pro-stat-body span {
    display: block;
    font-size: 0.78rem;
    opacity: 0.82;
    line-height: 1.35;
}

/* ── Banner usuário logado ── */
.pro-user-banner {
    background: #e8f0fe;
    border-bottom: 1px solid #c5d9f7;
    padding: 12px 0;
}
.pro-user-banner .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--pro-blue-dark);
}
.pro-user-banner i {
    color: var(--pro-blue);
    font-size: 1.8rem;
}
.pro-user-banner strong {
    color: var(--pro-blue-dark);
}

/* ── Cards de serviço ── */
.card-servicos {
    border-radius: var(--pro-radius) !important;
    box-shadow: var(--pro-shadow) !important;
    border: 1px solid var(--pro-border) !important;
    overflow: hidden;
}
.card-servicos .servico {
    border-bottom: 1px solid var(--pro-border) !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    transition: background 0.2s;
}
.card-servicos .servico:last-child {
    border-bottom: none !important;
}
.card-servicos .servico .content-servico {
    padding: 14px 16px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.card-servicos .servico:hover .content-servico {
    background: #e8f0fe !important;
    transform: translateX(4px);
}
.card-servicos .servico .content-servico .icone {
    background: var(--pro-blue);
    color: #fff !important;
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
    transition: background 0.2s;
}
.card-servicos .servico:hover .content-servico .icone {
    background: var(--pro-blue-dark);
}

/* ── Cards "como solicitar" ── */
.cards-como .card-como {
    border-radius: var(--pro-radius) !important;
    box-shadow: var(--pro-shadow) !important;
    border: 1px solid var(--pro-border) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cards-como .card-como:hover {
    transform: translateY(-4px);
    box-shadow: var(--pro-shadow-lg) !important;
}
.cards-como .card-como .icone {
    background: linear-gradient(135deg, #dbe8fb, #c5d9f7) !important;
}

/* ── FAQ ── */
.duvidas {
    background: var(--pro-gray-light);
    border-radius: var(--pro-radius);
    padding: 32px 28px !important;
    margin-top: 48px;
}
.duvidas h2 {
    margin-bottom: 24px !important;
}
.duvidas .duvida {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px !important;
}
.duvidas .duvida h4 {
    cursor: pointer;
    margin: 0;
    font-size: 1.6rem !important;
}
.duvidas .duvida p.collapse {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--pro-border);
}

/* ── Checkout ── */
.pro-checkout-wrap {
    max-width: 720px !important;
    margin: 0 auto;
    padding: 28px 16px 48px;
    width: 100%;
    box-sizing: border-box;
}
body.funnel-page .pro-checkout-intro {
    border-radius: 12px;
    border-color: #e3e8ef;
    box-shadow: 0 4px 24px rgba(7, 29, 65, 0.06);
}
body.funnel-page .pro-checkout-card {
    border-radius: 12px;
    border-color: #e3e8ef;
    box-shadow: 0 4px 24px rgba(7, 29, 65, 0.06);
}
body.funnel-page .pro-checkout-title {
    color: var(--pro-blue-dark);
    letter-spacing: -0.02em;
}
.pro-checkout-card {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    box-shadow: var(--pro-shadow);
    padding: 24px 22px;
    margin-bottom: 16px;
}
.pro-checkout-intro {
    margin-bottom: 16px;
}
.pro-checkout-intro .pro-stepper-wrap {
    margin-top: 18px;
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px solid #e8edf4;
}
.pro-checkout-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin: 0 0 4px;
}
.pro-checkout-subtitle {
    font-size: 0.875rem;
    color: var(--pro-gray);
    margin: 0;
}
.pro-checkout-subtitle strong {
    color: var(--pro-blue);
    font-weight: 700;
}

/* Checkout unificado — cabeçalho + etapas 1–3 */
.pro-checkout-flow {
    margin-bottom: 16px;
}
.pro-checkout-unified {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 20px 22px 18px;
}
.pro-checkout-unified.hidden {
    display: none;
}
.pro-checkout-service-line {
    font-size: 0.875rem;
    color: var(--pro-gray);
    margin: 0 0 14px;
}
.pro-checkout-service-line strong {
    color: var(--pro-blue-dark);
    font-weight: 700;
}
.pro-checkout-unified .pro-stepper-wrap {
    margin: 0;
    padding: 14px 0 16px;
    border-top: 1px solid #e8edf4;
    border-bottom: 1px solid #e8edf4;
}
.pro-checkout-step-meta {
    padding-top: 16px;
}
.pro-checkout-step-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pro-blue);
    background: #e8f0fe;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}
.pro-checkout-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}
.pro-checkout-step-desc {
    font-size: 0.875rem;
    color: var(--pro-gray);
    margin: 0;
    line-height: 1.45;
}
.pro-checkout-flow-body {
    border-radius: 0 0 12px 12px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-top: none;
    box-shadow: 0 4px 24px rgba(7, 29, 65, 0.06);
}
.pro-checkout-unified--complete .pro-stepper-wrap {
    opacity: 0.55;
}
.pro-checkout-unified--complete .pro-checkout-step-badge::after {
    content: ' · Concluída';
    color: var(--pro-green);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
.pro-notice--compact {
    padding: 12px 14px;
    margin-bottom: 18px;
}
.pro-notice--compact .pro-notice-body p {
    font-size: 0.8125rem;
    margin: 0;
}

.pro-stepper-wrap {
    padding: 0;
}
.pro-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 0;
    max-width: 100%;
    padding: 0 4px;
}
.pro-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.pro-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c5d4eb;
    color: #8899b3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.pro-step-num {
    line-height: 1;
}
.pro-step-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #8899b3;
    line-height: 1.25;
    max-width: 90px;
    transition: color 0.25s;
}
.pro-step-item.active-step .pro-step-circle {
    background: var(--pro-blue);
    border-color: var(--pro-blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(19, 81, 180, 0.12);
}
.pro-step-item.active-step .pro-step-label {
    color: var(--pro-blue);
    font-weight: 700;
}
.pro-step-item.completed-step .pro-step-circle {
    background: var(--pro-green);
    border-color: var(--pro-green);
    color: #fff;
    box-shadow: none;
}
.pro-step-item.completed-step .pro-step-num {
    font-size: 0;
}
.pro-step-item.completed-step .pro-step-num::after {
    content: '\2713';
    font-size: 0.875rem;
    font-weight: 700;
}
.pro-step-item.completed-step .pro-step-label {
    color: var(--pro-green);
}
.pro-stepper-track {
    position: absolute;
    left: calc(16.666% + 18px);
    right: calc(16.666% + 18px);
    top: 18px;
    height: 2px;
    background: #dde4ee;
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
    transform: none;
}
.pro-stepper-fill {
    height: 100%;
    width: 0%;
    background: var(--pro-blue);
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-stepper .rounded-full {
    transition: background-color 0.4s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
#step1.active-step .rounded-full,
#step2.active-step .rounded-full,
#step3.active-step .rounded-full {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(19, 81, 180, 0.35);
}
.pro-step-done .rounded-full,
.pro-step-circle-done {
    background-color: var(--pro-green) !important;
}

/* Transição entre etapas */
[id^="formStep"] {
    will-change: opacity, transform;
}
[id^="formStep"].pro-step-leave {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}
[id^="formStep"].pro-step-enter {
    animation: proStepIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
[id^="formStep"].pro-step-enter .pro-form-header {
    animation: proStepIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s backwards;
}
[id^="formStep"].pro-step-enter .pro-form-section {
    animation: proStepIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
[id^="formStep"].pro-step-enter .pro-form-section:nth-child(1) { animation-delay: 0.08s; }
[id^="formStep"].pro-step-enter .pro-form-section:nth-child(2) { animation-delay: 0.14s; }
[id^="formStep"].pro-step-enter .pro-form-actions,
[id^="formStep"].pro-step-enter .pro-resumo-hero,
[id^="formStep"].pro-step-enter .pro-resumo-panel,
[id^="formStep"].pro-step-enter .pro-resumo-total,
[id^="formStep"].pro-step-enter .pro-summary-doc,
[id^="formStep"].pro-step-enter .pro-summary-trust,
[id^="formStep"].pro-step-enter .pro-pix-layout,
[id^="formStep"].pro-step-enter .pro-pix-body,
[id^="formStep"].pro-step-enter .pro-upsell-card {
    animation: proStepIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
}
@keyframes proStepIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overlay / loader — gov.br harmonizado */
.pro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 29, 65, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.26s ease, visibility 0.26s ease;
}
.pro-overlay.pro-overlay-visible {
    opacity: 1;
    visibility: visible;
}
.pro-overlay.hidden {
    display: none !important;
}
.pro-overlay-panel {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius-lg);
    padding: 24px 22px 22px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(7, 29, 65, 0.14);
    transform: scale(0.96) translateY(6px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    max-width: 300px;
    width: 100%;
}
.pro-overlay-panel--flow {
    max-width: 360px;
    padding: 22px 20px 20px;
}
.pro-overlay.pro-overlay-visible .pro-overlay-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.pro-overlay-panel--modal {
    max-width: 380px;
    padding: 0;
    overflow: hidden;
    text-align: left;
}
.pro-overlay-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 16px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--pro-gray-light);
    color: var(--pro-blue);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pro-overlay-brand i {
    font-size: 0.75rem;
    opacity: 0.9;
}
.pro-overlay-spinner-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
    border: 1px solid #e3ebf5;
    border-radius: 50%;
}
.pro-overlay-spinner {
    width: 28px;
    height: 28px;
    margin: 0;
    border: 2.5px solid #d4e2f7;
    border-top-color: var(--pro-blue);
    border-radius: 50%;
    animation: proSpin 0.8s linear infinite;
}
.pro-overlay-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pro-gray);
    margin: 0;
    line-height: 1.35;
}
.pro-overlay-sub {
    margin: 6px 0 0;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #7a8494;
    line-height: 1.4;
}
.pro-overlay-modal-head {
    background: linear-gradient(135deg, var(--pro-blue-navy) 0%, var(--pro-blue-dark) 55%, var(--pro-blue) 100%);
    color: #fff;
    padding: 16px 20px;
}
.pro-overlay-modal-head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}
.pro-overlay-modal-body {
    padding: 18px 20px 20px;
}
.pro-overlay-modal-body p {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--pro-gray);
}
.pro-overlay-modal-body p:last-of-type {
    margin-bottom: 16px;
}
.pro-overlay-modal-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--pro-blue);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.pro-overlay-modal-btn:hover {
    background: var(--pro-blue-dark);
}
.pro-overlay-modal-btn:active {
    transform: scale(0.98);
}
.pro-overlay-success .pro-overlay-spinner-wrap {
    background: linear-gradient(180deg, #edf7ef 0%, #e3f2e6 100%);
    border-color: #b8dfc4;
}
.pro-overlay-success-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pro-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    animation: proSuccessPop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-overlay-success .pro-overlay-text {
    color: var(--pro-green);
}

/* Fluxo de pagamento confirmado — 3 etapas */
.pro-overlay-payment-flow .pro-overlay-hero {
    display: none;
}
.pro-overlay-payment-flow .pro-overlay-flow {
    display: block !important;
}
.pro-overlay-flow {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    text-align: left;
}
.pro-overlay-flow-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #8a96a8;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pro-overlay-flow-item + .pro-overlay-flow-item {
    margin-top: 6px;
}
.pro-overlay-flow-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef2f7;
    border: 1px solid #dde4ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: #8a96a8;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.pro-overlay-flow-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
}
.pro-overlay-flow-item.is-active {
    background: #f0f5ff;
    border-color: #c5d7f5;
    color: var(--pro-blue-dark);
    transform: translateX(2px);
}
.pro-overlay-flow-item.is-active .pro-overlay-flow-marker {
    background: var(--pro-blue);
    border-color: var(--pro-blue);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(19, 81, 180, 0.15);
}
.pro-overlay-flow-item.is-done {
    color: var(--pro-green);
}
.pro-overlay-flow-item.is-done .pro-overlay-flow-marker {
    background: #edf7ef;
    border-color: #b8dfc4;
    color: var(--pro-green);
}
.pro-overlay-flow-item.is-done .pro-overlay-flow-marker i {
    animation: proSuccessPop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-overlay-payment-flow.pro-overlay-success .pro-overlay-text {
    color: var(--pro-blue-dark);
}
.pro-overlay-payment-flow.pro-overlay-success .pro-overlay-sub {
    color: var(--pro-gray);
}

@keyframes proSuccessPop {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.pro-btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: proSpin 0.75s linear infinite;
    flex-shrink: 0;
}
@keyframes proSpin {
    to { transform: rotate(360deg); }
}

/* Botões — feedback sutil */
.pro-btn-primary,
.pro-btn-back {
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}
.pro-btn-primary:active {
    transform: scale(0.98) !important;
}

@media (prefers-reduced-motion: reduce) {
    [id^="formStep"].pro-step-leave,
    [id^="formStep"].pro-step-enter,
    [id^="formStep"].pro-step-enter .pro-form-section,
    .pro-stepper-fill,
    .pro-overlay,
    .pro-overlay-panel {
        animation: none !important;
        transition: none !important;
    }
}

/* ── Checkout form profissional ── */
.pro-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pro-border);
}
.pro-form-step-badge {
    display: inline-block;
    background: #e8f0fe;
    color: var(--pro-blue);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pro-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin: 0 0 6px;
}
.pro-form-desc {
    font-size: 0.9375rem;
    color: #777;
    margin: 0;
}

.pro-form-section {
    margin-bottom: 28px;
}
.pro-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}
.pro-form-section-title i {
    width: 32px;
    height: 32px;
    background: var(--pro-blue);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.pro-form-grid {
    display: grid;
    gap: 16px;
}
.pro-form-grid-2 {
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .pro-form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .pro-form-grid-3 {
        grid-template-columns: 1fr 2fr 1fr;
    }
    .pro-form-grid-addr {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .pro-field-full {
        grid-column: 1 / -1;
    }
}

.pro-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pro-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pro-required {
    color: #dc3545;
    font-weight: 700;
}
.pro-optional {
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
}

.pro-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.pro-input-wrap .pro-input-icon {
    position: absolute;
    left: 14px;
    color: #999;
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.pro-input-wrap input,
.pro-input-wrap select {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 42px;
    border: 1.5px solid var(--pro-border) !important;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.pro-input-wrap input::placeholder {
    color: #aaa;
    font-weight: 400;
}
.pro-input-wrap input:focus {
    outline: none;
    border-color: var(--pro-blue);
    box-shadow: 0 0 0 3px rgba(19, 81, 180, 0.12);
}
.pro-input-wrap input:disabled {
    background: #f8f9fa;
    color: #666;
    cursor: wait;
}

.pro-form-grid-cep {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
.pro-form-grid-addr {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 16px;
}
.pro-form-grid-city {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 16px;
}
@media (min-width: 768px) {
    .pro-form-grid-cep {
        grid-template-columns: 1fr 2fr;
    }
    .pro-form-grid-addr {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .pro-form-grid-city {
        grid-template-columns: 1fr 1fr;
    }
}

/* Sobrescreve input-form legado dentro do checkout */
.pro-checkout-card .input-form {
    margin: 0;
}

.pro-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--pro-border);
}
.pro-form-actions .pro-btn-primary,
.pro-form-actions .pro-btn-back,
.pro-form-actions .btnSubmit {
    flex: 1;
    min-height: 50px;
    padding: 12px 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 12px rgba(19, 81, 180, 0.25);
}
.pro-form-actions .pro-btn-primary:only-child {
    flex: 1;
    width: 100%;
}
.pro-btn-back {
    background: #fff !important;
    color: var(--pro-blue) !important;
    border: 2px solid var(--pro-blue) !important;
    box-shadow: none !important;
    max-width: 140px;
    flex: 0 0 auto !important;
    width: auto !important;
}
.pro-btn-back:hover {
    background: #e8f0fe !important;
    transform: none !important;
}
.pro-btn-primary {
    background: var(--pro-blue) !important;
    color: #fff !important;
}
.pro-btn-primary:hover {
    background: var(--pro-blue-dark) !important;
}

/* Resumo checkout — layout oficial gov.br */
.pro-summary-step .pro-form-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
}
.pro-summary-step .pro-form-desc {
    margin-bottom: 0;
}
.pro-summary-doc {
    background: #fff;
    border: 1px solid #c5d4eb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(7, 29, 65, 0.06);
    overflow: hidden;
    margin-bottom: 14px;
}
.pro-summary-doc-bar {
    height: 4px;
    background: linear-gradient(90deg, #FFCD07 0%, #FFCD07 35%, var(--pro-blue) 35%, var(--pro-blue) 100%);
}
.pro-summary-doc-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: var(--pro-blue-navy);
    color: #fff;
}
.pro-summary-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pro-summary-doc-meta {
    flex: 1;
    min-width: 0;
}
.pro-summary-doc-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 3px;
}
.pro-summary-doc-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}
.pro-summary-status {
    font-size: 0.6875rem;
    font-weight: 700;
    background: #fff;
    color: #8a6914;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.pro-summary-rows {
    padding: 0 18px;
    background: #fafbfd;
}
.pro-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #e8edf4;
    font-size: 0.875rem;
}
.pro-summary-row:last-child {
    border-bottom: none;
}
.pro-summary-key {
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    flex-shrink: 0;
}
.pro-summary-key i {
    color: var(--pro-blue);
    width: 14px;
    font-size: 0.8125rem;
    text-align: center;
}
.pro-summary-val {
    font-weight: 600;
    color: var(--pro-blue-dark);
    text-align: right;
    line-height: 1.35;
}
.pro-summary-row-total {
    padding: 14px 0 16px;
    margin-top: 0;
    background: #fff;
    border-top: 2px solid var(--pro-blue);
    border-bottom: none;
}
.pro-summary-row-total .pro-summary-key {
    font-weight: 700;
    color: var(--pro-blue-dark);
    font-size: 0.875rem;
}
.pro-summary-row-total .pro-summary-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pro-blue);
    letter-spacing: -0.01em;
}
.pro-summary-doc-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 10px 18px;
    background: #f0f4fa;
    border-top: 1px solid #e3e8ef;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #667;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.pro-summary-doc-foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pro-summary-doc-foot i {
    color: var(--pro-blue);
    font-size: 0.75rem;
}
.pro-summary-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0 0 14px;
    padding: 10px 14px;
    background: #e8f0fe;
    border: 1px solid #c5d9f7;
    border-radius: 8px;
}
.pro-summary-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pro-blue-dark);
    padding: 0 12px;
    position: relative;
}
.pro-summary-trust li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #b8cce8;
}
.pro-summary-trust li i {
    color: var(--pro-blue);
    font-size: 0.8125rem;
}
.pro-summary-trust li .fa-pix,
.pro-summary-trust li .fa-brands.fa-pix {
    color: #32BCAD;
}
.pro-summary-notice,
.pro-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f7f9fc;
    border: 1px solid #e3ebf5;
    border-radius: var(--pro-radius-lg);
    padding: 14px 16px;
    margin-bottom: 20px;
}
.pro-notice-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(19, 81, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pro-blue);
    font-size: 0.875rem;
}
.pro-notice-body {
    flex: 1;
    min-width: 0;
}
.pro-notice-body p,
.pro-summary-notice p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--pro-gray);
}
.pro-notice-body strong,
.pro-summary-notice strong {
    color: var(--pro-blue-dark);
    font-weight: 700;
}
.pro-summary-notice > i {
    display: none;
}
.pro-summary-actions {
    flex-direction: row;
    gap: 10px;
}
.pro-summary-actions .pro-btn-back {
    flex: 0 0 auto;
    min-width: 110px;
    max-width: 130px;
    font-size: 0.875rem !important;
    min-height: 44px !important;
}
.pro-summary-actions .pro-btn-emit {
    flex: 1;
    min-width: 0;
    font-size: 0.875rem !important;
    min-height: 44px !important;
    letter-spacing: 0.01em;
}

/* Resumo etapa 3 — card por serviço */
.pro-resumo-hero {
    background: #fff;
    border: 1px solid #c5d4eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(7, 29, 65, 0.06);
}
.pro-resumo-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--pro-blue-navy) 0%, var(--pro-blue) 100%);
    color: #fff;
}
.pro-resumo-categoria {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.92;
}
.pro-resumo-status {
    font-size: 0.625rem;
    font-weight: 700;
    background: #fff;
    color: #8a6914;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.pro-resumo-hero-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: #fafbfd;
}
.pro-resumo-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--pro-blue-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.pro-resumo-hero-text {
    flex: 1;
    min-width: 0;
}
.pro-resumo-hero-title {
    margin: 0 0 6px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pro-blue-navy);
    line-height: 1.3;
}
.pro-resumo-hero-desc {
    margin: 0;
    font-size: 0.8125rem;
    color: #555;
    line-height: 1.5;
}
.pro-resumo-hero-price {
    text-align: right;
    flex-shrink: 0;
}
.pro-resumo-hero-price-label {
    display: block;
    font-size: 0.6875rem;
    color: #666;
    margin-bottom: 2px;
}
.pro-resumo-hero-price strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pro-blue);
    white-space: nowrap;
}
.pro-resumo-panel {
    background: #fff;
    border: 1px solid #dde5f0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.pro-resumo-panel-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f0f4fa;
    border-bottom: 1px solid #e4eaf2;
}
.pro-resumo-panel-head i {
    color: var(--pro-blue);
    font-size: 0.875rem;
}
.pro-resumo-panel-head h4 {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--pro-blue-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pro-resumo-grid {
    margin: 0;
    padding: 12px 16px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}
.pro-resumo-item {
    margin: 0;
}
.pro-resumo-item-wide {
    grid-column: 1 / -1;
}
.pro-resumo-item dt {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
}
.pro-resumo-item dd {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    word-break: break-word;
}
.pro-resumo-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 14px;
    background: var(--pro-blue-navy);
    color: #fff;
    border-radius: 10px;
}
.pro-resumo-total-info span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}
.pro-resumo-total-info small {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    opacity: 0.82;
}
.pro-resumo-total strong {
    font-size: 1.5rem;
    font-weight: 800;
    white-space: nowrap;
}

/* Legado — fallback */
.pro-checkout-card .box-resumo {
    background: linear-gradient(135deg, #f8faff 0%, #eef3fb 100%);
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    padding: 24px;
    margin-bottom: 20px;
}
.pro-checkout-card .box-resumo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pro-blue);
}
.pro-checkout-card .item-resumo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--pro-border);
    font-size: 1.5rem;
}
.pro-checkout-card .item-resumo:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--pro-blue-dark);
    font-size: 1.7rem;
}

/* Inputs checkout legado (fallback) */
.input-form input:focus,
.input-form select:focus {
    border-color: var(--pro-blue) !important;
    box-shadow: 0 0 0 3px rgba(19, 81, 180, 0.15) !important;
}
button.btnSubmit {
    border-radius: 8px !important;
    height: 48px !important;
    font-size: 1.6rem !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(19, 81, 180, 0.25);
    transition: transform 0.15s, box-shadow 0.15s !important;
    background-color: var(--pro-blue) !important;
}
button.btnSubmit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(19, 81, 180, 0.35) !important;
    background-color: var(--pro-blue-dark) !important;
}
/* Progress checkout — Tailwind circles */
#step1 .rounded-full,
#step2 .rounded-full,
#step3 .rounded-full {
    transition: background-color 0.3s, transform 0.3s;
}
#step1.active-step .rounded-full,
#step2.active-step .rounded-full,
#step3.active-step .rounded-full {
    transform: scale(1.08);
}

body.bg-gray-50 {
    background: var(--pro-gray-light) !important;
}

/* ── Seção serviços título ── */
#inicio .servicos > h2 {
    font-size: 2.4rem !important;
    margin-bottom: 8px !important;
}
#inicio .servicos > h2 + .pro-section-desc {
    font-size: 1.6rem;
    color: var(--pro-gray);
    margin-bottom: 24px;
}

/* ── Footer polish ── */
footer {
    margin-top: 48px;
}
.logo-rodape img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ── Responsivo ── */
@media (max-width: 767px) {
    .pro-hero {
        padding: 32px 0 36px;
    }
    .pro-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 24px;
    }
    .pro-stat-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 8px;
        gap: 8px;
    }
    .pro-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    .pro-stat-body strong {
        font-size: 1.15rem;
    }
    .pro-stat-body span {
        font-size: 0.65rem;
    }
    .pro-checkout-card {
        padding: 20px 16px;
    }
    .cards-como .card-como {
        width: 100% !important;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .pro-hero-inner {
        display: grid;
        grid-template-columns: 1fr minmax(280px, 42%);
        align-items: center;
        gap: 40px;
    }
    .pro-hero-inner--solo {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
    .pro-hero-content {
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .pro-hero-inner {
        gap: 56px;
    }
    .pro-hero-stats {
        gap: 14px;
    }
}

/* ============================================================
   PIX & Upsell — etapas 4+ do checkout
   ============================================================ */
/* .hidden global removido — quebrava md:flex/md:hidden do Tailwind nos QR codes PIX */

.pro-pix-step,
.pro-upsell-step,
.pro-success-step {
    margin-top: 4px;
}

/* ── Cabeçalho PIX / pagamento ── */
.pro-pix-step > .pro-pix-head,
.pro-pix-step > .bg-gov-blue-light:first-child,
.pro-pix-step > div.bg-gov-blue-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, var(--pro-blue) 0%, var(--pro-blue-dark) 100%);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--pro-radius);
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(19, 81, 180, 0.25);
}
.pro-pix-step > .pro-pix-head h2,
.pro-pix-step > .bg-gov-blue-light:first-child h2,
.pro-pix-step > div.bg-gov-blue-light h2 {
    font-size: 1.7rem !important;
    font-weight: 700;
    margin: 0;
    color: #fff !important;
}
.pro-pix-qr-toggle,
.pro-pix-step > .bg-gov-blue-light button,
.pro-pix-step > div.bg-gov-blue-light button {
    background: #fff !important;
    color: var(--pro-blue) !important;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 1.3rem !important;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    flex-shrink: 0;
}
.pro-pix-head-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 700;
}
.pro-pix-head-title i {
    font-size: 2rem;
    color: #32BCAD;
}

/* ── Corpo PIX ── */
.pro-pix-body,
.pro-pix-step > .text-center {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pro-pix-qr,
.pro-pix-step #qrcode-container,
.pro-pix-step [id^="qrcode-container"],
.pro-pix-step [id^="mobile-qrcode"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #fff;
    border: 2px dashed var(--pro-border);
    border-radius: var(--pro-radius);
}
.pro-pix-step img[id^="qrcode"],
.pro-pix-step [id^="qrcode-"]:not([id*="container"]):not([id*="mobile"]) {
    width: 210px !important;
    height: 210px !important;
    border-radius: 10px;
    box-shadow: var(--pro-shadow);
    margin: 0 auto;
    object-fit: contain;
}

/* Caixas resumo / copia e cola */
.pro-pix-box,
.pro-pix-step .bg-gray-50 {
    background: #f8faff !important;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    padding: 18px 20px !important;
    box-shadow: none !important;
    text-align: left;
}
.pro-pix-step .bg-gray-50 .flex.justify-between,
.pro-pix-step .bg-gray-50 > div > .flex {
    padding: 8px 0;
    border-bottom: 1px dashed var(--pro-border);
}
.pro-pix-step .bg-gray-50 .flex.justify-between:last-child,
.pro-pix-step .bg-gray-50 > div > .flex:last-child {
    border-bottom: none;
    font-weight: 700;
}
.pro-pix-step .bg-gray-50 span.font-extrabold,
.pro-pix-step .bg-gray-50 .text-2xl,
.pro-pix-step .bg-gray-50 .text-lg {
    color: var(--pro-blue-dark) !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
}

/* Campo copia e cola — compacto em todas as etapas PIX */
.pro-pix-copy-row,
.pro-pix-step .bg-gray-50 .flex.items-center {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}
.pro-pix-step input[id^="pixCode"] {
    flex: 1;
    min-width: 0;
    height: 38px !important;
    padding: 0 10px !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    font-family: ui-monospace, Consolas, monospace;
    background: #fafbfc !important;
    color: #333;
}
.pro-pix-copy-btn,
.pro-pix-step button[onclick^="copiarPix"] {
    background: var(--pro-blue) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px !important;
    padding: 0 12px !important;
    height: 38px !important;
    min-height: 38px;
    max-height: 38px;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pro-pix-copy-btn:hover,
.pro-pix-step button[onclick^="copiarPix"]:hover {
    background: var(--pro-blue-dark) !important;
}
.pro-pix-step .bg-gray-50 > p.text-sm,
.pro-pix-step .bg-gray-50 > p.font-bold {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--pro-blue-dark) !important;
    margin-bottom: 10px !important;
}

/* Alertas */
.pro-pix-alert,
.pro-pix-step .bg-red-50 {
    background: #fff5f5 !important;
    border: 1px solid #fecaca !important;
    border-left: 4px solid #dc3545 !important;
    border-radius: var(--pro-radius) !important;
    padding: 16px 18px !important;
    text-align: left;
}
.pro-pix-step .bg-red-50 p {
    font-size: 1.35rem !important;
    line-height: 1.55;
    color: #555 !important;
    margin: 0;
}

/* Timer */
.pro-pix-timer,
.pro-pix-step .bg-yellow-50 {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
    border-left: 4px solid #FFCD07 !important;
    border-radius: var(--pro-radius) !important;
    padding: 16px 18px !important;
    text-align: left;
}
.pro-pix-step .bg-yellow-50 p:first-child {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #555 !important;
    margin-bottom: 6px !important;
}
.pro-pix-step [id^="timer"] {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: var(--pro-blue) !important;
    letter-spacing: 0.05em;
}

/* Como pagar */
.pro-pix-howto,
.pro-pix-step .border.rounded-lg,
.pro-pix-step .border.rounded-xl {
    border: 1px solid var(--pro-border) !important;
    border-radius: var(--pro-radius) !important;
    padding: 20px !important;
    text-align: left;
    background: #fff;
}
.pro-pix-step .border.rounded-lg h3,
.pro-pix-step .border.rounded-xl h3 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--pro-blue-dark) !important;
    margin-bottom: 16px !important;
}
.pro-pix-steps,
.pro-pix-step .border .space-y-4,
.pro-pix-step .border .space-y-5 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pro-pix-step .border .flex.items-center {
    gap: 14px;
}
.pro-pix-step .border .rounded-full {
    width: 36px !important;
    height: 36px !important;
    background: var(--pro-blue) !important;
    color: #fff !important;
    font-weight: 800;
    font-size: 1.4rem !important;
    flex-shrink: 0;
}
.pro-pix-step .border .text-gov-gray {
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: #444 !important;
}

/* ── Taxas / Upsells — gov.br clean ── */
.pro-upsell-step {
    padding: 0 !important;
}
.pro-taxa-head {
    background: linear-gradient(135deg, var(--pro-blue-navy) 0%, var(--pro-blue-dark) 55%, var(--pro-blue) 100%);
    color: #fff;
    border-radius: var(--pro-radius-lg);
    padding: 16px 18px;
    margin-bottom: 14px;
}
.pro-taxa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 6px;
}
.pro-taxa-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.pro-taxa-code i {
    font-size: 0.6875rem;
    opacity: 0.9;
}
.pro-taxa-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff !important;
}
.pro-taxa-notice {
    margin-bottom: 14px !important;
}
.pro-taxa-card {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius-lg);
    padding: 18px 16px;
    box-shadow: var(--pro-shadow);
    border-left: 4px solid var(--pro-blue);
}
.pro-taxa-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.pro-taxa-org {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #7a8494;
    line-height: 1.3;
}
.pro-taxa-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(19, 81, 180, 0.1);
    color: var(--pro-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 0;
}
.pro-taxa-title {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    line-height: 1.35;
}
.pro-taxa-desc {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--pro-gray);
}
.pro-taxa-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pro-taxa-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--pro-gray);
}
.pro-taxa-list li i {
    color: var(--pro-blue);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.pro-taxa-price-box {
    background: #f7f9fc;
    border: 1px solid #e3ebf5;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.pro-taxa-price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7a8494;
}
.pro-taxa-price,
.pro-upsell-price {
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    color: var(--pro-blue) !important;
    margin: 0 !important;
    line-height: 1.2;
}
.pro-taxa-btn,
.pro-upsell-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--pro-blue) !important;
    color: #fff !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
}
.pro-taxa-btn:hover,
.pro-upsell-btn:hover {
    background: var(--pro-blue-dark) !important;
    transform: translateY(-1px);
}
.pro-taxa-btn:active,
.pro-upsell-btn:active {
    transform: scale(0.98);
}

/* Variantes por taxa — upsell */
.pro-taxa-block--medico .pro-taxa-card { border-left-color: #32BCAD; }
.pro-taxa-block--medico .pro-taxa-icon { background: rgba(50, 188, 173, 0.12); color: #1a9e8f; }
.pro-taxa-block--rg .pro-taxa-card { border-left-color: #168821; }
.pro-taxa-block--rg .pro-taxa-icon { background: rgba(22, 136, 33, 0.12); color: #168821; }
.pro-taxa-block--psico .pro-taxa-card { border-left-color: #5b4db8; }
.pro-taxa-block--psico .pro-taxa-icon { background: rgba(91, 77, 184, 0.12); color: #5b4db8; }
.pro-taxa-block--emissao .pro-taxa-card { border-left-color: #1351B4; }
.pro-taxa-block--emissao .pro-taxa-icon { background: rgba(19, 81, 180, 0.12); color: var(--pro-blue); }
.pro-taxa-block--tox .pro-taxa-card { border-left-color: #c0651a; }
.pro-taxa-block--tox .pro-taxa-icon { background: rgba(192, 101, 26, 0.12); color: #a85518; }

/* ── Tela de sucesso / obrigado ── */
.pro-success-step {
    padding: 0 !important;
    overflow: hidden;
}
.pro-success-head {
    background: linear-gradient(135deg, var(--pro-blue-navy) 0%, var(--pro-blue-dark) 55%, var(--pro-blue) 100%);
    color: #fff;
    text-align: center;
    padding: 28px 20px 24px;
    border-radius: var(--pro-radius-lg) var(--pro-radius-lg) 0 0;
}
.pro-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(22, 136, 33, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #7dffb0;
}
.pro-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.pro-success-head h2 {
    margin: 0 0 8px;
    font-size: 1.25rem !important;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.35;
}
.pro-success-lead {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    opacity: 0.92;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.pro-success-card {
    margin: 16px 16px 0;
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius-lg);
    box-shadow: var(--pro-shadow);
    overflow: hidden;
}
.pro-success-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f7f9fc;
    border-bottom: 1px solid #e3ebf5;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.pro-success-card-head i {
    color: var(--pro-green);
}
.pro-success-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid #eef2f7;
    font-size: 0.8125rem;
}
.pro-success-row:last-child {
    border-bottom: 0;
}
.pro-success-key {
    color: #7a8494;
    flex-shrink: 0;
}
.pro-success-val {
    color: var(--pro-blue-dark);
    font-weight: 700;
    text-align: right;
    line-height: 1.35;
    word-break: break-word;
}
.pro-success-row--status {
    background: #f0fdf4;
}
.pro-success-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pro-green);
}
.pro-success-notice {
    margin: 14px 16px 0 !important;
}
.pro-success-timeline {
    list-style: none;
    margin: 14px 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pro-success-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--pro-gray);
}
.pro-success-timeline li i {
    color: var(--pro-blue);
    margin-top: 2px;
    flex-shrink: 0;
}
.pro-success-timeline li:first-child i {
    color: var(--pro-green);
}
.pro-success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px 20px;
}
.pro-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.pro-success-btn:active {
    transform: scale(0.98);
}
.pro-success-btn--outline {
    background: #fff;
    color: var(--pro-blue);
    border: 1px solid var(--pro-blue);
}
.pro-success-btn--outline:hover {
    background: #f0f5ff;
}
.pro-checkout-intro--complete .pro-stepper-wrap {
    opacity: 0.55;
}
.pro-checkout-intro--complete .pro-checkout-subtitle::after {
    content: ' · Concluída';
    color: var(--pro-green);
    font-weight: 700;
}

/* ── PIX oficial — etapa 4 (compacto gov.br) ── */
.pro-pix-step-main {
    --pix-r: 16px;
    padding: 16px !important;
}

.pro-pix-official-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--pro-blue-navy) 0%, var(--pro-blue-dark) 55%, var(--pro-blue) 100%);
    color: #fff;
    padding: 12px 14px;
    border-radius: var(--pix-r, 16px);
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(7, 29, 65, 0.12);
}

.pro-pix-official-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.pro-pix-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #32BCAD;
    flex-shrink: 0;
}

.pro-pix-official-sub {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    opacity: 0.88;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}
.pro-pix-taxa-code {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 2px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    line-height: 1.2;
}
.pro-pix-taxa-code i {
    font-size: 0.625rem;
    opacity: 0.85;
}

.pro-pix-official-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 2px 0 0;
    color: #fff;
    line-height: 1.25;
}

.pro-pix-head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pro-pix-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(255, 205, 7, 0.15);
    color: #ffe566;
    border: 1px solid rgba(255, 205, 7, 0.35);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.pro-pix-step-main .pro-pix-qr-toggle {
    background: #fff !important;
    color: var(--pro-blue) !important;
    border: none;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem !important;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
}

.pro-pix-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 12px;
    margin-bottom: 12px;
}

.pro-pix-qr-panel {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pix-r, 16px);
    padding: 14px 12px;
    text-align: center;
    box-shadow: none;
}

.pro-pix-qr-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin: 0 0 8px;
}

.pro-pix-qr-hint {
    font-size: 0.75rem;
    color: var(--pro-gray);
    margin: 8px 0 0;
    line-height: 1.35;
}

.pro-pix-qr-panel .pro-pix-qr {
    border: 1.5px dashed #d5dde8;
    border-radius: 12px;
    padding: 10px;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

/* QR visível em desktop e mobile — sem depender só do Tailwind md: */
.pro-pix-qr-panel [id^="qrcode-container"] {
    display: none;
}
.pro-pix-qr-panel [id^="mobile-qrcode"]:not(.hidden) {
    display: flex;
}
@media (min-width: 768px) {
    .pro-pix-qr-panel [id^="qrcode-container"] {
        display: flex !important;
    }
    .pro-pix-qr-panel [id^="mobile-qrcode"] {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .pro-pix-qr-panel [id^="qrcode-container"] {
        display: none !important;
    }
    .pro-pix-qr-panel [id^="mobile-qrcode"]:not(.hidden) {
        display: flex !important;
    }
}

.pro-pix-step-main .pro-pix-qr-panel .pro-pix-qr img,
.pro-pix-step-main img[id^="qrcode"] {
    width: auto !important;
    max-width: 168px !important;
    height: auto !important;
    max-height: 168px !important;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: none;
    flex-shrink: 0;
    align-self: center;
}

/* Tablet / mobile largo — PIX em 1 coluna (evita QR espremido ~768–991px) */
@media (max-width: 991px) {
    .pro-pix-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pro-pix-step-main .pro-pix-qr-panel .pro-pix-qr img,
    .pro-pix-step-main img[id^="qrcode"] {
        max-width: 200px !important;
        max-height: 200px !important;
    }
}

.pro-pix-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pro-pix-receipt {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pix-r, 16px);
    overflow: hidden;
}

.pro-pix-receipt-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f4f6f9;
    border-bottom: 1px solid var(--pro-border);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pro-pix-receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--pro-border);
    font-size: 0.8125rem;
}

.pro-pix-receipt-row:last-child {
    border-bottom: none;
}

.pro-pix-receipt-key {
    color: var(--pro-gray);
    font-weight: 500;
    font-size: 0.75rem;
}

.pro-pix-receipt-val {
    font-weight: 700;
    color: var(--pro-blue-dark);
    text-align: right;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.pro-pix-receipt-total {
    background: #f8faff;
    border-top: 1px solid #d6e4ff;
}

.pro-pix-receipt-total .pro-pix-receipt-key {
    font-weight: 700;
    color: var(--pro-blue-dark);
    font-size: 0.8125rem;
}

.pro-pix-receipt-total .pro-pix-receipt-val {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--pro-blue);
}

.pro-pix-copy-block {
    background: #fff;
    border: 1px solid var(--pro-border);
    border-radius: var(--pix-r, 16px);
    padding: 12px;
}

.pro-pix-copy-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    margin-bottom: 8px;
}

.pro-pix-step-main .pro-pix-copy-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pro-pix-step-main input#pixCode {
    flex: 1;
    min-width: 0;
    height: 38px !important;
    padding: 0 10px !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    font-family: ui-monospace, Consolas, monospace;
    background: #fafbfc !important;
    color: #333;
}

.pro-pix-step-main .pro-pix-copy-btn {
    background: var(--pro-blue) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px !important;
    padding: 0 14px !important;
    height: 38px;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: none;
}

.pro-pix-timer-block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--pix-r, 16px);
    padding: 10px 12px;
}
.pro-pix-timer-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pro-pix-timer-block--expired {
    background: #fef2f2;
    border-color: #fecaca;
}
.pro-pix-timer-block--expired .pro-pix-timer-icon {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}
.pro-pix-timer-value--expired {
    color: #dc2626 !important;
}
.pro-pix-regen-btn {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--pro-blue);
    border-radius: 999px;
    background: #fff;
    color: var(--pro-blue);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.pro-pix-regen-btn:hover {
    background: var(--pro-blue);
    color: #fff;
}
.pro-pix-regen-btn:active {
    transform: scale(0.98);
}
.pro-pix-regen-btn.hidden {
    display: none !important;
}

.pro-pix-timer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 205, 7, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #b45309;
    flex-shrink: 0;
}

.pro-pix-timer-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--pro-gray);
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pro-pix-timer-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pro-blue);
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1;
}

.pro-pix-warning {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid var(--pro-border);
    border-radius: var(--pix-r, 16px);
    padding: 10px 12px;
    margin-bottom: 10px;
}

.pro-pix-warning > i {
    color: var(--pro-blue);
    font-size: 0.875rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pro-pix-warning p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--pro-gray);
}

.pro-pix-howto {
    border: 1px solid var(--pro-border);
    border-radius: var(--pix-r, 16px);
    background: #fff;
    overflow: hidden;
}

.pro-pix-howto summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--pro-blue-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.pro-pix-howto summary::-webkit-details-marker {
    display: none;
}

.pro-pix-howto summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    font-size: 0.6875rem;
    color: var(--pro-gray);
    transition: transform 0.2s ease;
}

.pro-pix-howto[open] summary::after {
    transform: rotate(180deg);
}

.pro-pix-steps-list {
    list-style: none;
    margin: 0;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-pix-steps-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--pro-gray);
    padding: 8px 10px;
    background: var(--pro-gray-light);
    border-radius: 10px;
}

.pro-pix-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pro-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.6875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .pro-resumo-hero-body {
        flex-wrap: wrap;
    }
    .pro-resumo-hero-price {
        width: 100%;
        text-align: left;
        padding-top: 4px;
        border-top: 1px solid #e4eaf2;
        margin-top: 4px;
        padding-top: 12px;
    }
    .pro-resumo-grid {
        grid-template-columns: 1fr;
    }
    .pro-resumo-total {
        flex-direction: column;
        align-items: flex-start;
    }
    .pro-summary-trust {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 12px;
    }
    .pro-summary-trust li {
        justify-content: center;
        padding: 4px 0;
    }
    .pro-summary-trust li:not(:last-child)::after {
        display: none;
    }
    .pro-summary-doc-head {
        flex-wrap: wrap;
        gap: 10px;
    }
    .pro-summary-status {
        width: 100%;
        text-align: center;
    }
    .pro-summary-doc-foot {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
    }
    .pro-summary-actions {
        flex-direction: column-reverse;
    }
    .pro-summary-actions .pro-btn-back,
    .pro-summary-actions .pro-btn-emit {
        max-width: none !important;
        width: 100% !important;
        flex: 1 1 auto !important;
    }
    .pro-pix-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .pro-pix-official-head {
        flex-direction: row;
        align-items: center;
    }
    .pro-pix-head-actions {
        width: auto;
        justify-content: flex-end;
    }
    .pro-pix-step-main .pro-pix-qr-panel .pro-pix-qr img,
    .pro-pix-step-main img#qrcode,
    .pro-pix-step-main img#qrcode-mobile {
        max-width: 132px !important;
    }
    .pro-pix-timer-value {
        font-size: 1.125rem;
    }
    .pro-pix-receipt-total .pro-pix-receipt-val {
        font-size: 1.0625rem;
    }
    .pro-pix-copy-row,
    .pro-pix-step .bg-gray-50 .flex.items-center {
        flex-direction: row;
    }
    .pro-pix-copy-btn,
    .pro-pix-step button[onclick^="copiarPix"] {
        width: auto;
    }
    .pro-pix-step [id^="timer"],
    .pro-pix-timer-value {
        font-size: 1.125rem !important;
    }
    /* Mobile — inputs 16px (evita zoom iOS), toque 44px */
    .pro-input-wrap input,
    .pro-input-wrap select {
        font-size: 16px !important;
    }
    .pro-pix-copy-btn,
    .pro-pix-step button[onclick^="copiarPix"],
    .pro-pix-regen-btn {
        min-height: 44px !important;
        height: 44px !important;
        max-height: none !important;
        padding: 0 14px !important;
    }
    .pro-step-label {
        font-size: 0.75rem;
        max-width: none;
        line-height: 1.2;
    }
    .pro-trust-bar {
        font-size: 0.6875rem;
        padding: 8px 12px;
        line-height: 1.35;
    }
    .pro-pix-official-head {
        gap: 8px;
    }
    .pro-pix-status-badge {
        font-size: 0.625rem;
    }
    .pro-upsell-step .flex.items-start {
        flex-direction: column;
        gap: 16px;
    }
}

/* Variantes visuais por taxa PIX — gov.br navy + accent por guia */
.pro-pix-taxa--ticket .pro-pix-official-head { border-left: 4px solid #32BCAD; }
.pro-pix-taxa--ticket .pro-pix-logo { color: #32BCAD; background: rgba(50, 188, 173, 0.15); }

.pro-pix-taxa--medico .pro-pix-official-head { border-left: 4px solid #32BCAD; }
.pro-pix-taxa--medico .pro-pix-logo { color: #32BCAD; background: rgba(50, 188, 173, 0.15); }

.pro-pix-taxa--rg .pro-pix-official-head { border-left: 4px solid #168821; }
.pro-pix-taxa--rg .pro-pix-logo { color: #168821; background: rgba(22, 136, 33, 0.15); }

.pro-pix-taxa--psico .pro-pix-official-head { border-left: 4px solid #5b4db8; }
.pro-pix-taxa--psico .pro-pix-logo { color: #8b7fd4; background: rgba(91, 77, 184, 0.18); }

.pro-pix-taxa--emissao .pro-pix-official-head { border-left: 4px solid #FFCD07; }
.pro-pix-taxa--emissao .pro-pix-logo { color: #FFCD07; background: rgba(255, 205, 7, 0.15); }

.pro-pix-taxa--tox .pro-pix-official-head { border-left: 4px solid #c0651a; }
.pro-pix-taxa--tox .pro-pix-logo { color: #e8944a; background: rgba(192, 101, 26, 0.18); }
