#form-mt_pixinter-pix .campos_formatados {
    width: 100% !important;
    height: 35px !important;
    border: 1px solid #CCC;
    border-radius: 5px;
}

.colunas_mt_pixinter {
    position: unset;
}

/* ============================================================
   mt_pixinter — Payment Card UI v2 (icon + text + details)
   ============================================================ */

/* Card wrapper */
.mt-payment-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.mt-payment-card:hover {
    border-color: #9CA3AF;
}

/* --- Per-method accent: Pix (teal) --- */
.mt-payment-card--pix {
    --mt-card-accent: #00B2A9;
    --mt-card-accent-light: #F0FDFA;
}

/* Selected state */
.payment-option input:checked ~ label .mt-payment-card,
.payment-option.selected .mt-payment-card {
    border-color: var(--mt-card-accent, #2563eb);
    background: var(--mt-card-accent-light, #F0F5FF);
    box-shadow: 0 0 0 1px var(--mt-card-accent, #2563eb);
}

/* Icon circle */
.mt-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--mt-card-accent, #2563eb) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mt-card-icon-wrap i {
    font-size: 22px;
    color: var(--mt-card-accent, #2563eb);
    line-height: 1;
}

/* Pix SVG icon uses currentColor from parent */
.mt-card-icon-wrap--pix {
    color: var(--mt-card-accent, #00B2A9);
}
.mt-card-icon-wrap--pix svg {
    display: block;
}

/* Text block */
.mt-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.mt-card-title {
    font-weight: 600;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.3;
}

.mt-card-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.3;
}

/* Uniform card width: flex layout, radio stays clickable (theme handles styling) */
.payment-option {
    display: flex;
    align-items: center;
    width: 100%;
}
.payment-option .custom-radio {
    flex-shrink: 0;
}
.payment-option label[for] {
    flex: 1;
    min-width: 0;
}

/* Binary option: whole card clickable */
.payment-option .binary ~ label .mt-payment-card {
    cursor: pointer;
}

/* Card spacing — gap between stacked cards */
.payment-option + .payment-option,
.payment-options .payment-option + .payment-option {
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 767px) {
    .mt-payment-card {
        padding: 12px;
        gap: 10px;
    }
    .mt-card-icon-wrap {
        width: 36px;
        height: 36px;
    }
    .mt-card-icon-wrap i {
        font-size: 18px;
    }
    .mt-card-title {
        font-size: 14px;
    }
    .mt-card-desc {
        font-size: 12px;
    }
}

/* Permanentemente escondido — cada forma de pagamento tem seu próprio botão */
#payment-confirmation {
    display: none !important;
}

/* Spacing below the Pix form so the button doesn't touch the next payment option */
.js-payment-option-form .mt-pixinter-checkout {
    margin-bottom: 20px;
}
