/* UAI DATA - PROSPECÇÃO & IA STYLES */

.prospect-nav-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    overflow-x: auto;
}

.prospect-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.prospect-tab-btn:hover {
    background: rgba(0, 201, 141, 0.08);
    color: #fff;
    border-color: rgba(0, 201, 141, 0.3);
}

.prospect-tab-btn.active {
    background: #00c98d;
    color: #0b0f13;
    border-color: #00c98d;
    font-weight: 600;
}

.prospect-tab-pane {
    display: none;
}

.prospect-tab-pane.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.form-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.test-result-container {
    margin-top: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.test-bubble {
    margin-top: 8px;
    padding: 14px;
    background: rgba(0, 201, 141, 0.08);
    border-left: 3px solid #00c98d;
    border-radius: 4px;
    color: #e2e8f0;
    font-family: inherit;
    line-height: 1.5;
    white-space: pre-wrap;
}

.qr-display-area {
    margin-top: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.qr-code-img {
    width: 240px;
    height: 240px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.wa-connected-box {
    color: #00c98d;
    font-size: 16px;
    font-weight: 600;
    padding: 24px;
    background: rgba(0, 201, 141, 0.08);
    border-radius: 8px;
}

.gmn-results-wrapper {
    margin-top: 20px;
}

.gmn-success-card {
    padding: 20px;
    background: rgba(0, 201, 141, 0.08);
    border: 1px solid rgba(0, 201, 141, 0.25);
    border-radius: 8px;
}

.status-pill {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-online {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.badge-success {
    background: #059669;
    color: #fff;
}

.badge-warning {
    background: #d97706;
    color: #fff;
}
