body[data-theme="escuro"] {
    color-scheme: dark;
    --bg: #111827;
    --surface: #182235;
    --surface-muted: #243044;
    --text: #f3f4f6;
    --muted: #aeb8c8;
    --border: #354158;
    --brand: #a9bbdf;
    --brand-strong: #c6d3ec;
    --accent: #9da7ff;
    --danger-bg: #3a1e22;
    --danger: #ffaaa2;
}

@media (prefers-color-scheme: dark) {
    body[data-theme="sistema"] {
        color-scheme: dark;
        --bg: #111827;
        --surface: #182235;
        --surface-muted: #243044;
        --text: #f3f4f6;
        --muted: #aeb8c8;
        --border: #354158;
        --brand: #a9bbdf;
        --brand-strong: #c6d3ec;
        --accent: #9da7ff;
        --danger-bg: #3a1e22;
        --danger: #ffaaa2;
    }
}

.user-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--surface-muted);
    color: var(--brand);
    font-weight: 800;
    border: 1px solid var(--border);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar--large {
    width: 112px;
    height: 112px;
    font-size: 1.65rem;
}

.profile-photo-panel {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 16px 0 26px;
}

.profile-photo-panel > div:last-child {
    display: grid;
    gap: 9px;
}

.profile-photo-panel small {
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 720px) {
    .profile-photo-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}
