/* Modal de CPF/CNPJ exibido antes do checkout de planos IA na loja */
.billing-doc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing-doc-card {
    background: #1e1f21;
    border-radius: 12px;
    padding: 40px 32px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    color: #fff;
}

.billing-doc-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.billing-doc-card__title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
}

.billing-doc-card__text {
    margin: 0 0 20px;
    color: #ccc;
    line-height: 1.6;
}

.billing-doc-card__input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #141517;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.billing-doc-card__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
