/* ============================================================
   WiserFlow — Minha Conta
   Fiel a handoff/reference/screen_account.jsx
   ============================================================ */

.wf-conta {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--wf-bg);
    min-height: 0;
}

.wf-conta-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--wf-border);
    background: var(--wf-surface);
}

.wf-conta-crumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--wf-text-subtle);
    margin-bottom: 8px;
}

.wf-conta-crumbs-cur {
    color: var(--wf-text-muted);
    font-weight: 500;
}

.wf-conta-head-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wf-conta-head-body {
    flex: 1;
    min-width: 0;
}

.wf-conta-head-name {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--wf-text);
}

.wf-conta-head-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--wf-text-muted);
}

.wf-conta-head-sep {
    color: var(--wf-border);
}

.wf-conta-md {
    flex: 1;
    min-height: 0;
    display: flex;
}

.wf-conta-nav {
    width: 260px;
    background: var(--wf-surface);
    border-right: 1px solid var(--wf-border);
    overflow-y: auto;
    padding: 12px;
    flex-shrink: 0;
}

.wf-conta-nav-item {
    padding: 10px 12px;
    border-radius: var(--wf-radius-md);
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    margin-bottom: 2px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 100ms;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.wf-conta-nav-item:hover {
    background: var(--wf-hover);
}

.wf-conta-nav-item.active {
    background: var(--wf-selected);
    border-color: rgba(77, 163, 255, 0.19);
}

.wf-conta-nav-info {
    flex: 1;
    min-width: 0;
}

.wf-conta-nav-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--wf-text);
}

.wf-conta-nav-desc {
    font-size: 11px;
    color: var(--wf-text-subtle);
    margin-top: 2px;
    line-height: 1.3;
}

.wf-conta-content {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 28px 32px;
}

.wf-conta-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wf-conta-section-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--wf-text);
    margin: 0;
}

.wf-conta-section-sub {
    font-size: 13px;
    color: var(--wf-text-muted);
    margin: 4px 0 8px;
}

.wf-conta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--wf-border);
    gap: 12px;
}

.wf-conta-row:last-child {
    border-bottom: none;
}

.wf-conta-row-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--wf-text);
}

.wf-conta-row-value {
    font-size: 13px;
    color: var(--wf-text-muted);
}

.wf-conta-row-hint {
    font-size: 11px;
    color: var(--wf-text-subtle);
    margin-top: 2px;
}

.wf-conta-mfa-on {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wf-success);
    font-size: 13px;
    font-weight: 600;
}

.wf-conta-sessions-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--wf-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-conta-sessions-item:last-child {
    border-bottom: none;
}

.wf-conta-sessions-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--wf-bg-sunken);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wf-text-muted);
}

.wf-conta-sessions-body {
    flex: 1;
    min-width: 0;
}

.wf-conta-sessions-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--wf-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.wf-conta-sessions-meta {
    font-size: 11px;
    color: var(--wf-text-subtle);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .wf-conta-md {
        flex-direction: column;
    }
    .wf-conta-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--wf-border);
        display: flex;
        gap: 6px;
        overflow-x: auto;
    }
    .wf-conta-nav-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .wf-conta-nav-desc {
        display: none;
    }
}
