/* Botão REALIZAR O PAGAMENTO fixo acima do bloco principal */
.fcbf-payment-top-anchor {
    position: sticky;
    top: 8px;
    z-index: 999;
    margin: 0 0 18px 0;
    padding: 0 10px;
}

.fcbf-payment-top-anchor a,
.fcbf-payment-top-anchor button,
.fcbf-payment-top-anchor .btn,
.fcbf-payment-top-anchor [class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 80, 90, .95) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.22), transparent 35%),
        linear-gradient(135deg, #ff1f3d 0%, #a40718 45%, #4a0309 100%) !important;
    color: #ffffff !important;
    font-weight: 1000 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow:
        0 0 16px rgba(255, 32, 58, .55),
        0 0 34px rgba(255, 32, 58, .25),
        inset 0 0 18px rgba(255,255,255,.12) !important;
    animation: fcbfPaymentPulse 1.65s ease-in-out infinite !important;
}

@keyframes fcbfPaymentPulse {
    0%, 100% {
        filter: brightness(1);
        transform: translateY(0);
        box-shadow:
            0 0 14px rgba(255, 32, 58, .45),
            0 0 28px rgba(255, 32, 58, .22),
            inset 0 0 16px rgba(255,255,255,.10);
    }
    50% {
        filter: brightness(1.22);
        transform: translateY(-1px);
        box-shadow:
            0 0 22px rgba(255, 45, 70, .85),
            0 0 48px rgba(255, 45, 70, .42),
            inset 0 0 22px rgba(255,255,255,.18);
    }
}

/* Correção dos cards da projeção para não comer o R$ 750,00 */
.fcbf-prize-card-fix {
    overflow: visible !important;
    min-width: 0 !important;
}

.fcbf-prize-amount-fix {
    display: block !important;
    white-space: nowrap !important;
    overflow: visible !important;
    max-width: none !important;
    line-height: .95 !important;
    letter-spacing: -0.055em !important;
    font-size: clamp(24px, 6.2vw, 38px) !important;
    padding-inline: 2px !important;
}

@media (max-width: 480px) {
    .fcbf-payment-top-anchor {
        top: 6px;
        margin-bottom: 16px;
        padding: 0;
    }

    .fcbf-payment-top-anchor a,
    .fcbf-payment-top-anchor button,
    .fcbf-payment-top-anchor .btn,
    .fcbf-payment-top-anchor [class*="btn"] {
        min-height: 52px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
    }

    .fcbf-prize-amount-fix {
        font-size: clamp(22px, 5.7vw, 30px) !important;
        letter-spacing: -0.07em !important;
    }
}

@media (max-width: 390px) {
    .fcbf-prize-amount-fix {
        font-size: 24px !important;
        letter-spacing: -0.08em !important;
    }
}
